diff options
author | Robert Pösel <robyer@seznam.cz> | 2017-02-12 17:45:17 +0100 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2017-02-12 17:49:17 +0100 |
commit | d4354da54f5a6df55a1b072d4b00adc59ba4268b (patch) | |
tree | ed338b5bab8ffb0107fdd3779a4724580de0a3f2 /protocols/FacebookRM/src/communication.cpp | |
parent | 1a127084af5c2db48eb9e92c967ca96a06d27d30 (diff) |
Facebook: Notify number of loaded items (when manually triggered)
Diffstat (limited to 'protocols/FacebookRM/src/communication.cpp')
-rw-r--r-- | protocols/FacebookRM/src/communication.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/FacebookRM/src/communication.cpp b/protocols/FacebookRM/src/communication.cpp index 3ce901be9a..b9411a8e81 100644 --- a/protocols/FacebookRM/src/communication.cpp +++ b/protocols/FacebookRM/src/communication.cpp @@ -27,6 +27,11 @@ void facebook_client::client_notify(wchar_t* message) parent->NotifyEvent(parent->m_tszUserName, message, NULL, EVENT_CLIENT); } +void facebook_client::info_notify(wchar_t* message) +{ + parent->NotifyEvent(parent->m_tszUserName, message, NULL, EVENT_OTHER); +} + http::response facebook_client::sendRequest(HttpRequest *request) { http::response resp; |