blob: b33113a41f1e806c2e84e8d7a194415aff6574b9 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
{ Parsed from Foundation.framework NSScriptStandardSuiteCommands.h }
{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 }
{$ifdef HEADER}
{$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_H}
{$define NSSCRIPTSTANDARDSUITECOMMANDS_PAS_H}
type
NSCloneCommandPointer = Pointer;
NSCloseCommandPointer = Pointer;
NSCountCommandPointer = Pointer;
NSCreateCommandPointer = Pointer;
NSDeleteCommandPointer = Pointer;
NSExistsCommandPointer = Pointer;
NSGetCommandPointer = Pointer;
NSMoveCommandPointer = Pointer;
NSQuitCommandPointer = Pointer;
NSSetCommandPointer = Pointer;
{$endif}
{$endif}
{$ifdef TYPES}
{$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_T}
{$define NSSCRIPTSTANDARDSUITECOMMANDS_PAS_T}
{ Constants }
const
NSSaveOptionsYes = 0;
NSSaveOptionsNo = 0;
NSSaveOptionsAsk = 1;
{ Types }
type
NSSaveOptions = NSUInteger;
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_R}
{$define NSSCRIPTSTANDARDSUITECOMMANDS_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_F}
{$define NSSCRIPTSTANDARDSUITECOMMANDS_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_S}
{$define NSSCRIPTSTANDARDSUITECOMMANDS_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
NSCloneCommand = objcclass;
NSCloseCommand = objcclass;
NSCountCommand = objcclass;
NSCreateCommand = objcclass;
NSDeleteCommand = objcclass;
NSExistsCommand = objcclass;
NSGetCommand = objcclass;
NSMoveCommand = objcclass;
NSQuitCommand = objcclass;
NSSetCommand = objcclass;
{$endif}
{$ifdef CLASSES}
{$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_C}
{$define NSSCRIPTSTANDARDSUITECOMMANDS_PAS_C}
{ NSCloneCommand }
NSCloneCommand = objcclass(NSScriptCommand)
private
__keySpecifier: NSScriptObjectSpecifier;
public
class function alloc: NSCloneCommand; message 'alloc';
procedure setReceiversSpecifier(receiversRef: NSScriptObjectSpecifier); message 'setReceiversSpecifier:';
function keySpecifier: NSScriptObjectSpecifier; message 'keySpecifier';
end; external;
{ NSCloseCommand }
NSCloseCommand = objcclass(NSScriptCommand)
public
class function alloc: NSCloseCommand; message 'alloc';
function saveOptions: NSSaveOptions; message 'saveOptions';
end; external;
{ NSCountCommand }
NSCountCommand = objcclass(NSScriptCommand)
public
class function alloc: NSCountCommand; message 'alloc';
end; external;
{ NSCreateCommand }
NSCreateCommand = objcclass(NSScriptCommand)
private
__moreVars2: id;
public
class function alloc: NSCreateCommand; message 'alloc';
function createClassDescription: NSScriptClassDescription; message 'createClassDescription';
function resolvedKeyDictionary: NSDictionary; message 'resolvedKeyDictionary';
end; external;
{ NSDeleteCommand }
NSDeleteCommand = objcclass(NSScriptCommand)
private
__keySpecifier: NSScriptObjectSpecifier;
public
class function alloc: NSDeleteCommand; message 'alloc';
procedure setReceiversSpecifier(receiversRef: NSScriptObjectSpecifier); message 'setReceiversSpecifier:';
function keySpecifier: NSScriptObjectSpecifier; message 'keySpecifier';
end; external;
{ NSExistsCommand }
NSExistsCommand = objcclass(NSScriptCommand)
public
class function alloc: NSExistsCommand; message 'alloc';
end; external;
{ NSGetCommand }
NSGetCommand = objcclass(NSScriptCommand)
public
class function alloc: NSGetCommand; message 'alloc';
end; external;
{ NSMoveCommand }
NSMoveCommand = objcclass(NSScriptCommand)
private
__keySpecifier: NSScriptObjectSpecifier;
public
class function alloc: NSMoveCommand; message 'alloc';
procedure setReceiversSpecifier(receiversRef: NSScriptObjectSpecifier); message 'setReceiversSpecifier:';
function keySpecifier: NSScriptObjectSpecifier; message 'keySpecifier';
end; external;
{ NSQuitCommand }
NSQuitCommand = objcclass(NSScriptCommand)
public
class function alloc: NSQuitCommand; message 'alloc';
function saveOptions: NSSaveOptions; message 'saveOptions';
end; external;
{ NSSetCommand }
NSSetCommand = objcclass(NSScriptCommand)
private
__keySpecifier: NSScriptObjectSpecifier;
public
class function alloc: NSSetCommand; message 'alloc';
procedure setReceiversSpecifier(receiversRef: NSScriptObjectSpecifier); message 'setReceiversSpecifier:';
function keySpecifier: NSScriptObjectSpecifier; message 'keySpecifier';
end; external;
{$endif}
{$endif}
|