blob: bff906facdeb27d45097f276e79f1552c7e3711e (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{ Parsed from Webkit.framework WebPlugin.h }
{ Version: 2.1.4 - Sun Jan 2 15:08:41 CET 2011 }
{$ifdef TYPES}
{$ifndef WEBPLUGIN_PAS_T}
{$define WEBPLUGIN_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef WEBPLUGIN_PAS_R}
{$define WEBPLUGIN_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef WEBPLUGIN_PAS_F}
{$define WEBPLUGIN_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef WEBPLUGIN_PAS_S}
{$define WEBPLUGIN_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
{$endif}
{$ifdef CLASSES}
{$ifndef WEBPLUGIN_PAS_C}
{$define WEBPLUGIN_PAS_C}
{ WebPlugInCategory }
WebPlugInCategory = objccategory external (NSObject)
procedure webPlugInInitialize; message 'webPlugInInitialize';
procedure webPlugInStart; message 'webPlugInStart';
procedure webPlugInStop; message 'webPlugInStop';
procedure webPlugInDestroy; message 'webPlugInDestroy';
procedure webPlugInSetIsSelected(isSelected: Boolean); message 'webPlugInSetIsSelected:';
function objectForWebScript: id; message 'objectForWebScript';
procedure webPlugInMainResourceDidReceiveResponse(response: NSURLResponse); message 'webPlugInMainResourceDidReceiveResponse:';
procedure webPlugInMainResourceDidReceiveData(data: NSData); message 'webPlugInMainResourceDidReceiveData:';
procedure webPlugInMainResourceDidFailWithError(error: NSError); message 'webPlugInMainResourceDidFailWithError:';
end;
{$endif}
{$endif}
|