ASIO.DeviceListenInputPause method |
|
Remarks
Pauses direct playback of the given ASIO device previously started through the ASIO.DeviceListenInputStart method. A paused device can be resumed through the ASIO.DeviceListenInputResume 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 DeviceListenInputPause ( nDeviceIndex as Int16 ) as enumErrorCodes |
[C#] public enumErrorCodes DeviceListenInputPause ( Int16 nDeviceIndex ); |
[C++] public: enumErrorCodes DeviceListenInputPause ( Int16 nDeviceIndex ); |
Parameter |
Description |
|
|
nDeviceIndex |
Number representing the zero-based index of the ASIO device previously started through a call to the ASIO.DeviceListenInputStart method. |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred (see the LastError property for further error details) |
enumErrorCodes.NOERROR (0) |
The method call was successful. |