SDL_GetDefaultCursor - Get the default cursor.
Contents
Availability
This function is available since SDL 3.2.0.
Simple Directmedia Layer SDL 3.2.10 SDL_GetDefaultCursor(3)
Description
You do not have to call SDL_DestroyCursor () on the return value, but it is safe to do so.
Header File
Defined in SDL3/SDL_mouse.h
Name
SDL_GetDefaultCursor - Get the default cursor.
Return Value
( SDL_Cursor
*) Returns the default cursor on success or NULL on failuree; call SDL_GetError () for more information.
Synopsis
#include"SDL3/SDL.h"SDL_Cursor*SDL_GetDefaultCursor(void);
Thread Safety
This function should only be called on the main thread.
