SDL_SetBooleanProperty

Set a boolean property in a group of properties.

extern (C) nothrow @nogc extern
bool
SDL_SetBooleanProperty
(,
const(char)* name
,
bool value
)

Parameters

props SDL_PropertiesID

the properties to modify.

name const(char)*

the name of the property to modify.

value bool

the new value of the property.

Return Value

Type: bool

true on success or false on failure; call SDL_GetError for more information.

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

See Also

Meta