GetPointerFrameTouchInfo function user32

int GetPointerFrameTouchInfo(
  1. int pointerId,
  2. Pointer<Uint32> pointerCount,
  3. Pointer<POINTER_TOUCH_INFO> touchInfo
)

Gets the entire frame of touch-based information for the specified pointers (of type PT_TOUCH) associated with the current message.

BOOL GetPointerFrameTouchInfo(
  [in]      UINT32             pointerId,
  [in, out] UINT32             *pointerCount,
  [out]     POINTER_TOUCH_INFO *touchInfo
);

Implementation

int GetPointerFrameTouchInfo(int pointerId, Pointer<Uint32> pointerCount,
        Pointer<POINTER_TOUCH_INFO> touchInfo) =>
    _GetPointerFrameTouchInfo(pointerId, pointerCount, touchInfo);