FMOD.DSP.addInput C# (CSharp) Method

addInput() public method

public addInput ( DSP target, DSPConnection &connection, DSPCONNECTION_TYPE type ) : RESULT
target DSP
connection DSPConnection
type DSPCONNECTION_TYPE
return RESULT
        public RESULT addInput(DSP target, out DSPConnection connection, DSPCONNECTION_TYPE type)
        {
            connection = null;

            IntPtr dspconnectionraw;
            RESULT result = FMOD_DSP_AddInput(rawPtr, target.getRaw(), out dspconnectionraw, type);
            connection = new DSPConnection(dspconnectionraw);

            return result;
        }
        public RESULT disconnectFrom            (DSP target, DSPConnection connection)