diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-25 17:49:36 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-25 17:49:36 +0000 |
commit | 019b48b38636ea582501e4a86193cf54d2df0193 (patch) | |
tree | 01493ea7cc1f013b6f84a334e3e58b610158f483 /protocols/SkypeWeb/src/skype_proto.h | |
parent | 763ff998a4b78f958fdc73440682ccbaf7a66fe4 (diff) |
SkypeWeb: Leaved chats are not added to contact list.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13143 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 1986867069..d82d0bfbae 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -91,7 +91,7 @@ private: // accounts
static LIST<CSkypeProto> Accounts;
- char *Server, *RegToken, *TokenSecret, *EndpointId;
+ char *Server, *RegToken, *TokenSecret, *EndpointId, *SelfSkypeName;
static int CompareAccounts(const CSkypeProto *p1, const CSkypeProto *p2);
@@ -210,6 +210,7 @@ private: void OnGetServerHistory (const NETLIBHTTPREQUEST *response);
void OnSyncHistory (const NETLIBHTTPREQUEST *response);
void SyncHistory();
+
//chats
void InitGroupChatModule();
void CloseAllChatChatSessions();
@@ -222,7 +223,7 @@ private: void StartChatRoom(const TCHAR *tid, const TCHAR *tname);
- void OnGetChatInfo(const NETLIBHTTPREQUEST *response);
+ void OnGetChatInfo(const NETLIBHTTPREQUEST *response, void *p);
INT_PTR __cdecl OnJoinChatRoom (WPARAM hContact, LPARAM);
INT_PTR __cdecl OnLeaveChatRoom (WPARAM hContact, LPARAM);
|