BASS.NET API for the Un4seen BASS Audio Library

BassVstBASS_VST_Dispatcher Method

BASS.NET API for the Un4seen BASS Audio Library
Calls the VST dispatcher method.

Namespace:  Un4seen.Bass.AddOn.Vst
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.7
Syntax

[DllImportAttribute("bass_vst")]
public static long BASS_VST_Dispatcher(
	int vstHandle,
	int opCode,
	int index,
	long value,
	IntPtr ptr,
	float opt
)

Parameters

vstHandle
Type: SystemInt32
The VST effect handle as returned by BASS_VST_ChannelSetDSP(Int32, String, BASSVSTDsp, Int32).
opCode
Type: SystemInt32
The opCode to use (e.g. 50 for 'effCanDo' or 51 for 'effVendorSpecific').
index
Type: SystemInt32
The index value to use.
value
Type: SystemInt64
The value's value to use.
ptr
Type: SystemIntPtr
The pointer value to use.
opt
Type: SystemSingle
The optional value to use.

Return Value

Type: Int64
If successful, the dispatcher return value is returned, else 0 is returned. Use BASS_ErrorGetCode to get the error code.
Remarks

See the VST's dispatcher method for details.
See Also

Reference