31 lines
804 B
C
31 lines
804 B
C
|
|
#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
|