diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-03-20 20:17:29 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-03-20 20:17:29 +0000 |
commit | 3f403397d35d601078423e84d61ab0c1cce6203e (patch) | |
tree | 5060c0a07e7139148d9d0f1700288dd5e6b004f9 /protocols/SkypeWeb/src/skype_proto.h | |
parent | 1e8dbc1ff44b65c0fbe4e83fa5a22641c9ab9f47 (diff) |
SkypeWeb: added auth requests management
git-svn-id: http://svn.miranda-ng.org/main/trunk@12456 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 8e963de84e..dfe9aa87eb 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -73,6 +73,9 @@ public: static void InitMenus();
static void UninitMenus();
+ // languages
+ static void InitLanguages();
+
// events
static int OnModulesLoaded(WPARAM, LPARAM);
@@ -81,6 +84,8 @@ private: RequestQueue *requestQueue;
std::map<std::string, std::string> cookies;
+ static std::map<std::tstring, std::tstring> languages;
+
static INT_PTR CALLBACK PasswordEditorProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
// accounts
@@ -151,6 +156,7 @@ private: MCONTACT GetContactFromAuthEvent(MEVENT hEvent);
+ void LoadContactsAuth(const NETLIBHTTPREQUEST *response);
void LoadContactsInfo(const NETLIBHTTPREQUEST *response);
void LoadContactList(const NETLIBHTTPREQUEST *response);
|