diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-10 12:01:55 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-10 12:01:55 +0000 |
commit | 78f97fe198286a120370f6c56921205191f986b0 (patch) | |
tree | 96629174df34f22697c5eaad7cfe102f8f7fd5eb /protocols/Tox/src/tox_menus.h | |
parent | bff791f9bd1828c66e1462a4a3f86a800b58ad13 (diff) |
Tox:
- switched to new api
- updated tox core
git-svn-id: http://svn.miranda-ng.org/main/trunk@12726 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_menus.h')
-rw-r--r-- | protocols/Tox/src/tox_menus.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/protocols/Tox/src/tox_menus.h b/protocols/Tox/src/tox_menus.h index e75f9c8b45..bd3308afdd 100644 --- a/protocols/Tox/src/tox_menus.h +++ b/protocols/Tox/src/tox_menus.h @@ -2,12 +2,14 @@ #define _TOX_MENUS_H_
#define CMI_POSITION -201001000
-#define CMI_AUTH_REQUEST 1
-#define CMI_AUTH_GRANT 2
-#define CMI_MAX 3 // this item shall be the last one
+
+#define CMI_AUTH_REQUEST 0
+#define CMI_AUTH_GRANT 1
+#define CMI_MAX 2 // this item shall be the last one
#define SMI_POSITION 200000
-#define SMI_TOXID_COPY 1
-#define SMI_GROUPCHAT_CREATE 2
+
+#define SMI_TOXID_COPY 0
+#define SMI_GROUPCHAT_CREATE 1
#endif //_TOX_MENUS_H_
\ No newline at end of file |