LoadCursor function user32

int LoadCursor(
  1. int hInstance,
  2. Pointer<Utf16> lpCursorName
)

Loads the specified cursor resource from the executable (.EXE) file associated with an application instance. Note: this function has been superseded by the LoadImage function.

HCURSOR LoadCursorW(
  HINSTANCE hInstance,
  LPCWSTR   lpCursorName
);

Implementation

int LoadCursor(int hInstance, Pointer<Utf16> lpCursorName) =>
    _LoadCursor(hInstance, lpCursorName);