GetPointerFrameInfoHistory function user32

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

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

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

Implementation

int GetPointerFrameInfoHistory(int pointerId, Pointer<Uint32> entriesCount,
        Pointer<Uint32> pointerCount, Pointer<POINTER_INFO> pointerInfo) =>
    _GetPointerFrameInfoHistory(
        pointerId, entriesCount, pointerCount, pointerInfo);