table of contents
SDL_TLSDestructorCallback(3type) | SDL3 DATATYPES | SDL_TLSDestructorCallback(3type) |
NAME¶
SDL_TLSDestructorCallback - The callback used to cleanup data passed to SDL_SetTLS .
HEADER FILE¶
Defined in SDL3/SDL_thread.h
SYNOPSIS¶
#include "SDL3/SDL.h"
typedef void (SDLCALL *SDL_TLSDestructorCallback)(void *value);
DESCRIPTION¶
This is called when a thread exits, to allow an app to free any resources.
FUNCTION PARAMETERS¶
- value
- a pointer previously handed to SDL_SetTLS .
AVAILABILITY¶
This datatype is available since SDL 3.1.3.
SEE ALSO¶
•(3), SDL_SetTLS(3)
SDL 3.1.6 | Simple Directmedia Layer |