sdlUnlockProperties function properties

void sdlUnlockProperties(
  1. int props
)

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.2.0.

\sa SDL_LockProperties

extern SDL_DECLSPEC void SDLCALL SDL_UnlockProperties(SDL_PropertiesID props)

Implementation

void sdlUnlockProperties(int props) {
  final sdlUnlockPropertiesLookupFunction = _libSdl
      .lookupFunction<Void Function(Uint32 props), void Function(int props)>(
        'SDL_UnlockProperties',
      );
  return sdlUnlockPropertiesLookupFunction(props);
}