* include/winuser.h (tagMENUITEMINFOA): Correct dwItemData definition.

(tagMENUITEMINFOW): Ditto.
This commit is contained in:
Earnie Boyd
2012-08-01 14:44:22 +00:00
parent e665b0aab2
commit 764af9a4a5
2 changed files with 7 additions and 2 deletions

View File

@ -2771,7 +2771,7 @@ typedef struct tagMENUITEMINFOA {
HMENU hSubMenu;
HBITMAP hbmpChecked;
HBITMAP hbmpUnchecked;
DWORD dwItemData;
ULONG_PTR dwItemData;
LPSTR dwTypeData;
UINT cch;
#if (_WIN32_WINNT >= 0x0500)
@ -2788,7 +2788,7 @@ typedef struct tagMENUITEMINFOW {
HMENU hSubMenu;
HBITMAP hbmpChecked;
HBITMAP hbmpUnchecked;
DWORD dwItemData;
ULONG_PTR dwItemData;
LPWSTR dwTypeData;
UINT cch;
#if (_WIN32_WINNT >= 0x0500)