diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-10 18:57:01 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-10 18:57:01 +0000 |
commit | 0ad9fe63585e924f1e840a121b477035b6e844e4 (patch) | |
tree | a19f6efb9131077970351b64dfbc96d8e08a7afe /protocols/SkypeWeb/src/skype_proto.h | |
parent | d7973b17de4eba3419a084920909c65b123c0d03 (diff) |
SkypeWeb:
- fixed login
- some code for chats
git-svn-id: http://svn.miranda-ng.org/main/trunk@12753 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 07acb2ec1e..4b43992e03 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -237,7 +237,14 @@ private: MCONTACT FindChatRoom(const char *chatname);
MCONTACT AddChatRoom(const char *chatname);
- void SetChatStatus(MCONTACT hContact, int iStatus);
+
+ int __cdecl OnGroupChatEventHook(WPARAM, LPARAM lParam);
+ int __cdecl OnGroupChatMenuHook(WPARAM, LPARAM lParam);
+
+ void StartChatRoom(MCONTACT hChatRoom, bool showWindow = false);
+
+ INT_PTR __cdecl OnJoinChatRoom(MCONTACT hContact, LPARAM);
+ INT_PTR __cdecl OnLeaveChatRoom(MCONTACT hContact, LPARAM);
void OnChatEvent(JSONNODE *node);
|