diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-03 08:43:58 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-03 08:43:58 +0000 |
commit | 1ac5dafa951f57dfca5cf0dd6e7d2eeeea2f6772 (patch) | |
tree | 7f7adfefbd54d284072b98dc18bbd2bb26a165d4 /include | |
parent | 6c1c4268578dcd59fc78f2ec8336bee991213a93 (diff) |
- IDR_CONTEXT resource removed from all clists;
- all menu control rewritten using Menu_* functions, thus making group & tray menu customizable in StdClist & Clist_Nicer;
- major gdi resource leak fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@14483 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_clist.h | 3 | ||||
-rw-r--r-- | include/m_skin.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index 1f2776dda3..24db9715a1 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -157,6 +157,9 @@ EXTERN_C MIR_APP_DLL(HGENMENU) Menu_AddSubGroupMenuItem(TMO_MenuItem *pmi, Group // returns a HMENU identifying the menu.
EXTERN_C MIR_APP_DLL(HMENU) Menu_BuildTrayMenu(void);
+// destroys a tray menu
+MIR_APP_DLL(void) Menu_DestroyNestedMenu(HMENU hMenu);
+
// adds a new item to the tray menus
EXTERN_C MIR_APP_DLL(HGENMENU) Menu_AddTrayMenuItem(TMO_MenuItem *pmi);
diff --git a/include/m_skin.h b/include/m_skin.h index 46e7d06299..a8f51a2261 100644 --- a/include/m_skin.h +++ b/include/m_skin.h @@ -93,6 +93,7 @@ extern int hLangpack; #define SKINICON_AUTH_REQUEST 248
#define SKINICON_AUTH_GRANT 249
#define SKINICON_AUTH_REVOKE 250
+#define SKINICON_OTHER_GROUPADD 251
/////////////////////////////////////////////////////////////////////////////////////////
// Miranda skin
|