blob: a04d63ad04c590dbcd8643c20fdf806d6ffdcd57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ Parsed from WebKit.framework DOMNotation.h }
{$ifdef TYPES}
type
DOMNotationPtr = ^DOMNotation;
{$endif}
{$ifdef CLASSES}
type
DOMNotation = objcclass external (DOMNode)
public
function publicId: NSString; message 'publicId';
function systemId: NSString; message 'systemId';
end;
{$endif}
|