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