BASS.NET API for the Un4seen BASS Audio Library

BassAsioBASS_ASIO_GetDevice Method

BASS.NET API for the Un4seen BASS Audio Library
Retrieves the Asio device setting in the current thread.

Namespace:  Un4seen.BassAsio
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

[DllImportAttribute("bassasio")]
public static int BASS_ASIO_GetDevice()

Return Value

Type: Int32
If successful, the device number is returned, else -1 is returned. Use BASS_ASIO_ErrorGetCodeto get the error code.
Remarks

As in BASS, simultaneously using multiple devices is supported in the BASSASIO API via a context switching system - instead of there being an extra "device" parameter in the function calls, the device to be used needs to be set via BASS_ASIO_SetDevice(Int32) prior to calling the function. The device setting is local to the current thread, so calling functions with different devices simultaneously in multiple threads is not a problem.

ERROR CODEDescription
BASS_ERROR_INITBASS_ASIO_Init(Int32, BASSASIOInit) has not been successfully called - there are no initialized devices.

See Also

Reference