diff options
Diffstat (limited to 'protocols/VKontakte/src/vk_struct.h')
-rw-r--r-- | protocols/VKontakte/src/vk_struct.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/VKontakte/src/vk_struct.h b/protocols/VKontakte/src/vk_struct.h index ee6b699b56..89077432dd 100644 --- a/protocols/VKontakte/src/vk_struct.h +++ b/protocols/VKontakte/src/vk_struct.h @@ -103,13 +103,13 @@ struct CVkChatMessage : public MZeroedObject struct CVkChatUser : public MZeroedObject
{
- CVkChatUser(int _id) :
+ CVkChatUser(LONG _id) :
m_uid(_id),
m_bDel(false),
m_bUnknown(false)
{}
- int m_uid;
+ LONG m_uid;
bool m_bDel, m_bUnknown;
ptrW m_wszNick;
};
@@ -204,7 +204,7 @@ struct CVKChatContactTypingParam { {}
int m_ChatId;
- int m_UserId;
+ LONG m_UserId;
};
struct CVKInteres {
|