diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-12-19 22:32:35 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-12-19 22:32:35 +0000 |
commit | f795b3b823f76d9c61fccfad53c2f2cfbe5b3115 (patch) | |
tree | 40652761c22bfc3c26982d17b9d7743def399878 /protocols/Steam/src/steam_proto.h | |
parent | 02ca3b1dd1a02210333764ebafe7b4dedd68d56e (diff) |
Steam: Use server timestamp for sent messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@15905 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_proto.h')
-rw-r--r-- | protocols/Steam/src/steam_proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Steam/src/steam_proto.h b/protocols/Steam/src/steam_proto.h index 89805d86af..f30c4aa90c 100644 --- a/protocols/Steam/src/steam_proto.h +++ b/protocols/Steam/src/steam_proto.h @@ -81,6 +81,7 @@ protected: mir_cs contact_search_lock;
mir_cs requests_queue_lock;
mir_cs set_status_lock;
+ std::map<HANDLE, time_t> m_mpOutMessages;
// instances
static LIST<CSteamProto> InstanceList;
@@ -158,6 +159,7 @@ protected: // messages
int OnSendMessage(MCONTACT hContact, const char* message);
void OnMessageSent(const HttpResponse *response, void *arg);
+ int __cdecl OnPreCreateMessage(WPARAM, LPARAM lParam);
// menus
static int hChooserMenu;
|