aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vst/src
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-02-24 04:40:27 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-02-24 04:40:27 +0000
commite7c5d894c808fefbb2d77832f36a0b50123d0fb5 (patch)
treecfc58e4c5a92744788018f97c9edd1d999240310 /externals/grill/vst/src
parente25785826d11d75f919423ccfcfa02f0a991b122 (diff)
""
svn path=/trunk/; revision=427
Diffstat (limited to 'externals/grill/vst/src')
-rw-r--r--externals/grill/vst/src/main.cpp8
-rw-r--r--externals/grill/vst/src/main.h2
2 files changed, 6 insertions, 4 deletions
diff --git a/externals/grill/vst/src/main.cpp b/externals/grill/vst/src/main.cpp
index 739d7276..2628303f 100644
--- a/externals/grill/vst/src/main.cpp
+++ b/externals/grill/vst/src/main.cpp
@@ -19,7 +19,7 @@ WARRANTIES, see the file, "license.txt," in this distribution.
#include <direct.h>
#include <io.h>
-#define VST_VERSION "0.1.0pre3"
+#define VST_VERSION "0.1.0pre4"
#if 0
/* ----- MFC stuff ------------- */
@@ -168,10 +168,10 @@ V vst::Setup(t_classid c)
FLEXT_CADDMETHOD_II(c,0,"note",m_note);
// FLEXT_CADDMETHOD_2(c,0,"control",m_control,t_symptr,int);
- FLEXT_CADDMETHOD_(c,0,"pitchbend",m_pitchbend);
- FLEXT_CADDMETHOD_II(c,0,"ctrlchange",m_ctrlchange);
+ FLEXT_CADDMETHOD_(c,0,"pbend",m_pitchbend);
+ FLEXT_CADDMETHOD_II(c,0,"ctlchg",m_ctrlchange);
- FLEXT_CADDMETHOD_(c,0,"programchange",m_programchange);
+ FLEXT_CADDMETHOD_(c,0,"progchg",m_programchange);
FLEXT_CADDATTR_VAR(c,"program",mg_program,ms_program);
FLEXT_CADDMETHOD_2(c,0,"param",ms_param,int,float);
diff --git a/externals/grill/vst/src/main.h b/externals/grill/vst/src/main.h
index 1f24d56b..5aabf360 100644
--- a/externals/grill/vst/src/main.h
+++ b/externals/grill/vst/src/main.h
@@ -22,6 +22,8 @@ WARRANTIES, see the file, "license.txt," in this distribution.
#if FLEXT_OS == FLEXT_OS_WIN
#include "stdafx.h"
+#else
+#error Platform not supported!
#endif
typedef void V;