mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Fix for ticket #98: Reinsert a missing function that should not
be used from outside anyway.
This commit is contained in:
parent
19cb8486e9
commit
5f84b2c2e2
1 changed files with 6 additions and 0 deletions
|
@ -109,6 +109,12 @@ char* fluid_defsfont_sfont_get_name(fluid_sfont_t* sfont)
|
|||
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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue