diff options
author | Chris Robinson <[email protected]> | 2013-11-30 23:47:42 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-11-30 23:47:42 -0800 |
commit | c834713526a4397c2bd76401694967e92bf6aa64 (patch) | |
tree | a6b2ef034560806d407c40364ad7fe391382be01 /OpenAL32/Include/alMidi.h | |
parent | 2633fbfc4b79f3fca88f200a264aefbd892ae207 (diff) |
Add methods to set and get the MIDI gain
Diffstat (limited to 'OpenAL32/Include/alMidi.h')
-rw-r--r-- | OpenAL32/Include/alMidi.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMidi.h b/OpenAL32/Include/alMidi.h index 51bdeb07..847af04e 100644 --- a/OpenAL32/Include/alMidi.h +++ b/OpenAL32/Include/alMidi.h @@ -26,11 +26,13 @@ typedef struct MidiSynth { */ RWLock Lock; + volatile ALfloat Gain; volatile ALenum State; const struct MidiSynthVtable *vtbl; } MidiSynth; +ALfloat MidiSynth_getGain(const MidiSynth *self); ALuint64 MidiSynth_getTime(const MidiSynth *self); @@ -40,7 +42,9 @@ struct MidiSynthVtable { ALboolean (*const isSoundfont)(MidiSynth *self, const char *filename); ALenum (*const loadSoundfont)(MidiSynth *self, const char *filename); + void (*const setGain)(MidiSynth *self, ALfloat gain); void (*const setState)(MidiSynth *self, ALenum state); + void (*const reset)(MidiSynth *self); void (*const update)(MidiSynth *self, ALCdevice *device); @@ -53,6 +57,7 @@ struct MidiSynthVtable { DECLARE_THUNK(T, MidiSynth, void, Destruct) \ DECLARE_THUNK1(T, MidiSynth, ALboolean, isSoundfont, const char*) \ DECLARE_THUNK1(T, MidiSynth, ALenum, loadSoundfont, const char*) \ +DECLARE_THUNK1(T, MidiSynth, void, setGain, ALfloat) \ DECLARE_THUNK1(T, MidiSynth, void, setState, ALenum) \ DECLARE_THUNK(T, MidiSynth, void, reset) \ DECLARE_THUNK1(T, MidiSynth, void, update, ALCdevice*) \ @@ -64,6 +69,7 @@ static const struct MidiSynthVtable T##_MidiSynth_vtable = { \ \ T##_MidiSynth_isSoundfont, \ T##_MidiSynth_loadSoundfont, \ + T##_MidiSynth_setGain, \ T##_MidiSynth_setState, \ T##_MidiSynth_reset, \ T##_MidiSynth_update, \ |