SDL_CopyProperties

Copy a group of properties.

Copy all the properties from one group of properties to another, with the exception of properties requiring cleanup (set using SDL_SetPointerPropertyWithCleanup), which will not be copied. Any property that already exists on dst will be overwritten.

extern (C) nothrow @nogc extern
bool
SDL_CopyProperties

Parameters

src SDL_PropertiesID

the properties to copy.

dst SDL_PropertiesID

the destination properties.

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.

Meta