sdlUnlockProperties function
Unlock a group of properties.
\param props the properties to unlock.
\threadsafety It is safe to call this function from any thread.
\since This function is available since SDL 3.1.3.
\sa SDL_LockProperties
extern SDL_DECLSPEC void SDLCALL SDL_UnlockProperties(SDL_PropertiesID props)
Implementation
void sdlUnlockProperties(int props) {
final sdlUnlockPropertiesLookupFunction = libSdl3.lookupFunction<
Void Function(Uint32 props),
void Function(int props)>('SDL_UnlockProperties');
return sdlUnlockPropertiesLookupFunction(props);
}