diff options
Diffstat (limited to 'protocols/VKontakte/src/vk_proto.h')
-rw-r--r-- | protocols/VKontakte/src/vk_proto.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/protocols/VKontakte/src/vk_proto.h b/protocols/VKontakte/src/vk_proto.h index 5592662f32..4c41ce0709 100644 --- a/protocols/VKontakte/src/vk_proto.h +++ b/protocols/VKontakte/src/vk_proto.h @@ -365,7 +365,8 @@ struct CVkProto : public PROTO<CVkProto> void RetrieveUnreadNotifications(time_t tLastNotificationsTime);
void OnReceiveUnreadNotifications(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
- void CVkProto::RetrieveUnreadEvents();
+ void RetrieveUnreadEvents();
+ void NewsClearHistory();
INT_PTR __cdecl SvcLoadVKNews(WPARAM, LPARAM);
@@ -550,9 +551,10 @@ private: m_bUserForceOnlineOnActivity,
m_bNewsEnabled,
m_bNotificationsEnabled,
- m_bSpecialContactAlwaysEnabled;
+ m_bSpecialContactAlwaysEnabled,
+ m_bNewsAutoClearHistory;
- int m_iNewsInterval, m_iNotificationsInterval;
+ int m_iNewsInterval, m_iNotificationsInterval, m_iNewsAutoClearHistoryInterval;
enum MarkMsgReadOn { markOnRead, markOnReceive, markOnReply, markOnTyping };
int m_iMarkMessageReadOn;
|