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 >
Wrap
C/C++ Source or Header
|
1993-01-23
|
1KB
|
37 lines
#ifndef _MIDI_H
#define _MIDI_H 1
/**************************************************************************
* midi.h: MIDI values that are independent of any particular synth.
* A part of OberSuite for the Commodore Amiga.
*
* Author: Daniel Barrett, barrett@cs.umass.edu.
* Version: 1.0.
* Copyright: None! This program is in the Public Domain.
* Please share it with others.
***************************************************************************/
/***************************************************************************
* Some system-exclusive message constants.
***************************************************************************/
#define SYSEX_BEGIN 0xF0
#define SYSEX_END 0xF7
/***************************************************************************
* The MIDI baud rate.
***************************************************************************/
#define MIDI_BAUD_RATE 31250
/***************************************************************************
* By default, we assume that the MIDI interface is attached to the Amiga's
* internal serial port, using "serial.device" unit 0.
***************************************************************************/
#define DEFAULT_MIDI_DEVICE "serial.device"
#define DEFAULT_MIDI_UNIT 0
#endif /* _MIDI_H */