diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-05-23 15:35:31 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-05-23 15:35:31 +0000 |
commit | 1100cf0fc0aa447cb2390409c8dcea9deebe3d4f (patch) | |
tree | 569c28d3028d3122d87495ccb754d0ef03756b64 /protocols/FacebookRM/src/client.h | |
parent | d9c995acca09460e8b8533c7efdb5eddd6e61d73 (diff) |
Facebook: Load sent messages from browser into Miranda.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4811 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/client.h')
-rw-r--r-- | protocols/FacebookRM/src/client.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/FacebookRM/src/client.h b/protocols/FacebookRM/src/client.h index 9f51ebe2f6..ce49743ea8 100644 --- a/protocols/FacebookRM/src/client.h +++ b/protocols/FacebookRM/src/client.h @@ -90,7 +90,7 @@ public: HANDLE cookies_lock_;
- std::map< std::string, std::string > cookies;
+ std::map<std::string, std::string> cookies;
std::string get_newsfeed_type();
std::string get_server_type();
@@ -137,7 +137,7 @@ public: // Updates handling
- List::List< facebook_user > buddies;
+ List::List<facebook_user> buddies;
HANDLE buddies_lock_;
HANDLE send_message_lock_;
@@ -149,6 +149,8 @@ public: // Messages handling
+ std::set<std::string> messages_sent;
+
bool channel();
bool send_message(std::string message_recipient, std::string message_text, std::string *error_text, int method);
////////////////////////////////////////////////////////////
|