diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-08-12 18:56:09 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-08-12 18:56:09 +0000 |
commit | e530b1be3a65296d2324b2299897367ee14d4a3d (patch) | |
tree | 12a5f019b133bebf61a26f76b4841075f6162ebd /protocols/Tox/src/tox_proto.h | |
parent | 9c4e02916ad863a7fdd95d2668f29714997d61c5 (diff) |
Tox: contact status message support
git-svn-id: http://svn.miranda-ng.org/main/trunk@14926 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.h')
-rw-r--r-- | protocols/Tox/src/tox_proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h index b2326dc4d4..28d22f2422 100644 --- a/protocols/Tox/src/tox_proto.h +++ b/protocols/Tox/src/tox_proto.h @@ -215,6 +215,8 @@ private: static void OnFriendMessage(Tox *tox, uint32_t friendNumber, TOX_MESSAGE_TYPE type, const uint8_t *message, size_t length, void *arg);
static void OnReadReceipt(Tox *tox, uint32_t friendNumber, uint32_t messageId, void *arg);
+ void __cdecl GetStatusMessageAsync(void* arg);
+
int OnUserIsTyping(MCONTACT hContact, int type);
static void OnTypingChanged(Tox *tox, uint32_t friendNumber, bool isTyping, void *arg);
|