DefinedClassesAVKit.pas 477 B

12345678910111213141516171819202122
  1. {$mode delphi}
  2. {$modeswitch objectivec1}
  3. {$modeswitch cvar}
  4. {$packrecords c}
  5. {$IFNDEF FPC_DOTTEDUNITS}
  6. unit DefinedClassesAVKit;
  7. {$ENDIF FPC_DOTTEDUNITS}
  8. interface
  9. type
  10. AVCaptureView = objcclass external;
  11. AVPlayerView = objcclass external;
  12. AVCaptureViewDelegateProtocol = objcprotocol external name 'AVCaptureViewDelegate';
  13. type
  14. AVCaptureFileOutput = objcclass external;
  15. AVCaptureSession = objcclass external;
  16. AVPlayer = objcclass external;
  17. implementation
  18. end.