blob: 4161c2fe4c5ac70a3034548464735120ad19dd3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//
// Programmer: Craig Stuart Sapp <craig@ccrma.stanford.edu>
// Creation Date: 21 December 1997
// Last Modified: Wed Feb 11 22:49:59 GMT-0800 1998
// Filename: ...sig/code/control/misc/mididefines.h
// Web Address: http://www-ccrma.stanford.edu/~craig/improv/include/mididefines.h
// Syntax: C++
//
// Description: Collection of all of the MIDI convienience defines.
//
#ifndef _MIDIDEFINES_H_INCLUDED
#define _MIDIDEFINES_H_INCLUDED
// include channel defines
#include "midichannels.h"
// include note name defines
#include "notenames.h"
// include General MIDI instrument names
#include "gminstruments.h"
#endif /* _MIDIDEFINES_H_INCLUDED */
// md5sum: 0f081c8e0b386a11e448b6088bfcd489 - mididefines.h =css= 20030102
|