* include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
This commit is contained in:
parent
5682a6dd3d
commit
bb1085295a
|
@ -1,3 +1,7 @@
|
||||||
|
2002-06-13 Earnie Boyd <earnie@users.sf.net>
|
||||||
|
|
||||||
|
* include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
|
||||||
|
|
||||||
2002-06-13 Danny Smith <dannysmith@users.sourceforge.net>
|
2002-06-13 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* lib/test.c: #include comcat.h.
|
* lib/test.c: #include comcat.h.
|
||||||
|
|
|
@ -2386,6 +2386,12 @@ typedef struct tagTOGGLEKEYS {
|
||||||
DWORD cbSize;
|
DWORD cbSize;
|
||||||
DWORD dwFlags;
|
DWORD dwFlags;
|
||||||
} TOGGLEKEYS;
|
} TOGGLEKEYS;
|
||||||
|
typedef struct tagMOUSEHOOKSTRUCT {
|
||||||
|
POINT pt;
|
||||||
|
HWND hwnd;
|
||||||
|
UINT wHitTestCode;
|
||||||
|
DWORD dwExtraInfo;
|
||||||
|
} MOUSEHOOKSTRUCT, FAR *LPMOUSEHOOKSTRUCT, *PMOUSEHOOKSTRUCT;
|
||||||
typedef struct tagTRACKMOUSEEVENT {
|
typedef struct tagTRACKMOUSEEVENT {
|
||||||
DWORD cbSize;
|
DWORD cbSize;
|
||||||
DWORD dwFlags;
|
DWORD dwFlags;
|
||||||
|
|
Loading…
Reference in New Issue