diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-07-06 07:53:55 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-07-06 07:53:55 +0000 |
commit | 95d43413eeef2a573d8e317088c8a0e108a3c3f7 (patch) | |
tree | a975e844823990ee8ec25409c5fd0d8074fcc3b9 /protocols/FacebookRM/src/client.h | |
parent | 7cf07cdfae771f29937815f5dafcb74af7d35664 (diff) |
Facebook: Set "Message read" info (if exists) on opening message window
git-svn-id: http://svn.miranda-ng.org/main/trunk@9698 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/client.h')
-rw-r--r-- | protocols/FacebookRM/src/client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/client.h b/protocols/FacebookRM/src/client.h index a1fca8e1e0..29b2ba0f95 100644 --- a/protocols/FacebookRM/src/client.h +++ b/protocols/FacebookRM/src/client.h @@ -105,7 +105,8 @@ public: std::string get_privacy_type();
std::map<MCONTACT, bool> ignore_read;
- std::set<MCONTACT> typing; // store info about typing contacts, because Facebook doesn't send "stopped typing" event when there is actual message being sent
+ std::set<MCONTACT> typers; // store info about typing contacts, because Facebook doesn't send "stopped typing" event when there is actual message being sent
+ std::map<MCONTACT, time_t> readers;
char* load_cookies();
void store_headers(http::response* resp, NETLIBHTTPHEADER* headers, int headers_count);
|