blob: c430b7331210e8f9a9fd905e56884ede33d418a3 (
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 DefinedClassesAddressBook;
interface
type
ABAddressBook = objcclass external;
ABGroup = objcclass external;
ABMultiValue = objcclass external;
ABMutableMultiValue = objcclass external;
ABPerson = objcclass external;
ABRecord = objcclass external;
ABSearchElement = objcclass external;
ABImageClientProtocol = objcprotocol external name 'ABImageClient';
implementation
end.
|