SDL_RemoveHintCallback - Remove a function watching a particular hint.
Contents
Availability
This function is available since SDL 3.2.0.
Function Parameters
name the hint being watched.
callback
an SDL_HintCallback
function that will be called when the hint value changes.
userdata
a pointer being passed to the callback function.
Header File
Defined in SDL3/SDL_hints.h
Name
SDL_RemoveHintCallback - Remove a function watching a particular hint.
See Also
•(3), SDL_AddHintCallback(3) Simple Directmedia Layer SDL 3.2.10 SDL_RemoveHintCallback(3)
Synopsis
#include"SDL3/SDL.h"voidSDL_RemoveHintCallback(constchar*name,SDL_HintCallbackcallback,void*userdata);
Thread Safety
It is safe to call this function from any thread.
