Functions for settings management

To create a synthesizer object you will have to specify its settings. More...

To create a synthesizer object you will have to specify its settings.

These settings are stored in a fluid_settings_t object.

     void
     my_synthesizer ()
     {
       fluid_settings_t *settings;
       fluid_synth_t *synth;
       fluid_audio_driver_t *adriver;

       settings = new_fluid_settings ();
       fluid_settings_setstr(settings, "audio.driver", "alsa");
       // ... change settings ...
       synth = new_fluid_synth (settings);
       adriver = new_fluid_audio_driver (settings, synth);
       // ...
     }
See also:
Creating and changing the settings
Generated on Mon Sep 6 12:29:28 2010 for libfluidsynth by  doxygen 1.6.3