init + building
This commit is contained in:
commit
3e9b443b60
8 changed files with 127 additions and 0 deletions
31
plugins/SquidgeDistortion/DistrhoPluginInfo.h
Normal file
31
plugins/SquidgeDistortion/DistrhoPluginInfo.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
|
||||
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
|
||||
|
||||
#define DISTRHO_PLUGIN_NAME "SquidgeDistortion"
|
||||
#define DISTRHO_PLUGIN_AUTHOR "SquidgeSoft"
|
||||
#define DISTRHO_PLUGIN_URI "moe.liam.squidgesoft.SquidgeDistortion"
|
||||
#define DISTRHO_PLUGIN_CATEGORY "fx"
|
||||
|
||||
#define DISTRHO_PLUGIN_NUM_INPUTS 2
|
||||
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2
|
||||
|
||||
#define DISTRHO_PLUGIN_WANT_PROGRAMS 0
|
||||
#define DISTRHO_PLUGIN_WANT_STATE 0
|
||||
|
||||
#define DISTRHO_PLUGIN_HAS_UI 0
|
||||
#define DISTRHO_PLUGIN_IS_SYNTH 0
|
||||
|
||||
#define DISTRHO_PLUGIN_PRIV_ID "moe.liam.squidgesoft.SquidgeDistortion"
|
||||
#define DISTRHO_PLUGIN_BRAND "SquidgeSoft"
|
||||
|
||||
#define DISTRHO_PLUGIN_CLAP_ID "moe.liam.squidgesoft.SquidgeDistortion"
|
||||
|
||||
enum Parameters {
|
||||
kGain,
|
||||
kTone,
|
||||
kVolume,
|
||||
// add your parameters here
|
||||
kParameterCount // must be last
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue