DOMObject.inc 698 B

12345678910111213141516171819202122232425262728293031323334
  1. { Parsed from WebKit.framework DOMObject.h }
  2. {$ifdef TYPES}
  3. type
  4. DOMObjectPtr = ^DOMObject;
  5. {$endif}
  6. {$ifdef TYPES}
  7. type
  8. DOMTimeStamp = culonglong;
  9. DOMTimeStampPtr = ^DOMTimeStamp;
  10. DOMObjectInternal = OpaqueType { available in 10_4 };
  11. DOMObjectInternalPtr = ^DOMObjectInternal { available in 10_4 };
  12. {$endif}
  13. {$ifdef CLASSES}
  14. type
  15. DOMObject = objcclass external (WebScriptObject, NSCopyingProtocol)
  16. private
  17. _internal: DOMObjectInternalPtr;
  18. { Adopted protocols }
  19. function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
  20. end;
  21. type
  22. DOMLinkStyle = objccategory external (DOMObject)
  23. function sheet: DOMStyleSheet; message 'sheet';
  24. end;
  25. {$endif}