AVAudioUnitEffect.inc 520 B

12345678910111213141516171819
  1. { Parsed from AVFoundation.framework AVAudioUnitEffect.h }
  2. {$ifdef TYPES}
  3. type
  4. AVAudioUnitEffectPtr = ^AVAudioUnitEffect;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. AVAudioUnitEffect = 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}