GetPointerFrameInfo function user32

int GetPointerFrameInfo(
  1. int pointerId,
  2. Pointer<Uint32> pointerCount,
  3. Pointer<POINTER_INFO> pointerInfo
)

Gets the entire frame of information for the specified pointers associated with the current message.

BOOL GetPointerFrameInfo(
  [in]      UINT32       pointerId,
  [in, out] UINT32       *pointerCount,
  [out]     POINTER_INFO *pointerInfo
);

Implementation

int GetPointerFrameInfo(int pointerId, Pointer<Uint32> pointerCount,
        Pointer<POINTER_INFO> pointerInfo) =>
    _GetPointerFrameInfo(pointerId, pointerCount, pointerInfo);