コード例 #1
0
ファイル: SoundSystem.Dsp.cs プロジェクト: gfdittmer/MiSharp
        public DSP CreateDSP(ref Description description)
        {
            IntPtr dspHandle = IntPtr.Zero;

            Code returnCode = CreateDSP(DangerousGetHandle(), ref description, ref dspHandle);
            Errors.ThrowError(returnCode);

            return new DSP(dspHandle);
        }
コード例 #2
0
ファイル: SoundSystem.Dsp.cs プロジェクト: gfdittmer/MiSharp
 private static extern Code CreateDSP(IntPtr system, ref Description description, ref IntPtr dsp);