12345678910111213141516171819 |
- { Parsed from AVFoundation.framework AVAudioUnitEffect.h }
- {$ifdef TYPES}
- type
- AVAudioUnitEffectPtr = ^AVAudioUnitEffect;
- {$endif}
- {$ifdef CLASSES}
- type
- AVAudioUnitEffect = objcclass external (AVAudioUnit)
- public
- function initWithAudioComponentDescription (audioComponentDescription_: AudioComponentDescription): instancetype; message 'initWithAudioComponentDescription:';
- procedure setBypass(newValue: ObjCBOOL); message 'setBypass:';
- function bypass: ObjCBOOL; message 'bypass';
- end;
- {$endif}
|