diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-12-27 19:26:40 -0800 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-01-04 05:30:43 -0800 |
commit | de9adcf04549ffa3d51271c166bafe03074bd3bb (patch) | |
tree | 4e9349af8ba9b79e30f091922722a7e399901124 /core/input | |
parent | 6c25d05f7029824b6dac05e5491034a5d2000caa (diff) |
Document InputEventMIDI and add some missing 0xF MIDI messages
Diffstat (limited to 'core/input')
-rw-r--r-- | core/input/input_enums.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/input/input_enums.h b/core/input/input_enums.h index 6b2dd2728e..aa55316ec8 100644 --- a/core/input/input_enums.h +++ b/core/input/input_enums.h @@ -95,6 +95,17 @@ enum class MIDIMessage { PROGRAM_CHANGE = 0xC, CHANNEL_PRESSURE = 0xD, PITCH_BEND = 0xE, + SYSTEM_EXCLUSIVE = 0xF0, + QUARTER_FRAME = 0xF1, + SONG_POSITION_POINTER = 0xF2, + SONG_SELECT = 0xF3, + TUNE_REQUEST = 0xF6, + TIMING_CLOCK = 0xF8, + START = 0xFA, + CONTINUE = 0xFB, + STOP = 0xFC, + ACTIVE_SENSING = 0xFE, + SYSTEM_RESET = 0xFF, }; enum class MouseButton { |