BASS.NET API for the Un4seen BASS Audio Library

BassAsioBASS_ASIO_GetInfo Method (BASS_ASIO_INFO)

BASS.NET API for the Un4seen BASS Audio Library
Retrieves information on the Asio device being used.

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

[DllImportAttribute("bassasio")]
public static bool BASS_ASIO_GetInfo(
	BASS_ASIO_INFO info
)

Parameters

info
Type: Un4seen.BassAsioBASS_ASIO_INFO
An instance of the BASS_ASIO_INFO class to store the information at.

Return Value

Type: Boolean
If successful, is returned, else is returned. Use BASS_ASIO_ErrorGetCode to 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.

Examples

Display the number of inputs and outputs:
BassAsio.BASS_ASIO_Init(0, BASSASIOInit.BASS_ASIO_THREAD);
BASS_ASIO_INFO info = new BASS_ASIO_INFO();
if ( BassAsio.BASS_ASIO_GetInfo(info) )
{
    Console.WriteLine( info.ToString() );
}
See Also

Reference