GetPointerFramePenInfo function user32

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

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

BOOL GetPointerFramePenInfo(
  [in]      UINT32           pointerId,
  [in, out] UINT32           *pointerCount,
  [out]     POINTER_PEN_INFO *penInfo
);

Implementation

int GetPointerFramePenInfo(int pointerId, Pointer<Uint32> pointerCount,
        Pointer<POINTER_PEN_INFO> penInfo) =>
    _GetPointerFramePenInfo(pointerId, pointerCount, penInfo);