GetPointerFrameTouchInfoHistory function user32

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

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

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

Implementation

int GetPointerFrameTouchInfoHistory(int pointerId, Pointer<Uint32> entriesCount,
        Pointer<Uint32> pointerCount, Pointer<POINTER_TOUCH_INFO> touchInfo) =>
    _GetPointerFrameTouchInfoHistory(
        pointerId, entriesCount, pointerCount, touchInfo);