Browse Source

Add DistrhoPluginAU.r

Signed-off-by: falkTX <falktx@gmail.com>
pull/116/head
falkTX 7 years ago
parent
commit
af8dbcc7ed
Signed by: falkTX <falktx@gmail.com> GPG Key ID: 2D3445A829213837
1 changed files with 26 additions and 0 deletions
  1. +26
    -0
      distrho/src/DistrhoPluginAU.r

+ 26
- 0
distrho/src/DistrhoPluginAU.r View File

@@ -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"


Loading…
Cancel
Save