sdlDestroyMutex function
Destroy a mutex created with SDL_CreateMutex().
This function must be called on any mutex that is no longer needed. Failure to destroy a mutex will result in a system memory or resource leak. While it is safe to destroy a mutex that is unlocked, it is not safe to attempt to destroy a locked mutex, and may result in undefined behavior depending on the platform.
\param mutex the mutex to destroy.
\since This function is available since SDL 3.1.3.
\sa SDL_CreateMutex
extern SDL_DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_Mutex *mutex)
Implementation
void sdlDestroyMutex(Pointer<SdlMutex> mutex) {
final sdlDestroyMutexLookupFunction = libSdl3.lookupFunction<
Void Function(Pointer<SdlMutex> mutex),
void Function(Pointer<SdlMutex> mutex)>('SDL_DestroyMutex');
return sdlDestroyMutexLookupFunction(mutex);
}