Function SDL_DestroyProperties

pub unsafe extern "C" fn SDL_DestroyProperties(props: u32)
Available on crate feature dep_sdl3 only.
Expand description

Destroy a group of properties.

All properties are deleted and their cleanup functions will be called, if any.

§Parameters

  • props: the properties to destroy.

§Thread safety

This function should not be called while these properties are locked or other threads might be setting or getting values from these properties.

§Availability

This function is available since SDL 3.2.0.

§See also