midi.h 361 B

12345678910
  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