Scroll to navigation

SDL_AddHintCallback(3) SDL3 FUNCTIONS SDL_AddHintCallback(3)

NAME

SDL_AddHintCallback - Add a function to watch a particular hint.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_AddHintCallback(const char *name,
                        SDL_HintCallback callback,
                        void *userdata);

FUNCTION PARAMETERS

the hint to watch
An SDL_HintCallback
function that will be called when the hint value changes
a pointer to pass to the callback function

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_DelHintCallback(3)

SDL 3.1.0 SDL