home *** CD-ROM | disk | FTP | other *** search
/ AM/FM: Amiga Musicians' Freeware Magazine 2 / AM-FM 2.adf / Utilities / MFT / midi.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-21  |  578 b   |  24 lines

  1. /* midi.h */
  2.  
  3. #define NOTEOFF 0x80
  4. #define NOTEON 0x90
  5. #define PRESSURE 0xa0
  6. #define CONTROLLER 0xb0
  7. #define PROGRAM 0xc0
  8. #define CHANPRESSURE 0xd0
  9. #define PITCHBEND 0xe0
  10.  
  11. /* These are the strings used in keynote to identify Standard MIDI File */
  12. /* meta text messages. */
  13.  
  14. #define METATEXT        "Text Event"
  15. #define METACOPYRIGHT        "Copyright Notice"
  16. #define METASEQUENCE        "Sequence/Track Name"
  17. #define METAINSTRUMENT        "Instrument Name"
  18. #define METALYRIC        "Lyric"
  19. #define METAMARKER        "Marker"
  20. #define METACUE            "Cue Point"
  21. #define METAUNRECOGNIZED    "Unrecognized"
  22.  
  23. /* End of File */
  24.