blob: 65382a77c4eb779d83fef502b9719fb980fcaaa6 (
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
|
/* ********************************************** */
/* the MIDIvice external */
/* externals for controlling MIDI-devices */
/* ********************************************** */
/* forum::für::umläute */
/* ********************************************** */
/* the MIDIvice external is a runtime-library for miller s. puckette's realtime-computermusic-software "pure data"
* therefore you NEED "pure data" to make any use of the MIDIvice external
* (except if you want to use the code for other things)
* download "pure data" at
http://iem.kug.ac.at/pd
ftp://iem.kug.ac.at/pd
*
* if you are looking for the latest release of the MIDIvice-external you should have another look at
ftp://iem.kug.ac.at/pd/Externals/MIDIvice
*
* MIDIvice is published under the GNU GeneralPublicLicense, that must be shipped with MIDIvice.
* if you are using Debian GNU/linux, the GNU-GPL can be found under /usr/share/common-licenses/GPL
* if you still haven't found a copy of the GNU-GPL, have a look at http://www.gnu.org
*
* "pure data" has it's own license, that comes shipped with "pure data".
*
* there are ABSOLUTELY NO WARRANTIES for anything
*/
#ifndef INCLUDE_MIDIVICE_H__
#define INCLUDE_MIDIVICE_H__
#include "m_pd.h"
#define VERSION "0.1"
#endif
|