Tao.Sdl SDK Documentation

Sdl.SDL_FreeCursor Method 

Frees a cursor created with SDL_CreateCursor.

[Visual Basic]
Public Shared Sub SDL_FreeCursor( _
   ByRef cursor As SDL_Cursor _
)
[C#]
public static void SDL_FreeCursor(
   ref SDL_Cursor cursor
);

Parameters

cursor

Return Value

Remarks

Binds to C-function call in SDL_mouse.h:

            void SDL_FreeCursor(SDL_Cursor *cursor)
            

Frees a SDL_Cursor that was created using SDL_CreateCursor.

See Also

Sdl Class | Tao.Sdl Namespace | SDL_CreateCursor