Exemplo n.º 1
0
 private static extern ErrorCode CreateDSP(IntPtr system, ref DSPDescription description, ref int Dsp);
Exemplo n.º 2
0
 public Dsp CreateDSP(ref DSPDescription description)
 {
     throw new NotImplementedException("Generic DSP creation not supported in nFMOD; use CreateDsp(T) instead");
     //// TODO: update this, possibly have GenericDSP implementation?
     //IntPtr result = IntPtr.Zero;
     //Errors.ThrowIfError(CreateDSP(DangerousGetHandle(), ref description, ref result));
     //return new Dsp(result);
 }