blob: 45268133544142001be8531ccfe4443fc74760c3 (
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
35
36
37
38
39
40
41
42
|
//
// 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/midichannels.h
// Web Address: http://www-ccrma.stanford.edu/~craig/improv/include/midichannels.h
// Syntax: C++
//
// Description: Offset by 1 MIDI channel names.
//
#ifndef _MIDICHANNELS_H_INCLUDED
#define _MIDICHANNELS_H_INCLUDED
/* temporarily changed :
// channel defines: offset from 0
#define CH_1 (0x00)
#define CH_2 (0x01)
#define CH_3 (0x02)
#define CH_4 (0x03)
#define CH_5 (0x04)
#define CH_6 (0x05)
#define CH_7 (0x06)
#define CH_8 (0x07)
#define CH_9 (0x08)
#define CH_10 (0x09)
#define CH_11 (0x0a)
#define CH_12 (0x0b)
#define CH_13 (0x0c)
#define CH_14 (0x0d)
#define CH_15 (0x0e)
#define CH_16 (0x0f)
*/
#endif /* _MIDICHANNELS_H_INCLUDED */
// md5sum: 5267399f7ff90a6ea3ad2dc132afae3e - midichannels.h =css= 20030102
|