diff options
author | Fishbone <fishbone@miranda-ng.org> | 2013-06-02 16:19:21 +0000 |
---|---|---|
committer | Fishbone <fishbone@miranda-ng.org> | 2013-06-02 16:19:21 +0000 |
commit | ab7e0b08fa8c31cf1d468ab4b3c660e2b1836811 (patch) | |
tree | 52977603ea0f431adff16573d3d5b46a95843c7f /protocols/WhatsApp/src/theme.h | |
parent | 8320783f99419db1e40346fdb292c19ee008948b (diff) |
Added WhatsApp-protocol
git-svn-id: http://svn.miranda-ng.org/main/trunk@4861 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/theme.h')
-rw-r--r-- | protocols/WhatsApp/src/theme.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/protocols/WhatsApp/src/theme.h b/protocols/WhatsApp/src/theme.h new file mode 100644 index 0000000000..c5881ca03a --- /dev/null +++ b/protocols/WhatsApp/src/theme.h @@ -0,0 +1,19 @@ +#if !defined(THEME_H)
+#define THEME_H
+
+void InitIcons(void);
+HANDLE GetIconHandle(const char *name);
+
+//void InitContactMenus(void);
+void EnableMenuItem(HANDLE hMenuItem, bool enable);
+
+/* Contact menu item indexes */
+#define CMI_ADD_CONTACT_TO_GROUP 0
+#define CMI_REMOVE_CONTACT_FROM_GROUP 1
+#define CMI_LEAVE_GROUP 2
+#define CMI_REMOVE_GROUP 3
+#define CMI_CHANGE_GROUP_SUBJECT 4
+
+#define CMITEMS_COUNT 5
+
+#endif
\ No newline at end of file |