mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SDK][INCLUDE] Add MENUGETOBJECTINFO structure (#1727)
- Add MENUGETOBJECTINFO structure to <winuser.h> header. - Add MNGOF_TOPGAP and MNGOF_BOTTOMGAP constant macros.
This commit is contained in:
parent
47e183c521
commit
d46edf494d
1 changed files with 11 additions and 0 deletions
|
@ -3180,6 +3180,17 @@ typedef struct _WNDCLASSEXW {
|
|||
HICON hIconSm;
|
||||
} WNDCLASSEXW,*LPWNDCLASSEXW,*PWNDCLASSEXW;
|
||||
|
||||
#define MNGOF_TOPGAP 0x00000001
|
||||
#define MNGOF_BOTTOMGAP 0x00000002
|
||||
|
||||
typedef struct tagMENUGETOBJECTINFO {
|
||||
DWORD dwFlags;
|
||||
UINT uPos;
|
||||
HMENU hmenu;
|
||||
PVOID riid;
|
||||
PVOID pvObj;
|
||||
} MENUGETOBJECTINFO,*PMENUGETOBJECTINFO;
|
||||
|
||||
typedef struct tagMENUITEMINFOA {
|
||||
UINT cbSize;
|
||||
UINT fMask;
|
||||
|
|
Loading…
Reference in a new issue