-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDefinedClassesCloudKit.pas
70 lines (66 loc) · 2.73 KB
/
DefinedClassesCloudKit.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{$mode delphi}
{$modeswitch objectivec1}
{$modeswitch cvar}
{$packrecords c}
unit DefinedClassesCloudKit;
interface
type
CKAcceptSharesOperation = objcclass external;
CKAsset = objcclass external;
CKContainer = objcclass external;
CKDatabase = objcclass external;
CKDatabaseNotification = objcclass external;
CKDatabaseOperation = objcclass external;
CKDatabaseSubscription = objcclass external;
CKDiscoverAllUserIdentitiesOperation = objcclass external;
CKDiscoverUserIdentitiesOperation = objcclass external;
CKFetchDatabaseChangesOperation = objcclass external;
CKFetchNotificationChangesOperation = objcclass external;
CKFetchRecordChangesOperation = objcclass external;
CKFetchRecordZoneChangesConfiguration = objcclass external;
CKFetchRecordZoneChangesOperation = objcclass external;
CKFetchRecordZoneChangesOptions = objcclass external;
CKFetchRecordZonesOperation = objcclass external;
CKFetchRecordsOperation = objcclass external;
CKFetchShareMetadataOperation = objcclass external;
CKFetchShareParticipantsOperation = objcclass external;
CKFetchSubscriptionsOperation = objcclass external;
CKFetchWebAuthTokenOperation = objcclass external;
CKLocationSortDescriptor = objcclass external;
CKMarkNotificationsReadOperation = objcclass external;
CKModifyBadgeOperation = objcclass external;
CKModifyRecordZonesOperation = objcclass external;
CKModifyRecordsOperation = objcclass external;
CKModifySubscriptionsOperation = objcclass external;
CKNotification = objcclass external;
CKNotificationID = objcclass external;
CKNotificationInfo = objcclass external;
CKOperation = objcclass external;
CKOperationConfiguration = objcclass external;
CKOperationGroup = objcclass external;
CKQuery = objcclass external;
CKQueryCursor = objcclass external;
CKQueryNotification = objcclass external;
CKQueryOperation = objcclass external;
CKQuerySubscription = objcclass external;
CKRecord = objcclass external;
CKRecordID = objcclass external;
CKRecordZone = objcclass external;
CKRecordZoneID = objcclass external;
CKRecordZoneNotification = objcclass external;
CKRecordZoneSubscription = objcclass external;
CKReference = objcclass external;
CKServerChangeToken = objcclass external;
CKShare = objcclass external;
CKShareMetadata = objcclass external;
CKShareParticipant = objcclass external;
CKSubscription = objcclass external;
CKUserIdentity = objcclass external;
CKUserIdentityLookupInfo = objcclass external;
CKRecordKeyValueSettingProtocol = objcprotocol external name 'CKRecordKeyValueSetting';
CKRecordValueProtocol = objcprotocol external name 'CKRecordValue';
type
CKFetchShareMetadataOptions = objcclass external;
CLLocation = objcclass external;
implementation
end.