FMOD.DSP.addInput C# (CSharp) 메소드

addInput() 공개 메소드

public addInput ( DSP target, DSPConnection &connection, DSPCONNECTION_TYPE type ) : RESULT
target DSP
connection DSPConnection
type DSPCONNECTION_TYPE
리턴 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)