diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-09-29 20:47:11 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-09-29 20:47:11 +0000 |
commit | 7538e4d50ab714f503df3c82c9ef94e90fb49ad9 (patch) | |
tree | 6c531d21f0c694a9ced942142784de5297364c1b /protocols/FacebookRM/src/client.h | |
parent | 2799ac954aa83e0f3a1c57dacadd3a41fa9ba6bb (diff) |
Facebook: first experimental implementation of multi user chats (thanks to nobodyreal for patch)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6273 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 a14a29b483..41a8b6a1d0 100644 --- a/protocols/FacebookRM/src/client.h +++ b/protocols/FacebookRM/src/client.h @@ -95,6 +95,7 @@ public: std::map<std::string, std::string> cookies;
std::map<std::string, std::string> pages;
+ std::map<std::string, facebook_chatroom> chat_rooms;
std::string get_newsfeed_type();
std::string get_server_type();
@@ -102,7 +103,7 @@ public: char* load_cookies();
void store_headers(http::response* resp, NETLIBHTTPHEADER* headers, int headers_count);
- void clear_cookies();
+ void clear_cookies();
////////////////////////////////////////////////////////////
|