fluidsynth/fluidsynth-add-missing-export-for-1.1.4.diff
Takashi Iwai 2f2b944245 Accepting request 78359 from home:tiwai:branches:multimedia:libs
- Updated to version 1.1.4:
  Improvements to the API for playing MIDI files, several bug fixes
  in the engine itself; for details, see:
    http://sourceforge.net/apps/trac/fluidsynth/wiki/ChangeLog1_1_4
- Use cmake for build
- Re-add a symbol dropped from 1.1.3
- Clean up spec file

OBS-URL: https://build.opensuse.org/request/show/78359
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/fluidsynth?expand=0&rev=18
2011-08-09 10:38:30 +00:00

20 lines
568 B
Diff

---
src/sfloader/fluid_defsfont.c | 6 ++++++
1 file changed, 6 insertions(+)
--- a/src/sfloader/fluid_defsfont.c
+++ b/src/sfloader/fluid_defsfont.c
@@ -109,6 +109,12 @@
return fluid_defsfont_get_name((fluid_defsfont_t*) sfont->data);
}
+fluid_sample_t* fluid_defsfont_get_sample(fluid_defsfont_t* sfont, char *s)
+{
+ /* This function is here just to avoid an ABI/SONAME bump, see ticket #98. Should never be used. */
+ return NULL;
+}
+
fluid_preset_t*
fluid_defsfont_sfont_get_preset(fluid_sfont_t* sfont, unsigned int bank, unsigned int prenum)
{