diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-29 13:54:24 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-29 13:54:24 +0000 |
commit | d667adb8f13d6e8917c225260631ad6905c3fbcf (patch) | |
tree | 2d9e8f59b19274b45b1bc150ecd265ee2240182a /protocols/SkypeWeb/src/skype_proto.h | |
parent | 89113840fb4160af43bbc6cc22b1b13c5118259d (diff) |
SkypeWeb: TRouter support part 0.2.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13241 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 53e8a2b876..f64e8579e7 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -84,7 +84,7 @@ private: RequestQueue *requestQueue;
bool isTerminated;
std::map<std::string, std::string> cookies;
- HANDLE m_pollingConnection, m_hPollingThread;
+ HANDLE m_pollingConnection, m_hPollingThread, m_hTrouterThread;
static std::map<std::tstring, std::tstring> languages;
static INT_PTR CALLBACK PasswordEditorProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
@@ -144,6 +144,13 @@ private: void OnCapabilitiesSended (const NETLIBHTTPREQUEST *response);
void OnStatusChanged (const NETLIBHTTPREQUEST *response);
+ //TRouter
+
+ void OnCreateTrouter(const NETLIBHTTPREQUEST *response);
+ void OnTrouterPoliciesCreated(const NETLIBHTTPREQUEST *response);
+ void OnGetTrouter(const NETLIBHTTPREQUEST *response);
+ void CSkypeProto::TRouterThread(void*);
+
// profile
void UpdateProfileFirstName (JSONNODE *root, MCONTACT hContact = NULL);
void UpdateProfileLastName (JSONNODE *root, MCONTACT hContact = NULL);
|