diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-06-19 20:13:00 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-06-19 20:13:00 +0000 |
commit | 119f9233647a964c46be1c0bc0cf2829361a688e (patch) | |
tree | 4e08e9f569c54284acef57755daaebb5d5de2565 /protocols/Skype/src/skype.h | |
parent | bdfdc655113dba220c066ac1de5998697006cb44 (diff) |
Skype:
- added bookmarks for chat rooms (contact menu, srmm button bar, bookmark list window)
- added "ignore command" for contact
- added "block command" for contact (contact removed from clist and ignored)
- changed icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@5047 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype.h')
-rw-r--r-- | protocols/Skype/src/skype.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/protocols/Skype/src/skype.h b/protocols/Skype/src/skype.h index ffa6f36ce2..f5eb253a88 100644 --- a/protocols/Skype/src/skype.h +++ b/protocols/Skype/src/skype.h @@ -21,6 +21,7 @@ #include <m_clui.h>
#include <m_core.h>
#include <m_database.h>
+#include <m_ignore.h>
#include <m_langpack.h>
#include <m_message.h>
#include <m_netlib.h>
@@ -60,18 +61,21 @@ #define BBB_ID_CONF_INVITE 2001
#define BBB_ID_CONF_SPAWN 2002
+#define BBB_ID_CONF_BOOKMARK 2003
#define SKYPE_DB_EVENT_TYPE_EMOTE 10001
#define SKYPE_DB_EVENT_TYPE_CONTACTS 10002
#define SKYPE_DB_EVENT_TYPE_CALL 10010
-#define CMI_AUTH_REVOKE 1
-#define CMI_AUTH_REQUEST 2
-#define CMI_AUTH_GRANT 3
-
-#define CMI_TEMS_COUNT 4
+#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
#define SMI_CHAT_INVITE 1
+#define SMI_CHAT_BOOKMARKS 2
#include "string_list.h"
|