diff options
author | Chris Robinson <[email protected]> | 2013-12-29 06:02:48 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-12-29 06:02:48 -0800 |
commit | 6b2d3c3cfa06485171bd813ce190c0b0ed87410c (patch) | |
tree | dd599abca17c9a38557892c61ffccc1c52b81cf5 /Alc/midi/base.h | |
parent | 396a2f1595b5296af9f23e115fa02090c0f43353 (diff) |
Remove some unused MIDI backend methods
Diffstat (limited to 'Alc/midi/base.h')
-rw-r--r-- | Alc/midi/base.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Alc/midi/base.h b/Alc/midi/base.h index a5b76dfe..dd7788e6 100644 --- a/Alc/midi/base.h +++ b/Alc/midi/base.h @@ -74,8 +74,6 @@ ALenum MidiSynth_insertSysExEvent(MidiSynth *self, ALuint64 time, const ALbyte * struct MidiSynthVtable { void (*const Destruct)(MidiSynth *self); - ALboolean (*const isSoundfont)(MidiSynth *self, const char *filename); - ALenum (*const loadSoundfont)(MidiSynth *self, const char *filename); ALenum (*const selectSoundfonts)(MidiSynth *self, ALCdevice *device, ALsizei count, const ALuint *ids); void (*const setGain)(MidiSynth *self, ALfloat gain); @@ -92,8 +90,6 @@ struct MidiSynthVtable { #define DEFINE_MIDISYNTH_VTABLE(T) \ DECLARE_THUNK(T, MidiSynth, void, Destruct) \ -DECLARE_THUNK1(T, MidiSynth, ALboolean, isSoundfont, const char*) \ -DECLARE_THUNK1(T, MidiSynth, ALenum, loadSoundfont, const char*) \ DECLARE_THUNK3(T, MidiSynth, ALenum, selectSoundfonts, ALCdevice*, ALsizei, const ALuint*) \ DECLARE_THUNK1(T, MidiSynth, void, setGain, ALfloat) \ DECLARE_THUNK1(T, MidiSynth, void, setState, ALenum) \ @@ -106,8 +102,6 @@ DECLARE_THUNK(T, MidiSynth, void, Delete) \ static const struct MidiSynthVtable T##_MidiSynth_vtable = { \ T##_MidiSynth_Destruct, \ \ - T##_MidiSynth_isSoundfont, \ - T##_MidiSynth_loadSoundfont, \ T##_MidiSynth_selectSoundfonts, \ T##_MidiSynth_setGain, \ T##_MidiSynth_setState, \ |