diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-29 20:10:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-29 20:10:40 +0000 |
commit | 916c8dea1e49bbfcf7503fc83db63ddc94648f9b (patch) | |
tree | 04b54b1ba8f482121d689cead7da679f444e4b1c /include | |
parent | 28b5f3536672bdfa6b3ed76a8483424453108b7a (diff) |
ownerData isolated inside TMO_IntMenuItem not to allow external structures to play with it
git-svn-id: http://svn.miranda-ng.org/main/trunk@14443 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_genmenu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/m_genmenu.h b/include/m_genmenu.h index 2ea11b239b..a159b34e22 100644 --- a/include/m_genmenu.h +++ b/include/m_genmenu.h @@ -46,7 +46,6 @@ struct TMO_MenuItem HICON hIcon;
HANDLE hIcolibItem;
};
- void *ownerdata;
int hLangpack;
};
@@ -104,7 +103,7 @@ EXTERN_C MIR_APP_DLL(BOOL) Menu_ProcessCommandById(int command, LPARAM lParam); // Adds a menu item to genmenu
// Returns HGENMENU on success, or NULL on failure
-EXTERN_C MIR_APP_DLL(HGENMENU) Menu_AddItem(int hMenuObject, TMO_MenuItem *pItem);
+EXTERN_C MIR_APP_DLL(HGENMENU) Menu_AddItem(int hMenuObject, TMO_MenuItem *pItem, void *pUserData);
/////////////////////////////////////////////////////////////////////////////////////////
// Adds new submenu
|