C++:
VstIntPtr function dispatcher(AEffect* e, VstInt32 opcode, VstInt32 index, VstIntPtr value,
void* ptr, float opt);
Delphi:
function dispatcher(e: PAEffect; opcode, index: VstInt32; value: VstIntPtr; ptr: pointer;
opt: Single): VstIntPtr; cdecl;
always returns 0, unless otherwise defined.
all string-pointers points to zero terminated strings.
e[ ]: = plugin receives as entry parameter
x[ ]: = plugin returns to host
dispatcher() function using opcode 52:
52. effGetTailSize
>= VST2.0
@see AudioEffectX::getTailSize()
x[return]: tail size, 0 = default, 1 = 'no tail'
C++ method:
VstInt32 AudioEffectX::getGetTailSize()
Delphi method:
function AudioEffectX.getTailSize: VstInt32;