GESTURENOTIFYSTRUCT structure (winuser.h)
When transmitted with WM_GESTURENOTIFY messages, passes information about a gesture.
Syntax
typedef struct tagGESTURENOTIFYSTRUCT {
UINT cbSize;
DWORD dwFlags;
HWND hwndTarget;
POINTS ptsLocation;
DWORD dwInstanceID;
} GESTURENOTIFYSTRUCT, *PGESTURENOTIFYSTRUCT;
Members
cbSize
The size of the structure.
dwFlags
Reserved for future use.
hwndTarget
The target window for the gesture notification.
ptsLocation
The location of the gesture in physical screen coordinates.
dwInstanceID
A specific gesture instance with gesture messages starting with GID_START and ending with GID_END.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 7 [desktop apps only] |
Minimum supported server | Windows Server 2008 R2 [desktop apps only] |
Header | winuser.h (include Windows.h) |