SDL_RemoveHintCallback - Man Page
Remove a function watching a particular hint.
Synopsis
#include <SDL3/SDL_hints.h> void SDL_RemoveHintCallback(const char *name, SDL_HintCallback callback, void *userdata);
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.
Thread Safety
It is safe to call this function from any thread.
Availability
This function is available since SDL 3.2.0.
See Also
Referenced By
SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS