diff options
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);
|