summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/DefinedClassesAVKit.pas
blob: 5a47e04ab64c85cd6048e37b49669f3c02020f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{$mode delphi}
{$modeswitch objectivec1}
{$modeswitch cvar}
{$packrecords c}

unit DefinedClassesAVKit;
interface

type
  AVCaptureView = objcclass external;
  AVPlayerView = objcclass external;
  AVCaptureViewDelegateProtocol = objcprotocol external name 'AVCaptureViewDelegate';

type
  AVCaptureFileOutput = objcclass external;
  AVCaptureSession = objcclass external;
  AVPlayer = objcclass external;

implementation
end.