BASS.NET API for the Un4seen BASS Audio Library

WASAPINOTIFYPROC Delegate

BASS.NET API for the Un4seen BASS Audio Library
User defined notification callback function.

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

public delegate void WASAPINOTIFYPROC(
	BASSWASAPINotify notify,
	int device,
	IntPtr user
)

Parameters

notify
Type: Un4seen.BassWasapiBASSWASAPINotify
The notification, one of the following:
BASS_WASAPI_NOTIFY_CHANGEThe device's status has changed, eg. it has been enabled or disabled. The new status is available from BASS_WASAPI_GetDeviceInfo(Int32, BASS_WASAPI_DEVICEINFO).
BASS_WASAPI_NOTIFY_DEFINPUTThe device is now the default input device.
BASS_WASAPI_NOTIFY_DEFOUTPUTThe device is now the default output device.
device
Type: SystemInt32
The device that the notification applies to.
user
Type: SystemIntPtr
The user instance data given when BASS_WASAPI_SetNotify(WASAPINOTIFYPROC, IntPtr) was called.
See Also

Reference