aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMidi.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-11-27 19:41:52 -0800
committerChris Robinson <[email protected]>2013-11-27 19:41:52 -0800
commit489723723c79b4a7470c0d01065bd24d1301a6d1 (patch)
tree15933974228ae2d677fc6f9bd37256ec05586326 /OpenAL32/Include/alMidi.h
parent182b08d8bcdcadf408f03c108ed03296a34f717f (diff)
Cleanups for MidiSynth
Remove an unneeded field, make MidiSynth_getTime public, and properly return a 64-bit time from it.
Diffstat (limited to 'OpenAL32/Include/alMidi.h')
-rw-r--r--OpenAL32/Include/alMidi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMidi.h b/OpenAL32/Include/alMidi.h
index 1e5c09b5..963adf3f 100644
--- a/OpenAL32/Include/alMidi.h
+++ b/OpenAL32/Include/alMidi.h
@@ -23,11 +23,11 @@ typedef struct MidiSynth {
volatile ALenum State;
- char *FontName;
-
const struct MidiSynthVtable *vtbl;
} MidiSynth;
+ALuint64 MidiSynth_getTime(const MidiSynth *self);
+
struct MidiSynthVtable {
void (*const Destruct)(MidiSynth *self);