diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2014-12-31 04:44:21 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2014-12-31 04:44:21 +0000 |
commit | 5de1b2c939a26695aaab99540fe3d37527512cb3 (patch) | |
tree | a27e4c60a26c0f28d5b6321fce6564c3c8cb9239 /protocols/VKontakte/src/vk_proto.h | |
parent | 4f357958b94ad9e0637fcfd7c9b83cf24803c4cb (diff) |
VKontakte:
code cleanup
add hidden option for max photo count on loading news
git-svn-id: http://svn.miranda-ng.org/main/trunk@11690 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/vk_proto.h')
-rw-r--r-- | protocols/VKontakte/src/vk_proto.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/protocols/VKontakte/src/vk_proto.h b/protocols/VKontakte/src/vk_proto.h index cd3bf38d10..80bb853e52 100644 --- a/protocols/VKontakte/src/vk_proto.h +++ b/protocols/VKontakte/src/vk_proto.h @@ -430,7 +430,6 @@ struct CVkProto : public PROTO<CVkProto> void RetrieveUnreadMessages();
void OnReceiveMessages(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
void OnReceiveDlgs(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
-
void OnSendMessage(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
@@ -572,23 +571,26 @@ private: m_bNotificationFilterReposts,
m_bNotificationFilterMentions,
m_bUseBBCOnAttacmentsAsNews;
-
- int m_iNewsInterval, m_iNotificationsInterval, m_iNewsAutoClearHistoryInterval;
+ int m_iNewsInterval,
+ m_iNotificationsInterval,
+ m_iNewsAutoClearHistoryInterval,
+ m_iMaxLoadNewsPhoto;
enum MarkMsgReadOn { markOnRead, markOnReceive, markOnReply, markOnTyping };
- int m_iMarkMessageReadOn;
+ MarkMsgReadOn m_iMarkMessageReadOn;
enum SyncHistoryMetod { syncOff, syncAuto, sync1Days, sync3Days };
- int m_iSyncHistoryMetod;
+ SyncHistoryMetod m_iSyncHistoryMetod;
enum MusicSendMetod { sendNone, sendStatusOnly, sendBroadcastOnly, sendBroadcastAndStatus };
- int m_iMusicSendMetod;
+ MusicSendMetod m_iMusicSendMetod;
enum IMGBBCSypport { imgNo, imgFullSize, imgPreview130, imgPreview604 };
- int m_iIMGBBCSupport;
- BBCSupport m_iBBCForNews;
- BBCSupport m_iBBCForAttachments;
+ IMGBBCSypport m_iIMGBBCSupport;
+
+ BBCSupport m_iBBCForNews,
+ m_iBBCForAttachments;
LONG m_myUserId;
ptrT m_defaultGroup;
|