THIS PAGE IS A WORK IN PROGRESS ... Please make edits to this page to improve it!
Show the cursor.
int SDL_ShowCursor(void);
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
This function is available since SDL 3.0.0.
int main(int argc, char *argv[]) {
/* creates a blank cursor */
SDL_ShowCursor(SDL_DISABLE);/* ... */
return 0;
}
CategoryAPI, CategoryMouse, CategoryDraft