GetPointerCursorId function user32

int GetPointerCursorId(
  1. int pointerId,
  2. Pointer<Uint32> cursorId
)

Retrieves the cursor identifier associated with the specified pointer.

BOOL GetPointerCursorId(
  [in]  UINT32 pointerId,
  [out] UINT32 *cursorId
);

Implementation

int GetPointerCursorId(int pointerId, Pointer<Uint32> cursorId) =>
    _GetPointerCursorId(pointerId, cursorId);