GetPointerInputTransform function user32

int GetPointerInputTransform(
  1. int pointerId,
  2. int historyCount,
  3. Pointer<INPUT_TRANSFORM> inputTransform
)

Gets one or more transforms for the pointer information coordinates associated with the current message.

BOOL GetPointerInputTransform(
  [in]  UINT32          pointerId,
  [in]  UINT32          historyCount,
  [out] INPUT_TRANSFORM *inputTransform
);

Implementation

int GetPointerInputTransform(int pointerId, int historyCount,
        Pointer<INPUT_TRANSFORM> inputTransform) =>
    _GetPointerInputTransform(pointerId, historyCount, inputTransform);