/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ClientShared/Mobile/CookiesEngine.cpp
46 строк
773 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
#include "../CookiesEngine.h" #include "../format_string.h" bool CookiesEngine::reportValue(CookiesEngine &engine, std::string key, std::string value) { return false; } std::wstring CookiesEngine::getCookiesFilePath() { std::string path(""); return convert_s2w(path); } void CookiesEngine::setCookiesFilePath(std::wstring &path) { } CookiesEngine::CookiesEngine(std::wstring path) { } void CookiesEngine::ParseFileContent(std::fstream &f) { } void CookiesEngine::FlushContent(std::fstream &f) { } int CookiesEngine::SetValue(std::string key, std::string value) { return -1; } std::string CookiesEngine::GetValue(std::string key, int *errorCode, bool *exists) { return ""; } int CookiesEngine::DeleteValue(std::string key) { return -1; }