table of contents
other versions
SDL_SetPropertyWithCleanup(3) | SDL3 FUNCTIONS | SDL_SetPropertyWithCleanup(3) |
NAME¶
SDL_SetPropertyWithCleanup - Set a property on a set of properties with a cleanup function that is called when the property is deleted.
HEADER FILE¶
Defined in SDL3/SDL_properties.h
SYNOPSIS¶
#include "SDL3/SDL.h"
int SDL_SetPropertyWithCleanup(SDL_PropertiesID props, const char *name, void *value, void (SDLCALL *cleanup)(void *userdata, void *value), void *userdata);
DESCRIPTION¶
The cleanup function is also called if setting the property fails for any reason.
FUNCTION PARAMETERS¶
RETURN VALUE¶
Returns 0 on success or a negative error code on failure; call
SDL_GetError () for more information.
THREAD SAFETY¶
It is safe to call this function from any thread.
AVAILABILITY¶
This function is available since SDL 3.0.0.
SEE ALSO¶
SDL_GetProperty(3), SDL_SetProperty(3)
SDL 3.1.2 | Simple Directmedia Layer |