diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-03-11 00:43:23 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-03-11 00:43:23 +0000 |
commit | bfed29ea3a6ede3ba15d15f9f914dbc069ea254e (patch) | |
tree | 0843fffee72755ec79cebaa322890e748ccedbad | |
parent | c22ff0f56461b99c0a453233206d57eefb6f49f4 (diff) |
add prototypes for functions from s_midi.c
svn path=/trunk/; revision=16063
-rw-r--r-- | externals/vanilla/bendout.c | 2 | ||||
-rw-r--r-- | externals/vanilla/ctlout.c | 2 | ||||
-rw-r--r-- | externals/vanilla/noteout.c | 2 | ||||
-rw-r--r-- | externals/vanilla/pgmout.c | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/externals/vanilla/bendout.c b/externals/vanilla/bendout.c index 0ec4f35f..f31576b6 100644 --- a/externals/vanilla/bendout.c +++ b/externals/vanilla/bendout.c @@ -6,6 +6,8 @@ #include "m_pd.h" +void outmidi_pitchbend(int portno, int channel, int value); + static t_class *bendout_class; typedef struct _bendout diff --git a/externals/vanilla/ctlout.c b/externals/vanilla/ctlout.c index 058f3deb..8d8b681e 100644 --- a/externals/vanilla/ctlout.c +++ b/externals/vanilla/ctlout.c @@ -6,6 +6,8 @@ #include "m_pd.h" +void outmidi_controlchange(int portno, int channel, int ctlno, int value); + static t_class *ctlout_class; typedef struct _ctlout diff --git a/externals/vanilla/noteout.c b/externals/vanilla/noteout.c index 5dd84af6..fe1e2851 100644 --- a/externals/vanilla/noteout.c +++ b/externals/vanilla/noteout.c @@ -6,6 +6,8 @@ #include "m_pd.h" +void outmidi_noteon(int portno, int channel, int pitch, int velo); + static t_class *noteout_class; typedef struct _noteout diff --git a/externals/vanilla/pgmout.c b/externals/vanilla/pgmout.c index 5b23c2b4..b001e331 100644 --- a/externals/vanilla/pgmout.c +++ b/externals/vanilla/pgmout.c @@ -6,6 +6,8 @@ #include "m_pd.h" +void outmidi_programchange(int portno, int channel, int value); + static t_class *pgmout_class; typedef struct _pgmout |