12345678910111213141516171819202122232425262728293031323334 |
- { 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}
|