SDL_EnumerateProperties

Enumerate the properties contained in a group of properties.

The callback function is called for each property in the group of properties. The properties are locked during enumeration.

extern (C) nothrow @nogc extern
bool
SDL_EnumerateProperties

Parameters

props SDL_PropertiesID

the properties to query.

callback SDL_EnumeratePropertiesCallback

the function to call for each property.

userdata void*

a pointer that is passed to callback.

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

Return Value

Type: bool

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

Meta