home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / amfm / amfm2 / utilities / mft / midi.h < prev    next >
Text File  |  1994-06-20  |  578b  |  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.