diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-02-07 08:43:46 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-02-07 08:43:46 +0000 |
commit | 510e81b5dcee4b7655f350bc8fdcb7539d65b7a4 (patch) | |
tree | 36ee8fc5a1302225ce0d66e1f2bc772070c891ca /protocols/FacebookRM/src/constants.h | |
parent | 18dd9c187ce62463f30e4009450dd643c65e2514 (diff) |
Facebook: Separate (add new type) "Friendship changes" notifications from "Other notifications"
git-svn-id: http://svn.miranda-ng.org/main/trunk@12034 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/constants.h')
-rw-r--r-- | protocols/FacebookRM/src/constants.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/constants.h b/protocols/FacebookRM/src/constants.h index b8493352a3..f046b785a6 100644 --- a/protocols/FacebookRM/src/constants.h +++ b/protocols/FacebookRM/src/constants.h @@ -93,12 +93,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define DEFAULT_EVENT_FEEDS_ENABLE 0
#define DEFAULT_EVENT_OTHER_ENABLE 1
#define DEFAULT_EVENT_CLIENT_ENABLE 1
+#define DEFAULT_EVENT_FRIENDSHIP_ENABLE 1
// Event flags
#define FACEBOOK_EVENT_CLIENT 0x10000000 // Facebook error or info message
#define FACEBOOK_EVENT_NEWSFEED 0x20000000 // Facebook newsfeed (wall) message
#define FACEBOOK_EVENT_NOTIFICATION 0x40000000 // Facebook new notification
-#define FACEBOOK_EVENT_OTHER 0x80000000 // Facebook other event - friend requests/new messages
+#define FACEBOOK_EVENT_OTHER 0x80000000 // Facebook other event (poke sent, status update, ...)
+#define FACEBOOK_EVENT_FRIENDSHIP 0x01000000 // Facebook friendship event
// Send message return values
#define SEND_MESSAGE_OK 0
|