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

effEditIdle / editIdle()


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 19:
19. effEditIdle   >= VST1.0   (editor)   @see AudioEffect::editIdle()
no arguments. Be gentle! ( it would be better if this call could be avoided )

C++ method:
 void AEffEditor::idle()

Delphi method:
 procedure AEffEditor.idle;

FIRST   -   PREV   -   NEXT   -   TOP