Exemplo n.º 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);
        }
Exemplo n.º 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));
        }
Exemplo n.º 3
0
 private static extern Code CreateDspByType(IntPtr system, Type type, ref IntPtr dsp);
Exemplo n.º 4
0
 private static extern Code CreateDspByType(IntPtr system, Type type, ref IntPtr dsp);