diff options
author | Chris Robinson <[email protected]> | 2014-01-05 05:11:07 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-01-05 05:11:07 -0800 |
commit | 5f961a392ecd5d8486fe85b335cf5c0e5c6de674 (patch) | |
tree | af307ad43fe8b99307c0abd5e2de77b61a9c62c0 /Alc/midi/base.h | |
parent | 540a99e71fa4ce3de8049656629861aa0a7e5568 (diff) |
Move some soundfont methods to ALsoundfont
Diffstat (limited to 'Alc/midi/base.h')
-rw-r--r-- | Alc/midi/base.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Alc/midi/base.h b/Alc/midi/base.h index 25bd35dd..ec2627cc 100644 --- a/Alc/midi/base.h +++ b/Alc/midi/base.h @@ -52,8 +52,6 @@ typedef struct MidiSynth { void MidiSynth_Construct(MidiSynth *self, ALCdevice *device); void MidiSynth_Destruct(MidiSynth *self); -struct ALsoundfont *MidiSynth_getDefSoundfont(ALCcontext *context); -void MidiSynth_deleteSoundfont(ALCdevice *device, struct ALsoundfont *sfont); ALenum MidiSynth_selectSoundfonts(MidiSynth *self, ALCcontext *context, ALsizei count, const ALuint *ids); inline void MidiSynth_setGain(MidiSynth *self, ALfloat gain) { self->Gain = gain; } inline ALfloat MidiSynth_getGain(const MidiSynth *self) { return self->Gain; } |