BASS_ASIO_DEVICEINFO structure

Used with BASS_ASIO_GetDeviceInfo to retrieve information on a device.

typedef struct {
    char *name;
    char *driver;
} BASS_ASIO_DEVICEINFO;

Members

nameDescription of the device.
driverThe filename of the driver. Further information can be obtained from the file using the GetFileVersionInfo Win32 API function.

Remarks

If Unicode device information has been enabled via BASS_ASIO_SetUnicode, then the strings in this structure will be in UTF-16 form, otherwise they will be ANSI.

See also

BASS_ASIO_GetDeviceInfo, BASS_ASIO_SetUnicode