AVAudioUnit.inc 673 B

12345678910111213141516171819202122
  1. { Parsed from AVFoundation.framework AVAudioUnit.h }
  2. {$ifdef TYPES}
  3. type
  4. AVAudioUnitPtr = ^AVAudioUnit;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. AVAudioUnit = objcclass external (AVAudioNode)
  9. public
  10. function loadAudioUnitPresetAtURL_error (url: NSURL; error: NSErrorPtr): ObjCBOOL; message 'loadAudioUnitPresetAtURL:error:';
  11. function audioComponentDescription: AudioComponentDescription; message 'audioComponentDescription';
  12. function audioUnit: AudioUnit; message 'audioUnit';
  13. function name: NSString; message 'name';
  14. function manufacturerName: NSString; message 'manufacturerName';
  15. function version: NSUInteger; message 'version';
  16. end;
  17. {$endif}