aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--externals/vanilla/bendout.c2
-rw-r--r--externals/vanilla/ctlout.c2
-rw-r--r--externals/vanilla/noteout.c2
-rw-r--r--externals/vanilla/pgmout.c2
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