GetPointerFramePenInfoHistory function user32

int GetPointerFramePenInfoHistory(
  1. int pointerId,
  2. Pointer<Uint32> entriesCount,
  3. Pointer<Uint32> pointerCount,
  4. Pointer<POINTER_PEN_INFO> penInfo,
)

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

BOOL GetPointerFramePenInfoHistory(
  [in]            UINT32           pointerId,
  [in, out]       UINT32           *entriesCount,
  [in, out]       UINT32           *pointerCount,
  [out, optional] POINTER_PEN_INFO *penInfo
);

Implementation

int GetPointerFramePenInfoHistory(
  int pointerId,
  Pointer<Uint32> entriesCount,
  Pointer<Uint32> pointerCount,
  Pointer<POINTER_PEN_INFO> penInfo,
) => _GetPointerFramePenInfoHistory(
  pointerId,
  entriesCount,
  pointerCount,
  penInfo,
);