From 0b2338e5a91ae7bfbb00536e25ebb552a25a5ff5 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Mon, 4 Aug 2003 10:14:19 +0000 Subject: [PATCH] made very small changes to some menu function definitions svn path=/trunk/; revision=5407 --- reactos/include/structs.h | 3 +++ reactos/include/win32k/ntuser.h | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/reactos/include/structs.h b/reactos/include/structs.h index b1e2e681604..6ac246235db 100644 --- a/reactos/include/structs.h +++ b/reactos/include/structs.h @@ -2520,6 +2520,7 @@ typedef struct tagMENUITEMINFO { DWORD dwItemData; LPTSTR dwTypeData; UINT cch; + HBITMAP hbmpItem; } MENUITEMINFO, *LPMENUITEMINFO; typedef MENUITEMINFO CONST *LPCMENUITEMINFO; @@ -2535,6 +2536,7 @@ typedef struct tagMENUITEMINFOA { DWORD dwItemData; LPSTR dwTypeData; UINT cch; + HBITMAP hbmpItem; } MENUITEMINFOA, *LPMENUITEMINFOA; typedef MENUITEMINFOA CONST *LPCMENUITEMINFOA; @@ -2550,6 +2552,7 @@ typedef struct tagMENUITEMINFOW { DWORD dwItemData; LPWSTR dwTypeData; UINT cch; + HBITMAP hbmpItem; } MENUITEMINFOW, *LPMENUITEMINFOW; typedef MENUITEMINFOW CONST *LPCMENUITEMINFOW; diff --git a/reactos/include/win32k/ntuser.h b/reactos/include/win32k/ntuser.h index 2a7d5fb5a96..85eefdd5e61 100644 --- a/reactos/include/win32k/ntuser.h +++ b/reactos/include/win32k/ntuser.h @@ -448,7 +448,7 @@ NtUserInsertMenuItem( HMENU hMenu, UINT uItem, WINBOOL fByPosition, - LPCMENUITEMINFO lpmii); + LPMENUITEMINFOW lpmii); DWORD STDCALL @@ -971,7 +971,7 @@ BOOL STDCALL NtUserMenuInfo( HMENU hmenu, - LPCMENUINFO lpcmi, + LPMENUINFO lpmi, BOOL fsog ); @@ -989,7 +989,7 @@ NtUserMenuItemInfo( HMENU hMenu, UINT uItem, BOOL fByPosition, - LPMENUITEMINFO lpmii, + LPMENUITEMINFOW lpmii, BOOL fsog ); @@ -1608,7 +1608,7 @@ NtUserThunkedMenuItemInfo( UINT uItem, BOOL fByPosition, BOOL bInsert, - LPMENUITEMINFO lpmii, + LPMENUITEMINFOW lpmii, PUNICODE_STRING lpszCaption); DWORD