GetPointerTouchInfoHistory function user32

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

Gets the touch-based information associated with the individual inputs, if any, that were coalesced into the current message for the specified pointer (of type PT_TOUCH). The most recent input is included in the returned history and is the same as the most recent input returned by the GetPointerTouchInfo function.

BOOL GetPointerTouchInfoHistory(
  [in]            UINT32             pointerId,
  [in, out]       UINT32             *entriesCount,
  [out, optional] POINTER_TOUCH_INFO *touchInfo
);

Implementation

int GetPointerTouchInfoHistory(int pointerId, Pointer<Uint32> entriesCount,
        Pointer<POINTER_TOUCH_INFO> touchInfo) =>
    _GetPointerTouchInfoHistory(pointerId, entriesCount, touchInfo);