pub unsafe extern "C" fn SDL_CreateColorCursor(
    surface: *mut SDL_Surface,
    hot_x: c_int,
    hot_y: c_int
) -> *mut SDL_Cursor
Expand description

Create a color cursor.

\param surface an SDL_Surface structure representing the cursor image \param hot_x the x position of the cursor hot spot \param hot_y the y position of the cursor hot spot \returns the new cursor on success or NULL on failure; call SDL_GetError() for more information.

\since This function is available since SDL 2.0.0.

\sa SDL_CreateCursor \sa SDL_FreeCursor