MOUSEMOVEPOINT structure (winuser.h)
Contains information about the mouse's location in screen coordinates.
Syntax
typedef struct tagMOUSEMOVEPOINT {
int x;
int y;
DWORD time;
ULONG_PTR dwExtraInfo;
} MOUSEMOVEPOINT, *PMOUSEMOVEPOINT, *LPMOUSEMOVEPOINT;
Members
x
Type: int
The x-coordinate of the mouse.
y
Type: int
The y-coordinate of the mouse.
time
Type: DWORD
The time stamp of the mouse coordinate.
dwExtraInfo
Type: ULONG_PTR
Additional information associated with this coordinate.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | winuser.h (include Windows.h) |
See also
Conceptual
Reference