summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2019-01-24 13:00:21 +0100
committerfalkTX <falktx@gmail.com>2019-01-24 13:00:21 +0100
commitaf8dbcc7ed75510d73bf65e81edbd4e1cdab9929 (patch)
treef1b2a1606a11861a384dec3b333ab8b0a008bd65
parent849867228d0ea0cb5f2a3a7232707912652310a9 (diff)
Add DistrhoPluginAU.r
Signed-off-by: falkTX <falktx@gmail.com>
-rw-r--r--distrho/src/DistrhoPluginAU.r26
1 files changed, 26 insertions, 0 deletions
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 <AudioUnit/AudioUnit.r>
+
+#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"
+