|
|
@@ -796,6 +796,9 @@ extern Model* modelBlankPanel; |
|
|
|
// rackwindows |
|
|
|
#include "rackwindows/src/plugin.hpp" |
|
|
|
|
|
|
|
// RCM |
|
|
|
#include "rcm-modules/src/plugin.hpp" |
|
|
|
|
|
|
|
// RebelTech |
|
|
|
#define BefacoInputPort BefacoInputPortRebelTech |
|
|
|
#define BefacoOutputPort BefacoOutputPortRebelTech |
|
|
@@ -961,6 +964,7 @@ Plugin* pluginInstance__PdArray; |
|
|
|
Plugin* pluginInstance__PinkTrombone; |
|
|
|
Plugin* pluginInstance__Prism; |
|
|
|
Plugin* pluginInstance__rackwindows; |
|
|
|
Plugin* pluginInstance__RCM; |
|
|
|
Plugin* pluginInstance__RebelTech; |
|
|
|
Plugin* pluginInstance__repelzen; |
|
|
|
Plugin* pluginInstance__sapphire; |
|
|
@@ -2996,6 +3000,28 @@ static void initStatic__rackwindows() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
static void initStatic__RCM() |
|
|
|
{ |
|
|
|
Plugin* const p = new Plugin; |
|
|
|
pluginInstance__RCM = p; |
|
|
|
|
|
|
|
const StaticPluginLoader spl(p, "rcm-modules"); |
|
|
|
if (spl.ok()) |
|
|
|
{ |
|
|
|
p->addModel(modelGVerbModule); |
|
|
|
p->addModel(modelCV0to10Module); |
|
|
|
p->addModel(modelCVS0to10Module); |
|
|
|
p->addModel(modelCV5to5Module); |
|
|
|
p->addModel(modelCVMmtModule); |
|
|
|
p->addModel(modelCVTglModule); |
|
|
|
p->addModel(modelPianoRollModule); |
|
|
|
p->addModel(modelDuckModule); |
|
|
|
p->addModel(modelSEQAdapterModule); |
|
|
|
p->addModel(modelSyncModule); |
|
|
|
p->addModel(modelPolyNosModule); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
static void initStatic__RebelTech() |
|
|
|
{ |
|
|
|
Plugin* const p = new Plugin; |
|
|
@@ -3458,6 +3484,7 @@ void initStaticPlugins() |
|
|
|
initStatic__PinkTrombone(); |
|
|
|
initStatic__Prism(); |
|
|
|
initStatic__rackwindows(); |
|
|
|
initStatic__RCM(); |
|
|
|
initStatic__RebelTech(); |
|
|
|
initStatic__repelzen(); |
|
|
|
initStatic__Sapphire(); |
|
|
|