From af8dbcc7ed75510d73bf65e81edbd4e1cdab9929 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 24 Jan 2019 13:00:21 +0100 Subject: [PATCH] Add DistrhoPluginAU.r Signed-off-by: falkTX --- distrho/src/DistrhoPluginAU.r | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 distrho/src/DistrhoPluginAU.r diff --git a/distrho/src/DistrhoPluginAU.r b/distrho/src/DistrhoPluginAU.r new file mode 100644 index 00000000..4699e9a9 --- /dev/null +++ b/distrho/src/DistrhoPluginAU.r @@ -0,0 +1,26 @@ +#define UseExtendedThingResource 1 +#include + +#include "DistrhoPluginInfo.h" + +// Note that resource IDs must be spaced 2 apart for the 'STR ' name and description +#define kAudioUnitResID_dpfplugin 1000 + +#define RES_ID kAudioUnitResID_dpfplugin +#define COMP_TYPE kAudioUnitType_Effect +#define COMP_SUBTYPE "Damn" +#define COMP_MANUF "????" + +#define VERSION 0x00010000 + +#ifdef DISTRHO_PLUGIN_BRAND + #define NAME DISTRHO_PLUGIN_BRAND ": " DISTRHO_PLUGIN_NAME +#else + #define NAME "DPF: " DISTRHO_PLUGIN_NAME +#endif + +#define DESCRIPTION "TODO here" +#define ENTRY_POINT "PluginAUEntry" + +#include "CoreAudio106/AudioUnits/AUPublic/AUBase/AUResources.r" +