bool MyPlug::getInputProperties (long index, VstPinProperties* properties) { bool returnCode = false; if (index < kNumInputs) { sprintf (properties->label, "My %1d In", index + 1); properties->flags = kVstPinIsStereo | kVstPinIsActive; returnCode = true; } return returnCode; }