midi.h 423 B

123456789101112
  1. /* Copying and distribution of this file, with or without modification,
  2. are permitted in any medium without royalty provided the copyright
  3. notice and this notice are preserved. This file is offered as-is,
  4. without any warranty. */
  5. #define MIDI_STATUS(b) (((b) >> 4) & 0x0F)
  6. #define MIDI_CHANNEL(b) ((b)&0x0F)
  7. #define MIDI_NOTEOFF 0x8
  8. #define MIDI_NOTEON 0x9
  9. #define MIDI_CONTROLLER 0xB
  10. #define MIDI_PITCHBEND 0xE