GetPointerPenInfoHistory function user32
int
GetPointerPenInfoHistory(
- int pointerId,
- Pointer<
Uint32> entriesCount, - Pointer<
POINTER_PEN_INFO> penInfo
Gets the pen-based information associated with the individual inputs, if any, that were coalesced into the current message for the specified pointer (of type PT_PEN). The most recent input is included in the returned history and is the same as the most recent input returned by the GetPointerPenInfo function.
BOOL GetPointerPenInfoHistory(
[in] UINT32 pointerId,
[in, out] UINT32 *entriesCount,
[out, optional] POINTER_PEN_INFO *penInfo
);
Implementation
int GetPointerPenInfoHistory(int pointerId, Pointer<Uint32> entriesCount,
Pointer<POINTER_PEN_INFO> penInfo) =>
_GetPointerPenInfoHistory(pointerId, entriesCount, penInfo);