SetSystemCursor function user32

int SetSystemCursor(
  1. int hcur,
  2. int id
)

Enables an application to customize the system cursors. It replaces the contents of the system cursor specified by the id parameter with the contents of the cursor specified by the hcur parameter and then destroys hcur.

BOOL SetSystemCursor(
  HCURSOR hcur,
  DWORD   id
);

Implementation

int SetSystemCursor(int hcur, int id) => _SetSystemCursor(hcur, id);