diff options
Diffstat (limited to 'protocols/Skype/src/skype.h')
-rw-r--r-- | protocols/Skype/src/skype.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/protocols/Skype/src/skype.h b/protocols/Skype/src/skype.h index f5eb253a88..098a5efeb8 100644 --- a/protocols/Skype/src/skype.h +++ b/protocols/Skype/src/skype.h @@ -67,12 +67,16 @@ #define SKYPE_DB_EVENT_TYPE_CONTACTS 10002
#define SKYPE_DB_EVENT_TYPE_CALL 10010
-#define CMI_AUTH_REQUEST 1
-#define CMI_AUTH_GRANT 2
-#define CMI_AUTH_REVOKE 3
-#define CMI_CHAT_BOOKMARK 4
-#define CMI_IGNORE 5
-#define CMI_BLOCK 6
+enum
+{
+ CMI_AUTH_REQUEST,
+ CMI_AUTH_GRANT,
+ CMI_AUTH_REVOKE,
+ CMI_CHAT_BOOKMARK,
+ CMI_IGNORE,
+ CMI_BLOCK,
+ CMI_MAX // this item shall be the last one
+};
#define SMI_CHAT_INVITE 1
#define SMI_CHAT_BOOKMARKS 2
|