WASAPI.RenderDeviceIsStarted method |
|
Remarks
Checks if the given WASAPI device has neen previously started through the WASAPI.RenderDeviceStartExcusive or WASAPI.RenderDeviceStartShared methods.
This method is only intended for usage with Windows Vista and later versions.
For further details about the use of WASAPI see the WASAPI object and the How to manage audio playback through WASAPI tutorial.
Syntax
[Visual Basic] control.WASAPI.RenderDeviceIsStarted ( nDeviceIndex as Integer ) as Boolean |
[C++] BOOL control.WASAPI.RenderDeviceIsStarted ( short nDeviceIndex ); |
Parameter |
Description |
|
|
nDeviceIndex |
Number representing the zero-based index of the WASAPI device of interest. The total number of available WASAPI devices can be obtained using the WASAPI.RenderDeviceGetCount method. |
Return value
Value |
Meaning |
|
|
FALSE |
The given WASAPI device is not started |
TRUE |
The given WASAPI device is started |