コード例 #1
0
ファイル: SoundSystem.Dsp.cs プロジェクト: gfdittmer/MiSharp
        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
ファイル: SoundSystem.Dsp.cs プロジェクト: gfdittmer/MiSharp
 private static extern Code CreateDspByType(IntPtr system, Type type, ref IntPtr dsp);