home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / amiga / midi / obrst103.lha / OberSuite-1.03 / SourceCode / midi.h < prev    next >
C/C++ Source or Header  |  1993-01-23  |  1KB  |  37 lines

  1. #ifndef _MIDI_H
  2. #define _MIDI_H    1
  3.  
  4. /**************************************************************************
  5. * midi.h:    MIDI values that are independent of any particular synth.
  6. *        A part of OberSuite for the Commodore Amiga.
  7. *
  8. * Author:    Daniel Barrett, barrett@cs.umass.edu.
  9. * Version:    1.0.
  10. * Copyright:    None!  This program is in the Public Domain.
  11. *        Please share it with others.
  12. ***************************************************************************/
  13.  
  14. /***************************************************************************
  15.  * Some system-exclusive message constants.
  16.  ***************************************************************************/
  17.  
  18. #define    SYSEX_BEGIN    0xF0
  19. #define    SYSEX_END    0xF7
  20.  
  21. /***************************************************************************
  22. * The MIDI baud rate.
  23. ***************************************************************************/
  24.  
  25. #define    MIDI_BAUD_RATE        31250
  26.  
  27. /***************************************************************************
  28.  * By default, we assume that the MIDI interface is attached to the Amiga's
  29.  * internal serial port, using "serial.device" unit 0.
  30.  ***************************************************************************/
  31.  
  32. #define    DEFAULT_MIDI_DEVICE    "serial.device"
  33. #define    DEFAULT_MIDI_UNIT    0
  34.  
  35.  
  36. #endif /* _MIDI_H */
  37.