blob: 154802d8596137e8cf5c4a1bbceb7cbb3c6f475a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ Parsed from WebKit.framework DOMProgressEvent.h }
{$ifdef TYPES}
type
DOMProgressEventPtr = ^DOMProgressEvent;
{$endif}
{$ifdef CLASSES}
type
DOMProgressEvent = objcclass external (DOMEvent)
public
function lengthComputable: ObjCBOOL; message 'lengthComputable';
function loaded: culonglong; message 'loaded';
function total: culonglong; message 'total';
end;
{$endif}
|