diff options
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 |