The GetMouseMovePoints function retrieves points — associated with WM_LBUTTONDOWN and WM_MOUSEMOVE messages — that would typically be discarded because an application cannot process these messages as fast as they are received.
BOOL WINAPI GetMouseMovePoints (PPOINT pptBuf, UINT nBufPoints, UINT *pnPointsRetrieved);
Header file: | Winuser.h |
Component: | Mainusrq |
Platforms: | H/PC |
Windows CE versions: | 2.0 and later |
If the function succeeds, the return value is TRUE. If the function fails, the return value is FALSE. To get extended error information, call GetLastError.
The GetMouseMovePoints function allows an application to track stylus input at a somewhat higher resolution than the resolution of the display screen. This makes it possible to improve inking performance. GetMouseMovePoints does not draw the ink; it just makes it easier to collect the points so another function can draw them.
GetMouseMovePoints is not supported for emulation.