diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-11-12 12:54:36 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-11-12 12:54:36 +0000 |
commit | 1be8fd09b95b8450fdd5a1bc707b5d40219986cf (patch) | |
tree | fe91b0a2a6bbee2e5b57056c3f4479d7170c1670 /protocols/VKontakte/src/vk_struct.h | |
parent | b4a3c65ee5bd561e915f05c9514f78c51b936b0c (diff) |
VKontakte:
add typing notification for muc
upgrade VK_API version to 5.40
add ‘caption’ for link attachments
version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@15715 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/vk_struct.h')
-rw-r--r-- | protocols/VKontakte/src/vk_struct.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/protocols/VKontakte/src/vk_struct.h b/protocols/VKontakte/src/vk_struct.h index 649d3f1acd..1a55218a55 100644 --- a/protocols/VKontakte/src/vk_struct.h +++ b/protocols/VKontakte/src/vk_struct.h @@ -165,6 +165,7 @@ struct CVkChatInfo : public MZeroedObject OBJLIST<CVkChatMessage> m_msgs;
CVkChatUser* GetUserById(LPCTSTR);
+ CVkChatUser* GetUserById(int user_id);
};
struct CVkUserInfo : public MZeroedObject {
@@ -226,4 +227,14 @@ struct CVKBBCItem { VKBBCType vkBBCType;
BBCSupport vkBBCSettings;
TCHAR *ptszTempate;
+};
+
+struct CVKChatContactTypingParam {
+ CVKChatContactTypingParam(int pChatId, int pUserId) :
+ m_ChatId(pChatId),
+ m_UserId(pUserId)
+ {}
+
+ int m_ChatId;
+ int m_UserId;
};
\ No newline at end of file |