SDL_HintCallback

A callback used to send notifications of hint value changes.

This is called an initial time during SDL_AddHintCallback with the hint's current value, and then again each time the hint's value changes.

extern (C) nothrow @nogc
alias SDL_HintCallback = void function
(
void* userdata
,
const(char)* name
,
const(char)* oldValue
,
const(char)* newValue
)

See Also

Meta