diff options
Diffstat (limited to 'externals/grill/vst/src')
-rw-r--r-- | externals/grill/vst/src/main.cpp | 8 | ||||
-rw-r--r-- | externals/grill/vst/src/main.h | 2 |
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;
|