diff options
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 1a4cccda18..c3fd62b343 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -159,7 +159,7 @@ public: void OnMessageSent(MHttpResponse *response, AsyncHttpRequest *pRequest);
void OnGetServerHistory(MHttpResponse *response, AsyncHttpRequest *pRequest);
- void OnSyncHistory(MHttpResponse *response, AsyncHttpRequest *pRequest);
+ void OnSyncConversations(MHttpResponse *response, AsyncHttpRequest *pRequest);
void OnLoadChats(MHttpResponse *response, AsyncHttpRequest *pRequest);
void OnGetChatInfo(MHttpResponse *response, AsyncHttpRequest *pRequest);
@@ -261,8 +261,6 @@ private: int __cdecl OnPreCreateMessage(WPARAM, LPARAM lParam);
- void MarkMessagesRead(MCONTACT hContact, MEVENT hDbEvent);
-
void ProcessContactRecv(MCONTACT hContact, const char *szContent, DB::EventInfo &dbei);
void ProcessFileRecv(MCONTACT hContact, const char *szContent, DB::EventInfo &dbei);
@@ -298,7 +296,6 @@ private: void ProcessConversationUpdate(const JSONNode &node);
void RefreshStatuses(void);
- void ReadHistoryRest(const char *url);
// utils
template <typename T>
@@ -315,6 +312,9 @@ private: bool IsMe(const wchar_t *str);
bool IsMe(const char *str);
+ int64_t getLastTime(MCONTACT);
+ void setLastTime(MCONTACT, int64_t);
+
static time_t IsoToUnixTime(const std::string &stamp);
static int SkypeToMirandaStatus(const char *status);
|