-
Notifications
You must be signed in to change notification settings - Fork 1
/
c_extern.h
299 lines (289 loc) · 5.37 KB
/
c_extern.h
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/*
* c_externs.h
* -- Todd W Mummert, December 1990, CMU
*
* Mostly a garbage file. If all the world would get
* ANSI compilers, this file could actually be useful
* as we could then do argument checking. Actually, I should
* #ifdef the arguments, but haven't gotten around to it yet.
*/
#ifndef FunctionPrototypes
#define FunctionPrototypes 0
#endif
/* now some externs from c_gpr.c */
extern Bool gprcondeventwait(
#if FunctionPrototypes
char* /* key */,
Position_t* /* posn */
#endif
);
extern void bitblt(
#if FunctionPrototypes
Window_t* /* window */
#endif
);
extern void clearentirescreen(
#if FunctionPrototypes
#endif
);
extern void clearrectangle(
#if FunctionPrototypes
Window_t* /* window */,
Position_t* /* dsto */
#endif
);
extern void drawrectangle(
#if FunctionPrototypes
int /* x */,
int /* y */,
int /* width */,
int /* height */
#endif
);
extern void flushwindow(
#if FunctionPrototypes
#endif
);
extern void gprcircle(
#if FunctionPrototypes
Position_t* /* center */,
int /* radius */
#endif
);
extern void gprcirclefilled(
#if FunctionPrototypes
Position_t* /* center */,
int /* radius */
#endif
);
extern void gprinqconfig(
#if FunctionPrototypes
int* /* argc */,
char** /* argv */
#endif
);
extern void gprinqcursor(
#if FunctionPrototypes
Position_t* /* posn */
#endif
);
extern Font gprloadfontfile(
#if FunctionPrototypes
char* /* name */
#endif
);
extern void gprsetclippingactive(
#if FunctionPrototypes
Bool /* flag */
#endif
);
extern void gprsetclipwindow(
#if FunctionPrototypes
Window_t* /* window */
#endif
);
extern void gprsetcursorposition(
#if FunctionPrototypes
Position_t* /* posn */
#endif
);
extern void gprsetdrawvalue(
#if FunctionPrototypes
int /* index */
#endif
);
extern void gprsettextbackgroundvalue(
#if FunctionPrototypes
int /* index */
#endif
);
extern void gprsettextfont(
#if FunctionPrototypes
Font /* font */
#endif
);
extern void gprsettextvalue(
#if FunctionPrototypes
int /* index */
#endif
);
extern void multiline(
#if FunctionPrototypes
XSegment* /* segments */,
int /* number */
#endif
);
extern void polyline(
#if FunctionPrototypes
XPoint* /* points */,
int /* number */
#endif
);
extern void printstring(
#if FunctionPrototypes
int /* x */,
int /* y */,
char* /* string */,
int /* nchars */
#endif
);
extern void putpixmap(
#if FunctionPrototypes
int /* i */,
int* /* p */
#endif
);
extern void removepixmap(
#if FunctionPrototypes
int /* i */,
int* /* p */
#endif
);
extern void timeclock(
#if FunctionPrototypes
struct timeval* /* tval */
#endif
);
extern void tonetime(
#if FunctionPrototypes
#endif
);
extern void waitforkey(
#if FunctionPrototypes
char /* c */
#endif
);
/* now some externs from c_graphics.c */
extern void clearscreen(
#if FunctionPrototypes
#endif
);
extern void drawcracks(
#if FunctionPrototypes
#endif
);
extern void drawhorizon(
#if FunctionPrototypes
float /* azm */
#endif
);
extern void joystick(
#if FunctionPrototypes
int* /* position */,
Genericp /* pl */,
Bool /* sens */
#endif
);
extern void message(
#if FunctionPrototypes
int /* number */,
Bool /* bell */
#endif
);
extern void scanner(
#if FunctionPrototypes
Genericp /* o */
#endif
);
extern void screeninit(
#if FunctionPrototypes
#endif
);
extern void staticscreen(
#if FunctionPrototypes
#endif
);
extern void updatedisplay(
#if FunctionPrototypes
Bool /* missile */,
Bool /* lander */,
LONG /* score */,
int /* numleft */,
Bool /* sens */,
Bool /* reset */
#endif
);
extern void xhairs(
#if FunctionPrototypes
Bool /* aligned */
#endif
);
/* now some externs from c_explode.c */
extern void explodeobject(
#if FunctionPrototypes
#endif
);
extern void explodesalvo(
#if FunctionPrototypes
Genericp /* g */,
Genericp /* pl */
#endif
);
/* now some externs from c_move.c */
extern void movecopter(
#if FunctionPrototypes
Genericp /* g */,
Genericp /* pl */
#endif
);
extern void movelander(
#if FunctionPrototypes
Genericp /* g */,
Genericp /* pl */
#endif
);
extern void movemissile(
#if FunctionPrototypes
Genericp /* g */,
Genericp /* pl */
#endif
);
extern void movesuper(
#if FunctionPrototypes
Genericp /* g */,
Genericp /* pl */
#endif
);
extern void movetank(
#if FunctionPrototypes
Genericp /* g */,
Genericp /* pl */
#endif
);
extern void placeobjects(
#if FunctionPrototypes
Genericp /* o */,
Bool /* missilerun */,
LONG /* score */
#endif
);
/* now some externs from c_draw.c */
extern void drawobject(
#if FunctionPrototypes
Genericp /* g */,
Genericp /* pl */
#endif
);
extern void displayobject(
#if FunctionPrototypes
DCp /* dc */
#endif
);
/* now some externs from c_scores.c */
extern LONG scores(
#if FunctionPrototypes
LONG /* score */
#endif
);
/* now some externs from c_parseopts.c */
extern void parseopt(
#if FunctionPrototypes
int /* argc */,
char** /* argv */,
Bool /* status */
#endif
);
/* let everybody know the options exist */
extern Optionp opt;
/* also need to know if the player is paused */
extern Bool paused;