示例#1
0
 public void AddSoundFont(SoundFont soundFont)
 {
     if (LibFluidsynth.Synth.fluid_synth_add_sfont (Handle, soundFont.Handle) != 0)
         throw new FluidSynthInteropException ("sound font add operation failed " + LastError);
 }
示例#2
0
 public void RemoveSoundFont(SoundFont soundFont)
 {
     LibFluidsynth.Synth.fluid_synth_remove_sfont (Handle, soundFont.Handle);
 }
示例#3
0
 public void RemoveSoundFont(SoundFont soundFont)
 {
     LibFluidsynth.Synth.fluid_synth_remove_sfont(Handle, soundFont.Handle);
 }