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