this repo has no description
1#include <AudioUnit/AudioUnit.r>
2
3#define kAudioUnitResID_AUHAL 1000
4#define kAudioUnitResID_DefaultOutputAU 1003
5#define kAudioUnitResID_SystemOutputAU 1006
6//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ AUHAL ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7#define RES_ID kAudioUnitResID_AUHAL
8#define COMP_TYPE kAudioUnitType_Output
9#define COMP_SUBTYPE kAudioUnitSubType_HALOutput
10#define COMP_MANUF kAudioUnitManufacturer_Apple
11#define VERSION 1
12#define NAME "Darling: AudioDeviceOutput"
13#define DESCRIPTION "AudioDevice interface output unit"
14#define ENTRY_POINT "AUHALEntry"
15#include "AUResources.r"
16
17//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DefaultOutputAU ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18#define RES_ID kAudioUnitResID_DefaultOutputAU
19#define COMP_TYPE kAudioUnitType_Output
20#define COMP_SUBTYPE kAudioUnitSubType_DefaultOutput
21#define COMP_MANUF kAudioUnitManufacturer_Apple
22#define VERSION 1
23#define NAME "Darling: DefaultOutputUnit"
24#define DESCRIPTION "Default output unit that redirects its output to the user selected default device"
25#define ENTRY_POINT "DefaultOutputAUEntry"
26#include "AUResources.r"
27
28//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SystemOutputAU ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29#define RES_ID kAudioUnitResID_SystemOutputAU
30#define COMP_TYPE kAudioUnitType_Output
31#define COMP_SUBTYPE kAudioUnitSubType_SystemOutput
32#define COMP_MANUF kAudioUnitManufacturer_Apple
33#define VERSION 1
34#define NAME "Darling: SystemOutputUnit"
35#define DESCRIPTION "System Sounds output unit that redirects its output to the user selected System Sounds device"
36#define ENTRY_POINT "SystemOutputAUEntry"
37#include "AUResources.r"
38