1 /*
2   ZynAddSubFX - a software synthesizer
3 
4   DistrhoPluginInfo.h - DPF information header
5   Copyright (C) 2015 Filipe Coelho
6   Author: Filipe Coelho
7 
8   This program is free software; you can redistribute it and/or
9   modify it under the terms of the GNU General Public License
10   as published by the Free Software Foundation; either version 2
11   of the License, or (at your option) any later version.
12 */
13 
14 #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
15 #define DISTRHO_PLUGIN_INFO_H_INCLUDED
16 
17 #define DISTRHO_PLUGIN_BRAND "ZynAddSubFX"
18 #define DISTRHO_PLUGIN_NAME  "ZynEcho"
19 #define DISTRHO_PLUGIN_URI   "http://zynaddsubfx.sourceforge.net/fx#Echo"
20 
21 #define DISTRHO_PLUGIN_HAS_UI        0
22 #define DISTRHO_PLUGIN_IS_RT_SAFE    1
23 #define DISTRHO_PLUGIN_IS_SYNTH      0
24 #define DISTRHO_PLUGIN_NUM_INPUTS    2
25 #define DISTRHO_PLUGIN_NUM_OUTPUTS   2
26 #define DISTRHO_PLUGIN_WANT_PROGRAMS 1
27 #define DISTRHO_PLUGIN_LV2_CATEGORY  "lv2:DelayPlugin"
28 
29 #endif // DISTRHO_PLUGIN_INFO_H_INCLUDED
30