summaryrefslogtreecommitdiff
path: root/distrho/src/DistrhoPluginAU.r
diff options
context:
space:
mode:
Diffstat (limited to 'distrho/src/DistrhoPluginAU.r')
-rw-r--r--distrho/src/DistrhoPluginAU.r37
1 files changed, 21 insertions, 16 deletions
diff --git a/distrho/src/DistrhoPluginAU.r b/distrho/src/DistrhoPluginAU.r
index 4699e9a9..7e619fe1 100644
--- a/distrho/src/DistrhoPluginAU.r
+++ b/distrho/src/DistrhoPluginAU.r
@@ -1,26 +1,31 @@
#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
+#ifdef DEBUG
+ #define kdpfplugVersion 0xFFFFFFFF
+#else
+ #define kdpfplugVersion 0x00010000
+#endif
-#define RES_ID kAudioUnitResID_dpfplugin
-#define COMP_TYPE kAudioUnitType_Effect
-#define COMP_SUBTYPE "Damn"
-#define COMP_MANUF "????"
+//~~~~~~~~~~~~~~ Change!!! ~~~~~~~~~~~~~~~~~~~~~//
+#define dpfplugin_COMP_SUBTYPE 'FuCk'
+#define dpfplugin_COMP_MANF 'ShIt'
+//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-#define VERSION 0x00010000
+// Note that resource IDs must be spaced 2 apart for the 'STR ' name and description
+#define kAudioUnitResID_dpfplugin 1000
-#ifdef DISTRHO_PLUGIN_BRAND
- #define NAME DISTRHO_PLUGIN_BRAND ": " DISTRHO_PLUGIN_NAME
-#else
- #define NAME "DPF: " DISTRHO_PLUGIN_NAME
-#endif
+//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ dpfplugin~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-#define DESCRIPTION "TODO here"
-#define ENTRY_POINT "PluginAUEntry"
+#define RES_ID kAudioUnitResID_dpfplugin
+#define COMP_TYPE kAudioUnitType_Effect
+#define COMP_SUBTYPE dpfplugin_COMP_SUBTYPE
+#define COMP_MANUF dpfplugin_COMP_MANF
-#include "CoreAudio106/AudioUnits/AUPublic/AUBase/AUResources.r"
+#define VERSION kdpfplugVersion
+#define NAME "__MyCompanyName__: dpfplugin"
+#define DESCRIPTION "dpfplugin AU"
+#define ENTRY_POINT "dpfplugEntry"
+#include "AUResources.r"