|
Size: 857
Comment: content changed
|
Size: 863
Comment: content added
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 5: | Line 5: |
| Use this function to lock out the callback function for a specified device. | Use this function to lock out the audio callback function for a specified device. |
SDL_LockAudioDevice
Use this function to lock out the audio callback function for a specified device.
Syntax
void SDL_LockAudioDevice(SDL_AudioDeviceID dev)
Function Parameters
dev |
the ID of the device to be locked |
Code Examples
You can add your code example here
Remarks
The lock manipulated by these functions protects the callback function. During a SDL_LockAudioDevice()/SDL_UnlockAudioDevice() pair, you can be guaranteed that the callback function for that device is not running.
Do not call these from the callback function or you will cause deadlock.
