AudioOutputUnit.h
1 #ifndef AT_AUDIO_OUTPUT_UNIT_H 2 #define AT_AUDIO_OUTPUT_UNIT_H 3 #include <AudioToolbox/AUComponent.h> 4 5 #ifdef __cplusplus 6 extern "C" { 7 #endif 8 9 enum { 10 kAudioOutputUnitRange = 0x0200, 11 kAudioOutputUnitStartSelect = 0x0201, 12 kAudioOutputUnitStopSelect = 0x0202 13 }; 14 15 16 extern OSStatus 17 AudioOutputUnitStart(AudioUnit ci); 18 19 extern OSStatus 20 AudioOutputUnitStop(AudioUnit ci); 21 22 #ifdef __cplusplus 23 } 24 #endif 25 26 27 #endif 28