VST2.4 specs 
HOME   |   Software       VST2.4 specs :: FIRST   -   PREV   -   NEXT

effGetParamDisplay / getParameterDisplay()


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 7:
7. effGetParamDisplay   >= VST1.0   @see AudioEffect::getParameterDisplay()
host requests parameter textual representation
e[index]: parameter index
x[ptr]: returns string-pointer to parameter textual representation (max 8 char + 0), examples: examples: 0.5, -3, PLATE

C++ method:
 void AudioEffect::getParameterDisplay(VstInt32 index, char* text)

Delphi method:
 procedure AudioEffectX.getParamDisplay(index: VstInt32; text: pchar);

FIRST   -   PREV   -   NEXT   -   TOP