diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-06-19 10:39:53 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-06-19 10:39:53 +0000 |
commit | 8cc704c0ac76ac635b2ca5e40ce5a21f2686156a (patch) | |
tree | 4d4c6b9cdbb2dceabcc0c3981a789404d32d0e7d /protocols/FacebookRM/src/proto.h | |
parent | 67e3f0fb7e0ace16b2aae903d7f17beea95fafe0 (diff) |
Facebook: Correctly show stopped-typing event after receive message (broken by r9482)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9540 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/proto.h')
-rw-r--r-- | protocols/FacebookRM/src/proto.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/protocols/FacebookRM/src/proto.h b/protocols/FacebookRM/src/proto.h index d669007f89..47e4dde821 100644 --- a/protocols/FacebookRM/src/proto.h +++ b/protocols/FacebookRM/src/proto.h @@ -190,14 +190,16 @@ public: void __cdecl SendPokeWorker(void*); // Contacts handling - bool IsMyContact(MCONTACT, bool include_chat = false); - MCONTACT ContactIDToHContact(std::string); - MCONTACT ChatIDToHContact(std::tstring); - std::string ThreadIDToContactID(std::string thread_id); - void FacebookProto::LoadContactInfo(facebook_user* fbu); - MCONTACT AddToContactList(facebook_user*, ContactType type, bool force_add = false); - void SetAllContactStatuses(int status); - MCONTACT HContactFromAuthEvent(HANDLE hEvent); + bool IsMyContact(MCONTACT, bool include_chat = false); + MCONTACT ContactIDToHContact(std::string); + MCONTACT ChatIDToHContact(std::tstring); + std::string ThreadIDToContactID(std::string thread_id); + void LoadContactInfo(facebook_user* fbu); + MCONTACT AddToContactList(facebook_user*, ContactType type, bool force_add = false); + void SetAllContactStatuses(int status); + MCONTACT HContactFromAuthEvent(HANDLE hEvent); + void StartTyping(MCONTACT hContact); + void StopTyping(MCONTACT hContact); // Chats handling void AddChat(const TCHAR *id, const TCHAR *name); |