private static extern ErrorCode CreateDSP(IntPtr system, ref DSPDescription description, ref int Dsp);
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); }