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

effEditKey / editKey()


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 18:
18. effEditKey   >= VST1.0 ... deprecated in VST2.4   (editor) (MAC only)   @see AEffEditor::key()
e[value]: system keycode

C++ method:
 VstInt32 AEffEditor::DECLARE_VST_DEPRECATED (key) (VstInt32 keyCode)

Delphi method:
 function AEffEditor::key(keyCode: VstInt32): VstInt32;

FIRST   -   PREV   -   NEXT   -   TOP