2008-07-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR, MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
This commit is contained in:
parent
f42ef1eba7
commit
9c7041ca01
|
@ -1,3 +1,8 @@
|
|||
2008-07-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||
|
||||
* include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
|
||||
MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
|
||||
|
||||
2008-07-24 techrazy <techrazy@users.sourceforge.net>
|
||||
|
||||
* include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
|
||||
|
|
|
@ -16,6 +16,11 @@ extern "C" {
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#define MNGO_NOINTERFACE 0x00
|
||||
#define MNGO_NOERROR 0x01
|
||||
#define MNGOF_TOPGAP 0x01
|
||||
#define MNGOF_BOTTOMGAP 0x02
|
||||
|
||||
#define WC_DIALOG MAKEINTATOM(0x8002)
|
||||
#define FALT 16
|
||||
#define FCONTROL 8
|
||||
|
@ -2486,6 +2491,13 @@ typedef void(CALLBACK *SENDASYNCPROC)(HWND,UINT,DWORD,LRESULT);
|
|||
DECLARE_HANDLE(HHOOK);
|
||||
DECLARE_HANDLE(HDWP);
|
||||
DECLARE_HANDLE(HDEVNOTIFY);
|
||||
typedef struct tagMENUGETOBJECTINFO {
|
||||
DWORD dwFlags;
|
||||
UINT uPos;
|
||||
HMENU hmenu;
|
||||
PVOID riid;
|
||||
PVOID pvObj;
|
||||
} MENUGETOBJECTINFO, *PMENUGETOBJECTINFO;
|
||||
typedef struct tagACCEL {
|
||||
BYTE fVirt;
|
||||
WORD key;
|
||||
|
|
Loading…
Reference in New Issue