blob: 90d12753d9c56c29949791648487d86b9b6656af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ Parsed from EventKit.framework EKSource.h }
{$ifdef TYPES}
type
EKSourcePtr = ^EKSource;
{$endif}
{$ifdef CLASSES}
type
EKSource = objcclass external (EKObject)
public
function sourceIdentifier: NSString; message 'sourceIdentifier';
function sourceType: EKSourceType; message 'sourceType';
function title: NSString; message 'title';
function calendarsForEntityType (entityType: EKEntityType): NSSet; message 'calendarsForEntityType:'; { available starting in __MAC_10_8,__IPHONE_6_0 }
end;
{$endif}
|