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 45:
45. effGetEffectName
>= VST2.0
@see AudioEffectX::getEffectName()
x[ptr]: returns string-pointer to a string with effect name (max 32 bytes)
x[return]: 1 = successful
C++ method:
bool AudioEffectX::getEffectName(char* name)
Delphi method:
function AudioEffectX.getEffectName(name: pchar): boolean;