Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmidi.h
Go to the documentation of this file.
00001 /* 00002 ReactOS Sound System 00003 MIDI constants 00004 00005 Author: 00006 Andrew Greenwood (silverblade@reactos.org) 00007 00008 History: 00009 26 May 2008 - Created 00010 */ 00011 00012 #ifndef ROS_MIDI 00013 #define ROS_MIDI 00014 00015 /* Channel-based MIDI status bytes */ 00016 #define MIDI_NOTE_OFF 0x80 00017 #define MIDI_NOTE_ON 0x90 00018 #define MIDI_KEY_PRESSURE 0xA0 00019 #define MIDI_CONTROL_CHANGE 0xB0 00020 #define MIDI_PROGRAM_CHANGE 0xC0 00021 #define MIDI_CHANNEL_PRESSURE 0xD0 00022 #define MIDI_PITCH_BEND 0xE0 00023 00024 /* System MIDI status bytes */ 00025 #define MIDI_SYSEX_START 0xF0 00026 #define MIDI_QUARTER_FRAME 0xF1 00027 #define MIDI_SONG_POSITION 0xF2 00028 #define MIDI_SONG_SELECT 0xF3 00029 #define MIDI_TUNE_REQUEST 0xF6 00030 #define MIDI_SYSEX_END 0xF7 00031 #define MIDI_CLOCK 0xF8 00032 #define MIDI_TICK 0xF9 00033 #define MIDI_START 0xFA 00034 #define MIDI_CONTINUE 0xFB 00035 #define MIDI_STOP 0xFC 00036 #define MIDI_ACTIVE_SENSE 0xFE 00037 #define MIDI_RESET 0xFF 00038 00039 #endif Generated on Sun May 27 2012 04:33:16 for ReactOS by
1.7.6.1
|