예제 #1
0
        public DSP CreateDspByType(Type type)
        {
            IntPtr dspHandle = IntPtr.Zero;

            Code returnCode = CreateDspByType(DangerousGetHandle(), type, ref dspHandle);
            Errors.ThrowError(returnCode);

            return new DSP(dspHandle);
        }
예제 #2
0
        public DSP CreateDspByType(Type type)
        {
            IntPtr dspHandle = IntPtr.Zero;

            Code returnCode = CreateDspByType(DangerousGetHandle(), type, ref dspHandle);

            Errors.ThrowError(returnCode);

            return(new DSP(dspHandle));
        }
예제 #3
0
 private static extern Code CreateDspByType(IntPtr system, Type type, ref IntPtr dsp);
예제 #4
0
 private static extern Code CreateDspByType(IntPtr system, Type type, ref IntPtr dsp);