diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-02-18 10:35:21 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-02-18 10:35:21 +0000 |
commit | d407d10b3c799fd0c4b323d87cf45c56197aedfc (patch) | |
tree | 423e73af5ceac78d3624e1eee059549c93824931 /protocols/VKontakte/src/vk_proto.h | |
parent | 776cf2cb82f9c95e18acbc2ec37ab6dbb8cebc74 (diff) |
VKontakte:
LongPollServer always use ssl now
fix false positives for set message read time and status invisible
version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@12179 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/vk_proto.h')
-rw-r--r-- | protocols/VKontakte/src/vk_proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/VKontakte/src/vk_proto.h b/protocols/VKontakte/src/vk_proto.h index 8bd95bdc02..5ce2dc5571 100644 --- a/protocols/VKontakte/src/vk_proto.h +++ b/protocols/VKontakte/src/vk_proto.h @@ -392,7 +392,7 @@ struct CVkProto : public PROTO<CVkProto> MCONTACT FindUser(LONG userid, bool bCreate = false);
MCONTACT FindChat(LONG dwUserid);
- bool CheckMid(int guid);
+ bool CheckMid(LIST<void> &lList, int guid);
JSONNODE* CheckJsonResponse(AsyncHttpRequest *pReq, NETLIBHTTPREQUEST *reply, JSONROOT&);
bool CheckJsonResult(AsyncHttpRequest *pReq, JSONNODE*);
@@ -630,6 +630,7 @@ private: ULONG m_msgId;
LIST<void> m_sendIds;
+ LIST<void> m_incIds;
static INT_PTR CALLBACK OptionsProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK OptionsAdvProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|