ASIO.DeviceIsStarted method |
|
Remarks
Indicates if the given ASIO device has been started through a previous call to the ASIO.DeviceStart method or through the ASIO.DeviceListenInputStart method.
For further details about the use of ASIO drivers see the ASIOMan class and the How to manage ASIO drivers tutorial.
Syntax
[Visual Basic] Public Function DeviceIsStarted ( nDeviceIndex as Int16 ) as Boolean |
[C#] public bool DeviceIsStarted ( Int16 nDeviceIndex ); |
[C++] public: bool DeviceIsStarted ( Int16 nDeviceIndex ); |
Parameter |
Description |
|
|
nDeviceIndex |
Number representing the zero-based index of the ASIO device. This index is related to available ASIO devices so it must be the related to the enumeration performed through the ASIO.DeviceGetCount and ASIO.DeviceGetDesc methods: it must not be confused with indexes related to generic input devices enumerated through the GetInputDevicesCount and GetInputDeviceDesc methods which may contain both DirectSound and ASIO devices. |
Return value
Value |
Meaning |
|
|
false |
The given device is stopped |
true |
The given device is started |