1 /*
2  * MIDI CC To Pressure plugin based on DISTRHO Plugin Framework (DPF)
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  * Copyright (C) 2020 Christopher Arndt <info@chrisarndt.de>
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a copy
9  * of this software and associated documentation files (the "Software"), to
10  * deal in the Software without restriction, including without limitation the
11  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12  * sell copies of the Software, and to permit persons to whom the Software is
13  * furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24  * IN THE SOFTWARE.
25  */
26 
27 #ifndef DISTRHO_PLUGIN_INFO_H
28 #define DISTRHO_PLUGIN_INFO_H
29 
30 #define DISTRHO_PLUGIN_BRAND        "chrisarndt.de"
31 #define DISTRHO_PLUGIN_NAME         "MIDI CC to Pressure"
32 #define DISTRHO_PLUGIN_URI          "https://chrisarndt.de/plugins/midicctopressure"
33 #define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:MIDIPlugin"
34 
35 #define DISTRHO_PLUGIN_HAS_UI       0
36 #define DISTRHO_UI_USE_NANOVG       0
37 
38 #define DISTRHO_PLUGIN_IS_RT_SAFE       1
39 #define DISTRHO_PLUGIN_NUM_INPUTS       0
40 #define DISTRHO_PLUGIN_NUM_OUTPUTS      0
41 #define DISTRHO_PLUGIN_WANT_TIMEPOS     0
42 #define DISTRHO_PLUGIN_WANT_PROGRAMS    1
43 #define DISTRHO_PLUGIN_WANT_MIDI_INPUT  1
44 #define DISTRHO_PLUGIN_WANT_MIDI_OUTPUT 1
45 
46 #endif // DISTRHO_PLUGIN_INFO_H
47