H:/newbase/public.sdk/source/vst2.x/audioeffectx.cpp

	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;
	}
	

Empty

Copyright ©2005 Steinberg Media Technologies. All Rights Reserved.