AVAudioUnitTimeEffect.inc 536 B

12345678910111213141516171819
  1. { Parsed from AVFoundation.framework AVAudioUnitTimeEffect.h }
  2. {$ifdef TYPES}
  3. type
  4. AVAudioUnitTimeEffectPtr = ^AVAudioUnitTimeEffect;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. AVAudioUnitTimeEffect = objcclass external (AVAudioUnit)
  9. public
  10. function initWithAudioComponentDescription (audioComponentDescription_: AudioComponentDescription): instancetype; message 'initWithAudioComponentDescription:';
  11. procedure setBypass(newValue: ObjCBOOL); message 'setBypass:';
  12. function bypass: ObjCBOOL; message 'bypass';
  13. end;
  14. {$endif}