blob: 630764bf01f5dba837377099dc1df511e5cce288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{$mode delphi}
{$modeswitch objectivec1}
{$modeswitch cvar}
{$packrecords c}
unit DefinedClassesCoreAudioKit;
interface
type
AUGenericView = objcclass external;
AUPannerView = objcclass external;
AUCustomViewPersistentDataProtocol = objcprotocol external name 'AUCustomViewPersistentData';
type
NSDictionary = objcclass external;
implementation
end.
|