Exemplo n.º 1
0
 public Channel PlayDsp(Dsp dsp, bool paused = false)
 {
     throw new NotImplementedException("Use DSP.Play() instead");
 }
Exemplo n.º 2
0
 public void PlayDsp(Dsp dsp, bool paused, Channel chn)
 {
     throw new NotImplementedException("Use DSP.Play() instead");
 }
Exemplo n.º 3
0
 // TODO: seems wrong; investigate
 public DspConnection AddDsp(Dsp dsp)
 {
     IntPtr result = IntPtr.Zero;
     Errors.ThrowIfError(AddDSP(DangerousGetHandle(), dsp.DangerousGetHandle(), ref result));
     return new DspConnection(result);
 }