summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/WebKit.pas
blob: eb06c4ed60ac73acf08d45c1e17d0946f75ad298 (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
56
57
58
59
60
61
62
63
64
65
unit WebKit;

{$mode objfpc}
{$modeswitch objectivec1}

interface

{$linkframework WebKit}

uses
  ctypes, CocoaAll, MacOSAll;
  
{$define INTERFACE}

{$include webkit/UndefinedTypes.inc}

{$define HEADER}
{$include webkit/WebKit.inc}
{$undef HEADER}

{$define TYPES}
{$include webkit/WebKit.inc}
{$undef TYPES}

{$define RECORDS}
{$include webkit/WebKit.inc}
{$undef RECORDS}

type
{$define FORWARD}
{$include webkit/WebKit.inc}
{$undef FORWARD}

{$include webkit/UndefinedClasses.inc}

{$define CLASSES}
{$include webkit/WebKit.inc}
{$undef CLASSES}
 
{$define PROTOCOLS}
{$include webkit/WebKit.inc}
{$undef PROTOCOLS}

{$define FUNCTIONS}
{$include webkit/WebKit.inc}
{$undef FUNCTIONS}

{$define EXTERNAL_SYMBOLS}
{$include webkit/WebKit.inc}
{$undef EXTERNAL_SYMBOLS}

{$define USER_PATCHES}
{$include webkit/WebKit.inc}
{$undef USER_PATCHES}

{$undef INTERFACE}
implementation
{$define IMPLEMENTATION}

{$define USER_PATCHES}
{$include webkit/WebKit.inc}
{$undef USER_PATCHES}

{$undef IMPLEMENTATION}
end.