GetPointerInfoHistory function user32

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

Gets the information associated with the individual inputs, if any, that were coalesced into the current message for the specified pointer. The most recent input is included in the returned history and is the same as the most recent input returned by the GetPointerInfo function.

BOOL GetPointerInfoHistory(
  [in]            UINT32       pointerId,
  [in, out]       UINT32       *entriesCount,
  [out, optional] POINTER_INFO *pointerInfo
);

Implementation

int GetPointerInfoHistory(int pointerId, Pointer<Uint32> entriesCount,
        Pointer<POINTER_INFO> pointerInfo) =>
    _GetPointerInfoHistory(pointerId, entriesCount, pointerInfo);