blob: 549c6fd11773f86b675d93a4f10606f0948d9ca8 (
plain)
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
|
{ Parsed from WebKit.framework DOMObject.h }
{$ifdef TYPES}
type
DOMObjectPtr = ^DOMObject;
{$endif}
{$ifdef TYPES}
type
DOMTimeStamp = culonglong;
DOMTimeStampPtr = ^DOMTimeStamp;
DOMObjectInternal = OpaqueType { available in 10_4 };
DOMObjectInternalPtr = ^DOMObjectInternal { available in 10_4 };
{$endif}
{$ifdef CLASSES}
type
DOMObject = objcclass external (WebScriptObject, NSCopyingProtocol)
private
_internal: DOMObjectInternalPtr;
{ Adopted protocols }
function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
end;
type
DOMLinkStyle = objccategory external (DOMObject)
function sheet: DOMStyleSheet; message 'sheet';
end;
{$endif}
|