SDL_UnlockAudioStream

Unlock an audio stream for serialized access.

This unlocks an audio stream after a call to SDL_LockAudioStream.

extern (C) nothrow @nogc extern
bool
SDL_UnlockAudioStream

Parameters

stream SDL_AudioStream*

the audio stream to unlock.

Return Value

Type: bool

true on success or false on failure; call SDL_GetError() for more information.

Threadsafety: You should only call this from the same thread that previously called SDL_LockAudioStream.

See Also

Meta