blob: b979a6b9c2e54beb6943bbe4b6597cbf987af480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ Parsed from WebKit.framework WebResource.h }
{$ifdef TYPES}
type
WebResourcePtr = ^WebResource;
{$endif}
{$ifdef CLASSES}
type
WebResource = objcclass external (NSObject, NSCodingProtocol, NSCopyingProtocol)
private
_private: WebResourcePrivate;
public
function initWithData_URL_MIMEType_textEncodingName_frameName (data: NSData; URL: NSURL; MIMEType: NSString; textEncodingName: NSString; frameName: NSString): instancetype; message 'initWithData:URL:MIMEType:textEncodingName:frameName:';
function data: NSData; message 'data';
function URL: NSURL; message 'URL';
function MIMEType: NSString; message 'MIMEType';
function textEncodingName: NSString; message 'textEncodingName';
function frameName: NSString; message 'frameName';
{ Adopted protocols }
function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
end;
{$endif}
|