DOMNodeList.inc 314 B

123456789101112131415161718
  1. { Parsed from WebKit.framework DOMNodeList.h }
  2. {$ifdef TYPES}
  3. type
  4. DOMNodeListPtr = ^DOMNodeList;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. DOMNodeList = objcclass external (DOMObject)
  9. public
  10. function length: cuint; message 'length';
  11. function item (index: cuint): DOMNode; message 'item:';
  12. end;
  13. {$endif}