/*------------------------------------------------------------------------ Copyright (C) 2002-2022 Sophia Poirier This file is part of Scrubby. Scrubby is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. Scrubby is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Scrubby. If not, see . To contact the author, use the contact form at http://destroyfx.org/ ------------------------------------------------------------------------*/ #ifndef DFX_SCRUBBY_DEF_H #define DFX_SCRUBBY_DEF_H #include "dfxplugin-prefix.h" #define PLUGIN_NAME_STRING "Scrubby" #define PLUGIN_ID FOURCC('s', 'c', 'u', 'b') #define PLUGIN_VERSION_MAJOR 1 #define PLUGIN_VERSION_MINOR 1 #define PLUGIN_VERSION_BUGFIX 1 #define PLUGIN_CLASS_NAME Scrubby #define TARGET_PLUGIN_USES_MIDI 1 #define TARGET_PLUGIN_IS_INSTRUMENT 0 #define TARGET_PLUGIN_USES_DSPCORE 0 #define TARGET_PLUGIN_HAS_GUI 1 #define PLUGIN_BACKGROUND_IMAGE_FILENAME "scrubby-background.png" #define PLUGIN_BUNDLE_IDENTIFIER DESTROYFX_BUNDLE_ID_PREFIX PLUGIN_NAME_STRING DFX_BUNDLE_ID_SUFFIX #define PLUGIN_COPYRIGHT_YEAR_STRING "2002-2022" #define VST_NUM_CHANNELS 2 #endif