SDL_RemoveHintCallback

Remove a function watching a particular hint.

extern (C) nothrow @nogc extern
void
SDL_RemoveHintCallback
(
const(char)* name
,,
void* userdata
)

Parameters

name const(char)*

The hint being watched.

callback SDL_HintCallback

An SDL_HintCallback function that will be called when the hint value changes.

userdata void*

A pointer being passed to the callback function.

Threadsafety: It is safe to call this function from any thread.

See Also

Meta