GetMouseMovePointsEx function user32

int GetMouseMovePointsEx(
  1. int cbSize,
  2. Pointer<MOUSEMOVEPOINT> lppt,
  3. Pointer<MOUSEMOVEPOINT> lpptBuf,
  4. int nBufPoints,
  5. int resolution
)

Retrieves a history of up to 64 previous coordinates of the mouse or pen.

int GetMouseMovePointsEx(
  UINT             cbSize,
  LPMOUSEMOVEPOINT lppt,
  LPMOUSEMOVEPOINT lpptBuf,
  int              nBufPoints,
  DWORD            resolution
);

Implementation

int GetMouseMovePointsEx(int cbSize, Pointer<MOUSEMOVEPOINT> lppt,
        Pointer<MOUSEMOVEPOINT> lpptBuf, int nBufPoints, int resolution) =>
    _GetMouseMovePointsEx(cbSize, lppt, lpptBuf, nBufPoints, resolution);