Initial revision
[ssr] / StraySrc / Glass / !Glass / Makefile,fe1
1 #
2 # Makefile
3 #
4 # © 1998 Straylight/Edgeware
5 #
6
7 #----- Licensing note -------------------------------------------------------
8 #
9 # This makefile is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2, or (at your option)
12 # any later version.
13 #
14 # This makefile is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this makefile. If not, write to the Free Software Foundation,
21 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 #----- Compilation flags ----------------------------------------------------
24
25 # --- Uncomment to use the C4 tools ---
26
27 # OLD = o-
28
29 # --- C compilation ---
30
31 CC = $(OLD)cc -c -o $@
32 CFLAGS = -depend !Depend -throwback -ffah -Ilibs: -IC:
33 COMPILE = $(CC) $(CFLAGS)
34
35 # --- Assembling ---
36
37 AS = $(OLD)objasm -quit -to $@
38 ASFLAGS = -stamp -depend !Depend -throwback
39 ASSEMBLE = $(AS) $(ASFLAGS) -from
40
41 BAS = basasm
42
43 # --- Linking ---
44
45 LD = $(OLD)link -o $@
46 LD_APP = $(LD) -aif
47 LD_UTIL = $(LD) -bin -base 0
48 LD_MOD = $(LD) -bin -base 0
49 LD_BIN = $(LD) -bin -base 0
50 LD_DLL = $(LD) -rmf
51 LD_AOF = $(LD) -aof
52
53 # --- Making libraries ---
54
55 AR = $(OLD)libfile -o
56
57 CDLL = cdll
58
59 # --- Setting file types ---
60
61 SET_APP = SetType $@ FF8
62 SET_MOD = SetType $@ FFA
63 SET_UTIL = SetType $@ FFC
64 SET_DLL = SetType $@ FFD
65
66 # --- Other maintenance things ---
67
68 RM = ssrclean
69 INSTALL = inst
70 SETDATE = setdate
71 SQUEEZE = squeeze $@
72 DATE = %zdy %mo %ce%yr
73 MODDATE = %dy %m3 %ce%yr
74 CRIGHT = © 1994-%ce%yr Straylight
75 FIXLINK = fixlink $@
76
77 #----- Default rules --------------------------------------------------------
78
79 .SUFFIXES: .o .c .s .bs
80 .c.o:
81 $(COMPILE) $<
82 .s.o:
83 $(ASSEMBLE) $<
84 .bs.o:
85 $(BAS) $< $@
86
87 #----- Object files ---------------------------------------------------------
88
89 OBJ = \
90 o.glass \
91 o.align o.colSelect o.toolbox \
92 o.editIcon o.editWin o.gPrefs o.tearEdit \
93 o.gSprite o.tfile \
94 o.iconData o.indir o.intMsgs o.toolSupprt \
95 o.wDragging o.wGrab o.wGraph o.wIcons o.window o.wMenus \
96 o.wMousePtr o.wPalette o.wRedraw o.wSelect o.wToolbars \
97 o.wWindows o.wWinEvent
98
99 LIBS = libs:o.astubs libs:lib.steeldll libs:o.dlllib libs:o.swiv
100
101 #----- Compiling things -----------------------------------------------------
102
103 all: !RunImage Modules.Sculptrix setSlot test
104
105 install:
106
107 clean:
108 -$(RM) o.* !RunImage Modules.Sculptrix setSlot test
109
110 #----- Nitty Gritty Bitties -------------------------------------------------
111
112 !RunImage: $(OBJ) $(LIBS)
113 $(SETDATE) o.version date="$(DATE)" cright="$(CRIGHT)"
114 $(LD_APP) $(OBJ) o.version $(LIBS)
115 $(SQUEEZE)
116 $(SET_APP)
117
118 Modules.Sculptrix: <SSR$ModDir>.Sculptrix
119 $(INSTALL) <SSR$ModDir>.Sculptrix Modules
120
121 setSlot: <SSR$BinDir>.setSlot
122 $(INSTALL) <SSR$BinDir>.setSlot @
123
124 test: <SSR$BinDir>.test
125 $(INSTALL) <SSR$BinDir>.test @
126
127 #----- Dynamic dependencies -------------------------------------------------
128
129 # Dynamic dependencies:
130 o.tearEdit: c.tearEdit
131 o.tearEdit: libs:steel.h.Steel
132 o.tearEdit: libs:steel.h.wimp
133 o.tearEdit: libs:steel.h.wimpstruct
134 o.tearEdit: libs:steel.h.os
135 o.tearEdit: C:h.kernel
136 o.tearEdit: libs:steel.h.sprite
137 o.tearEdit: libs:steel.h.wimpt
138 o.tearEdit: libs:steel.h.win
139 o.tearEdit: libs:steel.h.event
140 o.tearEdit: libs:steel.h.menu
141 o.tearEdit: libs:steel.h.ibicon
142 o.tearEdit: libs:steel.h.res
143 o.tearEdit: libs:steel.h.resspr
144 o.tearEdit: libs:steel.h.template
145 o.tearEdit: libs:steel.h.dbox
146 o.tearEdit: libs:steel.h.mem
147 o.tearEdit: libs:steel.h.visdelay
148 o.tearEdit: libs:steel.h.help
149 o.tearEdit: libs:steel.h.exception
150 o.tearEdit: libs:h.dll
151 o.tearEdit: libs:steel.h.msgs
152 o.tearEdit: libs:steel.h.utils
153 o.tearEdit: libs:steel.h.stddbox
154 o.tearEdit: libs:steel.h.xfersend
155 o.tearEdit: libs:steel.h.werr
156 o.tearEdit: libs:steel.h.buttons
157 o.tearEdit: libs:steel.h.akbd
158 o.tearEdit: libs:steel.h.buffer
159 o.tearEdit: libs:steel.h.colourtran
160 o.tearEdit: libs:steel.h.font
161 o.tearEdit: C:h.drawmod
162 o.tearEdit: libs:steel.h.tearoff
163 o.tearEdit: h.gStruct
164 o.tearEdit: h.gPrefs
165 o.tearEdit: h.glass
166 o.tearEdit: libs:steel.h.viewer
167 o.tearEdit: libs:steel.h.pane
168 o.tearEdit: libs:steel.h.listbox
169 o.tearEdit: h.glass
170 o.tearEdit: h.window
171 o.tearEdit: h.tfile
172 o.tearEdit: h.indir
173 o.tearEdit: h.tearEdit
174 o.tearEdit: h.gStruct
175 o.iconData: c.iconData
176 o.iconData: libs:steel.h.Steel
177 o.iconData: libs:steel.h.wimp
178 o.iconData: libs:steel.h.wimpstruct
179 o.iconData: libs:steel.h.os
180 o.iconData: C:h.kernel
181 o.iconData: libs:steel.h.sprite
182 o.iconData: libs:steel.h.wimpt
183 o.iconData: libs:steel.h.win
184 o.iconData: libs:steel.h.event
185 o.iconData: libs:steel.h.menu
186 o.iconData: libs:steel.h.ibicon
187 o.iconData: libs:steel.h.res
188 o.iconData: libs:steel.h.resspr
189 o.iconData: libs:steel.h.template
190 o.iconData: libs:steel.h.dbox
191 o.iconData: libs:steel.h.mem
192 o.iconData: libs:steel.h.visdelay
193 o.iconData: libs:steel.h.help
194 o.iconData: libs:steel.h.exception
195 o.iconData: libs:h.dll
196 o.iconData: libs:steel.h.msgs
197 o.iconData: libs:steel.h.utils
198 o.iconData: libs:steel.h.stddbox
199 o.iconData: libs:steel.h.xfersend
200 o.iconData: libs:steel.h.werr
201 o.iconData: libs:h.swis
202 o.iconData: h.gStruct
203 o.iconData: h.gPrefs
204 o.iconData: h.glass
205 o.iconData: libs:steel.h.viewer
206 o.iconData: libs:steel.h.pane
207 o.iconData: libs:steel.h.listbox
208 o.iconData: h.glass
209 o.iconData: h.iconData
210 o.iconData: h.indir
211 o.intMsgs: c.intMsgs
212 o.intMsgs: libs:steel.h.Steel
213 o.intMsgs: libs:steel.h.wimp
214 o.intMsgs: libs:steel.h.wimpstruct
215 o.intMsgs: libs:steel.h.os
216 o.intMsgs: C:h.kernel
217 o.intMsgs: libs:steel.h.sprite
218 o.intMsgs: libs:steel.h.wimpt
219 o.intMsgs: libs:steel.h.win
220 o.intMsgs: libs:steel.h.event
221 o.intMsgs: libs:steel.h.menu
222 o.intMsgs: libs:steel.h.ibicon
223 o.intMsgs: libs:steel.h.res
224 o.intMsgs: libs:steel.h.resspr
225 o.intMsgs: libs:steel.h.template
226 o.intMsgs: libs:steel.h.dbox
227 o.intMsgs: libs:steel.h.mem
228 o.intMsgs: libs:steel.h.visdelay
229 o.intMsgs: libs:steel.h.help
230 o.intMsgs: libs:steel.h.exception
231 o.intMsgs: libs:h.dll
232 o.intMsgs: libs:steel.h.msgs
233 o.intMsgs: libs:steel.h.utils
234 o.intMsgs: libs:steel.h.stddbox
235 o.intMsgs: libs:steel.h.xfersend
236 o.intMsgs: libs:steel.h.werr
237 o.intMsgs: h.glass
238 o.intMsgs: h.intMsgs
239 o.intMsgs: h.gStruct
240 o.intMsgs: h.gPrefs
241 o.intMsgs: libs:steel.h.viewer
242 o.intMsgs: libs:steel.h.pane
243 o.intMsgs: libs:steel.h.listbox
244 o.toolSupprt: s.toolSupprt
245 o.toolSupprt: libs:Header
246 o.toolSupprt: libs:SWIs
247 o.window: c.window
248 o.window: h.window
249 o.window: h.gStruct
250 o.window: h.gPrefs
251 o.window: h.glass
252 o.window: libs:steel.h.wimp
253 o.window: libs:steel.h.wimpstruct
254 o.window: libs:steel.h.os
255 o.window: C:h.kernel
256 o.window: libs:steel.h.sprite
257 o.window: libs:steel.h.dbox
258 o.window: libs:steel.h.event
259 o.window: libs:steel.h.menu
260 o.window: libs:steel.h.viewer
261 o.window: libs:steel.h.pane
262 o.window: libs:steel.h.listbox
263 o.window: h._window
264 o.window: h.gStruct
265 o.glass: c.glass
266 o.glass: libs:h.dll
267 o.glass: libs:h.os
268 o.glass: C:h.kernel
269 o.glass: libs:h.wimp
270 o.glass: libs:h.wimpstruct
271 o.glass: libs:h.sprite
272 o.glass: libs:steel.h.Steel
273 o.glass: libs:steel.h.wimpt
274 o.glass: libs:steel.h.win
275 o.glass: libs:steel.h.event
276 o.glass: libs:steel.h.menu
277 o.glass: libs:steel.h.ibicon
278 o.glass: libs:steel.h.res
279 o.glass: libs:steel.h.resspr
280 o.glass: libs:steel.h.template
281 o.glass: libs:steel.h.dbox
282 o.glass: libs:steel.h.mem
283 o.glass: libs:steel.h.visdelay
284 o.glass: libs:steel.h.help
285 o.glass: libs:steel.h.exception
286 o.glass: libs:steel.h.msgs
287 o.glass: libs:steel.h.utils
288 o.glass: libs:steel.h.stddbox
289 o.glass: libs:steel.h.xfersend
290 o.glass: libs:steel.h.werr
291 o.glass: libs:steel.h.xferrecv
292 o.glass: libs:steel.h.flex
293 o.glass: libs:steel.h.saveas
294 o.glass: libs:h.swis
295 o.glass: libs:steel.h.viewer
296 o.glass: libs:steel.h.mem
297 o.glass: libs:steel.h.caretptr
298 o.glass: libs:steel.h.pointer
299 o.glass: libs:steel.h.buttons
300 o.glass: libs:steel.h.sculptrix
301 o.glass: libs:steel.h.flex
302 o.glass: h.gStruct
303 o.glass: h.gPrefs
304 o.glass: h.glass
305 o.glass: libs:steel.h.pane
306 o.glass: libs:steel.h.listbox
307 o.glass: h.gIcons
308 o.glass: h.gMenus
309 o.glass: h.glass
310 o.glass: h.toolbox
311 o.glass: h.tfile
312 o.glass: h.intMsgs
313 o.glass: h.gPrefs
314 o.glass: h.gSprite
315 o.glass: h.indir
316 o.glass: h.window
317 o.glass: h.tearEdit
318 o.glass: h.gStruct
319 o.align: c.align
320 o.align: libs:steel.h.Steel
321 o.align: libs:steel.h.wimp
322 o.align: libs:steel.h.wimpstruct
323 o.align: libs:steel.h.os
324 o.align: C:h.kernel
325 o.align: libs:steel.h.sprite
326 o.align: libs:steel.h.wimpt
327 o.align: libs:steel.h.win
328 o.align: libs:steel.h.event
329 o.align: libs:steel.h.menu
330 o.align: libs:steel.h.ibicon
331 o.align: libs:steel.h.res
332 o.align: libs:steel.h.resspr
333 o.align: libs:steel.h.template
334 o.align: libs:steel.h.dbox
335 o.align: libs:steel.h.mem
336 o.align: libs:steel.h.visdelay
337 o.align: libs:steel.h.help
338 o.align: libs:steel.h.exception
339 o.align: libs:h.dll
340 o.align: libs:steel.h.msgs
341 o.align: libs:steel.h.utils
342 o.align: libs:steel.h.stddbox
343 o.align: libs:steel.h.xfersend
344 o.align: libs:steel.h.werr
345 o.align: h.gIcons
346 o.align: h.glass
347 o.align: h.window
348 o.align: h.gStruct
349 o.align: h.gPrefs
350 o.align: libs:steel.h.viewer
351 o.align: libs:steel.h.pane
352 o.align: libs:steel.h.listbox
353 o.align: h.align
354 o.align: h.tfile
355 o.colSelect: c.colSelect
356 o.colSelect: libs:steel.h.Steel
357 o.colSelect: libs:steel.h.wimp
358 o.colSelect: libs:steel.h.wimpstruct
359 o.colSelect: libs:steel.h.os
360 o.colSelect: C:h.kernel
361 o.colSelect: libs:steel.h.sprite
362 o.colSelect: libs:steel.h.wimpt
363 o.colSelect: libs:steel.h.win
364 o.colSelect: libs:steel.h.event
365 o.colSelect: libs:steel.h.menu
366 o.colSelect: libs:steel.h.ibicon
367 o.colSelect: libs:steel.h.res
368 o.colSelect: libs:steel.h.resspr
369 o.colSelect: libs:steel.h.template
370 o.colSelect: libs:steel.h.dbox
371 o.colSelect: libs:steel.h.mem
372 o.colSelect: libs:steel.h.visdelay
373 o.colSelect: libs:steel.h.help
374 o.colSelect: libs:steel.h.exception
375 o.colSelect: libs:h.dll
376 o.colSelect: libs:steel.h.msgs
377 o.colSelect: libs:steel.h.utils
378 o.colSelect: libs:steel.h.stddbox
379 o.colSelect: libs:steel.h.xfersend
380 o.colSelect: libs:steel.h.werr
381 o.colSelect: libs:steel.h.akbd
382 o.colSelect: libs:steel.h.colourtran
383 o.colSelect: libs:steel.h.font
384 o.colSelect: C:h.drawmod
385 o.colSelect: h.gIcons
386 o.colSelect: h.glass
387 o.colSelect: h.colSelect
388 o.toolbox: c.toolbox
389 o.toolbox: libs:steel.h.Steel
390 o.toolbox: libs:steel.h.wimp
391 o.toolbox: libs:steel.h.wimpstruct
392 o.toolbox: libs:steel.h.os
393 o.toolbox: C:h.kernel
394 o.toolbox: libs:steel.h.sprite
395 o.toolbox: libs:steel.h.wimpt
396 o.toolbox: libs:steel.h.win
397 o.toolbox: libs:steel.h.event
398 o.toolbox: libs:steel.h.menu
399 o.toolbox: libs:steel.h.ibicon
400 o.toolbox: libs:steel.h.res
401 o.toolbox: libs:steel.h.resspr
402 o.toolbox: libs:steel.h.template
403 o.toolbox: libs:steel.h.dbox
404 o.toolbox: libs:steel.h.mem
405 o.toolbox: libs:steel.h.visdelay
406 o.toolbox: libs:steel.h.help
407 o.toolbox: libs:steel.h.exception
408 o.toolbox: libs:h.dll
409 o.toolbox: libs:steel.h.msgs
410 o.toolbox: libs:steel.h.utils
411 o.toolbox: libs:steel.h.stddbox
412 o.toolbox: libs:steel.h.xfersend
413 o.toolbox: libs:steel.h.werr
414 o.toolbox: libs:steel.h.sculptrix
415 o.toolbox: libs:steel.h.pointer
416 o.toolbox: libs:steel.h.bbc
417 o.toolbox: h.gIcons
418 o.toolbox: h.glass
419 o.toolbox: h.toolbox
420 o.editIcon: c.editIcon
421 o.editIcon: libs:steel.h.Steel
422 o.editIcon: libs:steel.h.wimp
423 o.editIcon: libs:steel.h.wimpstruct
424 o.editIcon: libs:steel.h.os
425 o.editIcon: C:h.kernel
426 o.editIcon: libs:steel.h.sprite
427 o.editIcon: libs:steel.h.wimpt
428 o.editIcon: libs:steel.h.win
429 o.editIcon: libs:steel.h.event
430 o.editIcon: libs:steel.h.menu
431 o.editIcon: libs:steel.h.ibicon
432 o.editIcon: libs:steel.h.res
433 o.editIcon: libs:steel.h.resspr
434 o.editIcon: libs:steel.h.template
435 o.editIcon: libs:steel.h.dbox
436 o.editIcon: libs:steel.h.mem
437 o.editIcon: libs:steel.h.visdelay
438 o.editIcon: libs:steel.h.help
439 o.editIcon: libs:steel.h.exception
440 o.editIcon: libs:h.dll
441 o.editIcon: libs:steel.h.msgs
442 o.editIcon: libs:steel.h.utils
443 o.editIcon: libs:steel.h.stddbox
444 o.editIcon: libs:steel.h.xfersend
445 o.editIcon: libs:steel.h.werr
446 o.editIcon: libs:h.swis
447 o.editIcon: libs:steel.h.buttons
448 o.editIcon: libs:steel.h.fontMenu
449 o.editIcon: libs:steel.h.akbd
450 o.editIcon: libs:steel.h.bbc
451 o.editIcon: libs:steel.h.buffer
452 o.editIcon: libs:steel.h.font
453 o.editIcon: C:h.drawmod
454 o.editIcon: h.gStruct
455 o.editIcon: h.gPrefs
456 o.editIcon: h.glass
457 o.editIcon: libs:steel.h.viewer
458 o.editIcon: libs:steel.h.pane
459 o.editIcon: libs:steel.h.listbox
460 o.editIcon: h.gMenus
461 o.editIcon: h.gIcons
462 o.editIcon: h.glass
463 o.editIcon: h.tfile
464 o.editIcon: h.window
465 o.editIcon: h.intMsgs
466 o.editIcon: h.editIcon
467 o.editIcon: h.colSelect
468 o.editIcon: h.indir
469 o.editIcon: h.gPrefs
470 o.editWin: c.editWin
471 o.editWin: libs:steel.h.Steel
472 o.editWin: libs:steel.h.wimp
473 o.editWin: libs:steel.h.wimpstruct
474 o.editWin: libs:steel.h.os
475 o.editWin: C:h.kernel
476 o.editWin: libs:steel.h.sprite
477 o.editWin: libs:steel.h.wimpt
478 o.editWin: libs:steel.h.win
479 o.editWin: libs:steel.h.event
480 o.editWin: libs:steel.h.menu
481 o.editWin: libs:steel.h.ibicon
482 o.editWin: libs:steel.h.res
483 o.editWin: libs:steel.h.resspr
484 o.editWin: libs:steel.h.template
485 o.editWin: libs:steel.h.dbox
486 o.editWin: libs:steel.h.mem
487 o.editWin: libs:steel.h.visdelay
488 o.editWin: libs:steel.h.help
489 o.editWin: libs:steel.h.exception
490 o.editWin: libs:h.dll
491 o.editWin: libs:steel.h.msgs
492 o.editWin: libs:steel.h.utils
493 o.editWin: libs:steel.h.stddbox
494 o.editWin: libs:steel.h.xfersend
495 o.editWin: libs:steel.h.werr
496 o.editWin: libs:h.swis
497 o.editWin: libs:steel.h.buttons
498 o.editWin: libs:steel.h.fontMenu
499 o.editWin: libs:steel.h.akbd
500 o.editWin: libs:steel.h.buffer
501 o.editWin: libs:steel.h.font
502 o.editWin: C:h.drawmod
503 o.editWin: h.glass
504 o.editWin: h.tfile
505 o.editWin: h.gStruct
506 o.editWin: h.gPrefs
507 o.editWin: libs:steel.h.viewer
508 o.editWin: libs:steel.h.pane
509 o.editWin: libs:steel.h.listbox
510 o.editWin: h.window
511 o.editWin: h.intMsgs
512 o.editWin: h.editWin
513 o.editWin: h.colSelect
514 o.editWin: h.indir
515 o.editWin: h.gPrefs
516 o.editWin: h.gStruct
517 o.editWin: h.gMenus
518 o.editWin: h.gIcons
519 o.gPrefs: c.gPrefs
520 o.gPrefs: libs:steel.h.Steel
521 o.gPrefs: libs:steel.h.wimp
522 o.gPrefs: libs:steel.h.wimpstruct
523 o.gPrefs: libs:steel.h.os
524 o.gPrefs: C:h.kernel
525 o.gPrefs: libs:steel.h.sprite
526 o.gPrefs: libs:steel.h.wimpt
527 o.gPrefs: libs:steel.h.win
528 o.gPrefs: libs:steel.h.event
529 o.gPrefs: libs:steel.h.menu
530 o.gPrefs: libs:steel.h.ibicon
531 o.gPrefs: libs:steel.h.res
532 o.gPrefs: libs:steel.h.resspr
533 o.gPrefs: libs:steel.h.template
534 o.gPrefs: libs:steel.h.dbox
535 o.gPrefs: libs:steel.h.mem
536 o.gPrefs: libs:steel.h.visdelay
537 o.gPrefs: libs:steel.h.help
538 o.gPrefs: libs:steel.h.exception
539 o.gPrefs: libs:h.dll
540 o.gPrefs: libs:steel.h.msgs
541 o.gPrefs: libs:steel.h.utils
542 o.gPrefs: libs:steel.h.stddbox
543 o.gPrefs: libs:steel.h.xfersend
544 o.gPrefs: libs:steel.h.werr
545 o.gPrefs: libs:steel.h.prefs
546 o.gPrefs: libs:steel.h.pane
547 o.gPrefs: libs:steel.h.listbox
548 o.gPrefs: libs:steel.h.blinkC
549 o.gPrefs: libs:steel.h.buttons
550 o.gPrefs: libs:steel.h.akbd
551 o.gPrefs: h.gIcons
552 o.gPrefs: h.gMenus
553 o.gPrefs: h.glass
554 o.gPrefs: h.gPrefs
555 o.gPrefs: h.intMsgs
556 o.gPrefs: h.gStruct
557 o.gPrefs: libs:steel.h.viewer
558 o.gPrefs: h.colSelect
559 o.gPrefs: h.window
560 o.gSprite: c.gSprite
561 o.gSprite: libs:steel.h.Steel
562 o.gSprite: libs:steel.h.wimp
563 o.gSprite: libs:steel.h.wimpstruct
564 o.gSprite: libs:steel.h.os
565 o.gSprite: C:h.kernel
566 o.gSprite: libs:steel.h.sprite
567 o.gSprite: libs:steel.h.wimpt
568 o.gSprite: libs:steel.h.win
569 o.gSprite: libs:steel.h.event
570 o.gSprite: libs:steel.h.menu
571 o.gSprite: libs:steel.h.ibicon
572 o.gSprite: libs:steel.h.res
573 o.gSprite: libs:steel.h.resspr
574 o.gSprite: libs:steel.h.template
575 o.gSprite: libs:steel.h.dbox
576 o.gSprite: libs:steel.h.mem
577 o.gSprite: libs:steel.h.visdelay
578 o.gSprite: libs:steel.h.help
579 o.gSprite: libs:steel.h.exception
580 o.gSprite: libs:h.dll
581 o.gSprite: libs:steel.h.msgs
582 o.gSprite: libs:steel.h.utils
583 o.gSprite: libs:steel.h.stddbox
584 o.gSprite: libs:steel.h.xfersend
585 o.gSprite: libs:steel.h.werr
586 o.gSprite: libs:steel.h.xferrecv
587 o.gSprite: libs:steel.h.flex
588 o.gSprite: libs:steel.h.saveas
589 o.gSprite: libs:h.swis
590 o.gSprite: libs:steel.h.viewer
591 o.gSprite: libs:steel.h.flex
592 o.gSprite: libs:steel.h.akbd
593 o.gSprite: libs:steel.h.bbc
594 o.gSprite: libs:steel.h.choices
595 o.gSprite: libs:steel.h.colourtran
596 o.gSprite: libs:steel.h.font
597 o.gSprite: C:h.drawmod
598 o.gSprite: h.gStruct
599 o.gSprite: h.gPrefs
600 o.gSprite: h.glass
601 o.gSprite: libs:steel.h.pane
602 o.gSprite: libs:steel.h.listbox
603 o.gSprite: h.gMenus
604 o.gSprite: h.gIcons
605 o.gSprite: h.glass
606 o.gSprite: h.intMsgs
607 o.gSprite: h.gSprite
608 o.gSprite: h.gPrefs
609 o.gSprite: h.indir
610 o.gSprite: h.window
611 o.gSprite: h.tfile
612 o.tfile: c.tfile
613 o.tfile: libs:steel.h.Steel
614 o.tfile: libs:steel.h.wimp
615 o.tfile: libs:steel.h.wimpstruct
616 o.tfile: libs:steel.h.os
617 o.tfile: C:h.kernel
618 o.tfile: libs:steel.h.sprite
619 o.tfile: libs:steel.h.wimpt
620 o.tfile: libs:steel.h.win
621 o.tfile: libs:steel.h.event
622 o.tfile: libs:steel.h.menu
623 o.tfile: libs:steel.h.ibicon
624 o.tfile: libs:steel.h.res
625 o.tfile: libs:steel.h.resspr
626 o.tfile: libs:steel.h.template
627 o.tfile: libs:steel.h.dbox
628 o.tfile: libs:steel.h.mem
629 o.tfile: libs:steel.h.visdelay
630 o.tfile: libs:steel.h.help
631 o.tfile: libs:steel.h.exception
632 o.tfile: libs:h.dll
633 o.tfile: libs:steel.h.msgs
634 o.tfile: libs:steel.h.utils
635 o.tfile: libs:steel.h.stddbox
636 o.tfile: libs:steel.h.xfersend
637 o.tfile: libs:steel.h.werr
638 o.tfile: libs:steel.h.xferrecv
639 o.tfile: libs:steel.h.flex
640 o.tfile: libs:steel.h.saveas
641 o.tfile: libs:h.swis
642 o.tfile: libs:steel.h.viewer
643 o.tfile: libs:steel.h.mem
644 o.tfile: libs:steel.h.nopoll
645 o.tfile: libs:steel.h.flex
646 o.tfile: libs:steel.h.akbd
647 o.tfile: libs:steel.h.alarm
648 o.tfile: libs:steel.h.bbc
649 o.tfile: libs:steel.h.buffer
650 o.tfile: libs:steel.h.font
651 o.tfile: C:h.drawmod
652 o.tfile: h.gStruct
653 o.tfile: h.gPrefs
654 o.tfile: h.glass
655 o.tfile: libs:steel.h.pane
656 o.tfile: libs:steel.h.listbox
657 o.tfile: h.gIcons
658 o.tfile: h.gMenus
659 o.tfile: h.glass
660 o.tfile: h.toolbox
661 o.tfile: h.intMsgs
662 o.tfile: h.tfile
663 o.tfile: h.gPrefs
664 o.tfile: h.gSprite
665 o.tfile: h.indir
666 o.tfile: h.window
667 o.tfile: h.editWin
668 o.tfile: h.iconData
669 o.indir: c.indir
670 o.indir: libs:steel.h.Steel
671 o.indir: libs:steel.h.wimp
672 o.indir: libs:steel.h.wimpstruct
673 o.indir: libs:steel.h.os
674 o.indir: C:h.kernel
675 o.indir: libs:steel.h.sprite
676 o.indir: libs:steel.h.wimpt
677 o.indir: libs:steel.h.win
678 o.indir: libs:steel.h.event
679 o.indir: libs:steel.h.menu
680 o.indir: libs:steel.h.ibicon
681 o.indir: libs:steel.h.res
682 o.indir: libs:steel.h.resspr
683 o.indir: libs:steel.h.template
684 o.indir: libs:steel.h.dbox
685 o.indir: libs:steel.h.mem
686 o.indir: libs:steel.h.visdelay
687 o.indir: libs:steel.h.help
688 o.indir: libs:steel.h.exception
689 o.indir: libs:h.dll
690 o.indir: libs:steel.h.msgs
691 o.indir: libs:steel.h.utils
692 o.indir: libs:steel.h.stddbox
693 o.indir: libs:steel.h.xfersend
694 o.indir: libs:steel.h.werr
695 o.indir: libs:steel.h.buttons
696 o.indir: libs:steel.h.bbc
697 o.indir: h.gIcons
698 o.indir: h.glass
699 o.indir: libs:h.heap
700 o.indir: h.indir
701 o.wDragging: c.wDragging
702 o.wDragging: libs:steel.h.Steel
703 o.wDragging: libs:steel.h.wimp
704 o.wDragging: libs:steel.h.wimpstruct
705 o.wDragging: libs:steel.h.os
706 o.wDragging: C:h.kernel
707 o.wDragging: libs:steel.h.sprite
708 o.wDragging: libs:steel.h.wimpt
709 o.wDragging: libs:steel.h.win
710 o.wDragging: libs:steel.h.event
711 o.wDragging: libs:steel.h.menu
712 o.wDragging: libs:steel.h.ibicon
713 o.wDragging: libs:steel.h.res
714 o.wDragging: libs:steel.h.resspr
715 o.wDragging: libs:steel.h.template
716 o.wDragging: libs:steel.h.dbox
717 o.wDragging: libs:steel.h.mem
718 o.wDragging: libs:steel.h.visdelay
719 o.wDragging: libs:steel.h.help
720 o.wDragging: libs:steel.h.exception
721 o.wDragging: libs:h.dll
722 o.wDragging: libs:steel.h.msgs
723 o.wDragging: libs:steel.h.utils
724 o.wDragging: libs:steel.h.stddbox
725 o.wDragging: libs:steel.h.xfersend
726 o.wDragging: libs:steel.h.werr
727 o.wDragging: libs:h.swis
728 o.wDragging: libs:steel.h.akbd
729 o.wDragging: libs:steel.h.coords
730 o.wDragging: libs:steel.h.wimp
731 o.wDragging: libs:steel.h.bbc
732 o.wDragging: h.gStruct
733 o.wDragging: h.gPrefs
734 o.wDragging: h.glass
735 o.wDragging: libs:steel.h.viewer
736 o.wDragging: libs:steel.h.pane
737 o.wDragging: libs:steel.h.listbox
738 o.wDragging: h.gMenus
739 o.wDragging: h.gIcons
740 o.wDragging: h.glass
741 o.wDragging: h.gPrefs
742 o.wDragging: h.tfile
743 o.wDragging: h.window
744 o.wDragging: h._window
745 o.wDragging: h.gStruct
746 o.wDragging: h.editIcon
747 o.wDragging: h.editWin
748 o.wGrab: c.wGrab
749 o.wGrab: libs:steel.h.Steel
750 o.wGrab: libs:steel.h.wimp
751 o.wGrab: libs:steel.h.wimpstruct
752 o.wGrab: libs:steel.h.os
753 o.wGrab: C:h.kernel
754 o.wGrab: libs:steel.h.sprite
755 o.wGrab: libs:steel.h.wimpt
756 o.wGrab: libs:steel.h.win
757 o.wGrab: libs:steel.h.event
758 o.wGrab: libs:steel.h.menu
759 o.wGrab: libs:steel.h.ibicon
760 o.wGrab: libs:steel.h.res
761 o.wGrab: libs:steel.h.resspr
762 o.wGrab: libs:steel.h.template
763 o.wGrab: libs:steel.h.dbox
764 o.wGrab: libs:steel.h.mem
765 o.wGrab: libs:steel.h.visdelay
766 o.wGrab: libs:steel.h.help
767 o.wGrab: libs:steel.h.exception
768 o.wGrab: libs:h.dll
769 o.wGrab: libs:steel.h.msgs
770 o.wGrab: libs:steel.h.utils
771 o.wGrab: libs:steel.h.stddbox
772 o.wGrab: libs:steel.h.xfersend
773 o.wGrab: libs:steel.h.werr
774 o.wGrab: libs:h.swis
775 o.wGrab: libs:steel.h.pointer
776 o.wGrab: libs:steel.h.bbc
777 o.wGrab: libs:steel.h.buffer
778 o.wGrab: h.gStruct
779 o.wGrab: h.gPrefs
780 o.wGrab: h.glass
781 o.wGrab: libs:steel.h.viewer
782 o.wGrab: libs:steel.h.pane
783 o.wGrab: libs:steel.h.listbox
784 o.wGrab: h.gMenus
785 o.wGrab: h.gIcons
786 o.wGrab: h.glass
787 o.wGrab: h.gPrefs
788 o.wGrab: h.tfile
789 o.wGrab: h.window
790 o.wGrab: h._window
791 o.wGrab: h.gStruct
792 o.wGrab: h.iconData
793 o.wGraph: c.wGraph
794 o.wGraph: libs:steel.h.Steel
795 o.wGraph: libs:steel.h.wimp
796 o.wGraph: libs:steel.h.wimpstruct
797 o.wGraph: libs:steel.h.os
798 o.wGraph: C:h.kernel
799 o.wGraph: libs:steel.h.sprite
800 o.wGraph: libs:steel.h.wimpt
801 o.wGraph: libs:steel.h.win
802 o.wGraph: libs:steel.h.event
803 o.wGraph: libs:steel.h.menu
804 o.wGraph: libs:steel.h.ibicon
805 o.wGraph: libs:steel.h.res
806 o.wGraph: libs:steel.h.resspr
807 o.wGraph: libs:steel.h.template
808 o.wGraph: libs:steel.h.dbox
809 o.wGraph: libs:steel.h.mem
810 o.wGraph: libs:steel.h.visdelay
811 o.wGraph: libs:steel.h.help
812 o.wGraph: libs:steel.h.exception
813 o.wGraph: libs:h.dll
814 o.wGraph: libs:steel.h.msgs
815 o.wGraph: libs:steel.h.utils
816 o.wGraph: libs:steel.h.stddbox
817 o.wGraph: libs:steel.h.xfersend
818 o.wGraph: libs:steel.h.werr
819 o.wGraph: libs:h.swis
820 o.wGraph: libs:steel.h.bbc
821 o.wGraph: libs:steel.h.colourtran
822 o.wGraph: libs:steel.h.font
823 o.wGraph: C:h.drawmod
824 o.wGraph: h.gStruct
825 o.wGraph: h.gPrefs
826 o.wGraph: h.glass
827 o.wGraph: libs:steel.h.viewer
828 o.wGraph: libs:steel.h.pane
829 o.wGraph: libs:steel.h.listbox
830 o.wGraph: h.gMenus
831 o.wGraph: h.gIcons
832 o.wGraph: h.glass
833 o.wGraph: h.gPrefs
834 o.wGraph: h.window
835 o.wGraph: h._window
836 o.wGraph: h.gStruct
837 o.wIcons: c.wIcons
838 o.wIcons: libs:steel.h.Steel
839 o.wIcons: libs:steel.h.wimp
840 o.wIcons: libs:steel.h.wimpstruct
841 o.wIcons: libs:steel.h.os
842 o.wIcons: C:h.kernel
843 o.wIcons: libs:steel.h.sprite
844 o.wIcons: libs:steel.h.wimpt
845 o.wIcons: libs:steel.h.win
846 o.wIcons: libs:steel.h.event
847 o.wIcons: libs:steel.h.menu
848 o.wIcons: libs:steel.h.ibicon
849 o.wIcons: libs:steel.h.res
850 o.wIcons: libs:steel.h.resspr
851 o.wIcons: libs:steel.h.template
852 o.wIcons: libs:steel.h.dbox
853 o.wIcons: libs:steel.h.mem
854 o.wIcons: libs:steel.h.visdelay
855 o.wIcons: libs:steel.h.help
856 o.wIcons: libs:steel.h.exception
857 o.wIcons: libs:h.dll
858 o.wIcons: libs:steel.h.msgs
859 o.wIcons: libs:steel.h.utils
860 o.wIcons: libs:steel.h.stddbox
861 o.wIcons: libs:steel.h.xfersend
862 o.wIcons: libs:steel.h.werr
863 o.wIcons: libs:h.swis
864 o.wIcons: libs:steel.h.interface
865 o.wIcons: libs:steel.h.sculptrix
866 o.wIcons: libs:steel.h.flex
867 o.wIcons: libs:steel.h.bbc
868 o.wIcons: libs:steel.h.font
869 o.wIcons: C:h.drawmod
870 o.wIcons: h.gStruct
871 o.wIcons: h.gPrefs
872 o.wIcons: h.glass
873 o.wIcons: libs:steel.h.viewer
874 o.wIcons: libs:steel.h.pane
875 o.wIcons: libs:steel.h.listbox
876 o.wIcons: h.gMenus
877 o.wIcons: h.gIcons
878 o.wIcons: h.glass
879 o.wIcons: h.gPrefs
880 o.wIcons: h.tfile
881 o.wIcons: h.window
882 o.wIcons: h._window
883 o.wIcons: h.gStruct
884 o.wIcons: h.editIcon
885 o.wIcons: h.indir
886 o.wIcons: h.iconData
887 o.wIcons: h.tearEdit
888 o.wIcons: h.gStruct
889 o.wMousePtr: c.wMousePtr
890 o.wMousePtr: libs:steel.h.Steel
891 o.wMousePtr: libs:steel.h.wimp
892 o.wMousePtr: libs:steel.h.wimpstruct
893 o.wMousePtr: libs:steel.h.os
894 o.wMousePtr: C:h.kernel
895 o.wMousePtr: libs:steel.h.sprite
896 o.wMousePtr: libs:steel.h.wimpt
897 o.wMousePtr: libs:steel.h.win
898 o.wMousePtr: libs:steel.h.event
899 o.wMousePtr: libs:steel.h.menu
900 o.wMousePtr: libs:steel.h.ibicon
901 o.wMousePtr: libs:steel.h.res
902 o.wMousePtr: libs:steel.h.resspr
903 o.wMousePtr: libs:steel.h.template
904 o.wMousePtr: libs:steel.h.dbox
905 o.wMousePtr: libs:steel.h.mem
906 o.wMousePtr: libs:steel.h.visdelay
907 o.wMousePtr: libs:steel.h.help
908 o.wMousePtr: libs:steel.h.exception
909 o.wMousePtr: libs:h.dll
910 o.wMousePtr: libs:steel.h.msgs
911 o.wMousePtr: libs:steel.h.utils
912 o.wMousePtr: libs:steel.h.stddbox
913 o.wMousePtr: libs:steel.h.xfersend
914 o.wMousePtr: libs:steel.h.werr
915 o.wMousePtr: libs:h.swis
916 o.wMousePtr: libs:steel.h.pointer
917 o.wMousePtr: h.gStruct
918 o.wMousePtr: h.gPrefs
919 o.wMousePtr: h.glass
920 o.wMousePtr: libs:steel.h.viewer
921 o.wMousePtr: libs:steel.h.pane
922 o.wMousePtr: libs:steel.h.listbox
923 o.wMousePtr: h.gMenus
924 o.wMousePtr: h.gIcons
925 o.wMousePtr: h.glass
926 o.wMousePtr: h.gPrefs
927 o.wMousePtr: h.window
928 o.wMousePtr: h._window
929 o.wMousePtr: h.gStruct
930 o.wRedraw: c.wRedraw
931 o.wRedraw: libs:steel.h.Steel
932 o.wRedraw: libs:steel.h.wimp
933 o.wRedraw: libs:steel.h.wimpstruct
934 o.wRedraw: libs:steel.h.os
935 o.wRedraw: C:h.kernel
936 o.wRedraw: libs:steel.h.sprite
937 o.wRedraw: libs:steel.h.wimpt
938 o.wRedraw: libs:steel.h.win
939 o.wRedraw: libs:steel.h.event
940 o.wRedraw: libs:steel.h.menu
941 o.wRedraw: libs:steel.h.ibicon
942 o.wRedraw: libs:steel.h.res
943 o.wRedraw: libs:steel.h.resspr
944 o.wRedraw: libs:steel.h.template
945 o.wRedraw: libs:steel.h.dbox
946 o.wRedraw: libs:steel.h.mem
947 o.wRedraw: libs:steel.h.visdelay
948 o.wRedraw: libs:steel.h.help
949 o.wRedraw: libs:steel.h.exception
950 o.wRedraw: libs:h.dll
951 o.wRedraw: libs:steel.h.msgs
952 o.wRedraw: libs:steel.h.utils
953 o.wRedraw: libs:steel.h.stddbox
954 o.wRedraw: libs:steel.h.xfersend
955 o.wRedraw: libs:steel.h.werr
956 o.wRedraw: libs:h.swis
957 o.wRedraw: libs:steel.h.interface
958 o.wRedraw: libs:steel.h.sculptrix
959 o.wRedraw: libs:steel.h.bbc
960 o.wRedraw: libs:steel.h.coords
961 o.wRedraw: libs:steel.h.wimp
962 o.wRedraw: h.gStruct
963 o.wRedraw: h.gPrefs
964 o.wRedraw: h.glass
965 o.wRedraw: libs:steel.h.viewer
966 o.wRedraw: libs:steel.h.pane
967 o.wRedraw: libs:steel.h.listbox
968 o.wRedraw: h.gMenus
969 o.wRedraw: h.gIcons
970 o.wRedraw: h.glass
971 o.wRedraw: h.gPrefs
972 o.wRedraw: h.window
973 o.wRedraw: h._window
974 o.wRedraw: h.gStruct
975 o.wRedraw: h.tearEdit
976 o.wRedraw: h.gStruct
977 o.wToolbars: c.wToolbars
978 o.wToolbars: libs:steel.h.Steel
979 o.wToolbars: libs:steel.h.wimp
980 o.wToolbars: libs:steel.h.wimpstruct
981 o.wToolbars: libs:steel.h.os
982 o.wToolbars: C:h.kernel
983 o.wToolbars: libs:steel.h.sprite
984 o.wToolbars: libs:steel.h.wimpt
985 o.wToolbars: libs:steel.h.win
986 o.wToolbars: libs:steel.h.event
987 o.wToolbars: libs:steel.h.menu
988 o.wToolbars: libs:steel.h.ibicon
989 o.wToolbars: libs:steel.h.res
990 o.wToolbars: libs:steel.h.resspr
991 o.wToolbars: libs:steel.h.template
992 o.wToolbars: libs:steel.h.dbox
993 o.wToolbars: libs:steel.h.mem
994 o.wToolbars: libs:steel.h.visdelay
995 o.wToolbars: libs:steel.h.help
996 o.wToolbars: libs:steel.h.exception
997 o.wToolbars: libs:h.dll
998 o.wToolbars: libs:steel.h.msgs
999 o.wToolbars: libs:steel.h.utils
1000 o.wToolbars: libs:steel.h.stddbox
1001 o.wToolbars: libs:steel.h.xfersend
1002 o.wToolbars: libs:steel.h.werr
1003 o.wToolbars: libs:h.swis
1004 o.wToolbars: libs:steel.h.interface
1005 o.wToolbars: libs:steel.h.sculptrix
1006 o.wToolbars: libs:steel.h.buttons
1007 o.wToolbars: libs:steel.h.caretPtr
1008 o.wToolbars: libs:steel.h.pointer
1009 o.wToolbars: libs:steel.h.flex
1010 o.wToolbars: libs:steel.h.akbd
1011 o.wToolbars: libs:steel.h.coords
1012 o.wToolbars: libs:steel.h.wimp
1013 o.wToolbars: libs:steel.h.pointer
1014 o.wToolbars: libs:steel.h.bbc
1015 o.wToolbars: libs:steel.h.colourtran
1016 o.wToolbars: libs:steel.h.font
1017 o.wToolbars: C:h.drawmod
1018 o.wToolbars: libs:steel.h.font
1019 o.wToolbars: h.gStruct
1020 o.wToolbars: h.gPrefs
1021 o.wToolbars: h.glass
1022 o.wToolbars: libs:steel.h.viewer
1023 o.wToolbars: libs:steel.h.pane
1024 o.wToolbars: libs:steel.h.listbox
1025 o.wToolbars: h.gMenus
1026 o.wToolbars: h.gIcons
1027 o.wToolbars: h.glass
1028 o.wToolbars: h.gPrefs
1029 o.wToolbars: h.tfile
1030 o.wToolbars: h.window
1031 o.wToolbars: h._window
1032 o.wToolbars: h.gStruct
1033 o.wToolbars: h.intMsgs
1034 o.wToolbars: h.toolbox
1035 o.wToolbars: h.editIcon
1036 o.wToolbars: h.editWin
1037 o.wToolbars: h.indir
1038 o.wToolbars: h.align
1039 o.wToolbars: h.iconData
1040 o.wToolbars: h.tearEdit
1041 o.wToolbars: h.gStruct
1042 o.wWindows: c.wWindows
1043 o.wWindows: libs:steel.h.Steel
1044 o.wWindows: libs:steel.h.wimp
1045 o.wWindows: libs:steel.h.wimpstruct
1046 o.wWindows: libs:steel.h.os
1047 o.wWindows: C:h.kernel
1048 o.wWindows: libs:steel.h.sprite
1049 o.wWindows: libs:steel.h.wimpt
1050 o.wWindows: libs:steel.h.win
1051 o.wWindows: libs:steel.h.event
1052 o.wWindows: libs:steel.h.menu
1053 o.wWindows: libs:steel.h.ibicon
1054 o.wWindows: libs:steel.h.res
1055 o.wWindows: libs:steel.h.resspr
1056 o.wWindows: libs:steel.h.template
1057 o.wWindows: libs:steel.h.dbox
1058 o.wWindows: libs:steel.h.mem
1059 o.wWindows: libs:steel.h.visdelay
1060 o.wWindows: libs:steel.h.help
1061 o.wWindows: libs:steel.h.exception
1062 o.wWindows: libs:h.dll
1063 o.wWindows: libs:steel.h.msgs
1064 o.wWindows: libs:steel.h.utils
1065 o.wWindows: libs:steel.h.stddbox
1066 o.wWindows: libs:steel.h.xfersend
1067 o.wWindows: libs:steel.h.werr
1068 o.wWindows: libs:h.swis
1069 o.wWindows: libs:steel.h.flex
1070 o.wWindows: h.gStruct
1071 o.wWindows: h.gPrefs
1072 o.wWindows: h.glass
1073 o.wWindows: libs:steel.h.viewer
1074 o.wWindows: libs:steel.h.pane
1075 o.wWindows: libs:steel.h.listbox
1076 o.wWindows: h.gMenus
1077 o.wWindows: h.gIcons
1078 o.wWindows: h.glass
1079 o.wWindows: h.tfile
1080 o.wWindows: h.window
1081 o.wWindows: h._window
1082 o.wWindows: h.gStruct
1083 o.wWindows: h.editWin
1084 o.wWinEvent: c.wWinEvent
1085 o.wWinEvent: libs:steel.h.Steel
1086 o.wWinEvent: libs:steel.h.wimp
1087 o.wWinEvent: libs:steel.h.wimpstruct
1088 o.wWinEvent: libs:steel.h.os
1089 o.wWinEvent: C:h.kernel
1090 o.wWinEvent: libs:steel.h.sprite
1091 o.wWinEvent: libs:steel.h.wimpt
1092 o.wWinEvent: libs:steel.h.win
1093 o.wWinEvent: libs:steel.h.event
1094 o.wWinEvent: libs:steel.h.menu
1095 o.wWinEvent: libs:steel.h.ibicon
1096 o.wWinEvent: libs:steel.h.res
1097 o.wWinEvent: libs:steel.h.resspr
1098 o.wWinEvent: libs:steel.h.template
1099 o.wWinEvent: libs:steel.h.dbox
1100 o.wWinEvent: libs:steel.h.mem
1101 o.wWinEvent: libs:steel.h.visdelay
1102 o.wWinEvent: libs:steel.h.help
1103 o.wWinEvent: libs:steel.h.exception
1104 o.wWinEvent: libs:h.dll
1105 o.wWinEvent: libs:steel.h.msgs
1106 o.wWinEvent: libs:steel.h.utils
1107 o.wWinEvent: libs:steel.h.stddbox
1108 o.wWinEvent: libs:steel.h.xfersend
1109 o.wWinEvent: libs:steel.h.werr
1110 o.wWinEvent: libs:h.swis
1111 o.wWinEvent: libs:steel.h.interface
1112 o.wWinEvent: libs:steel.h.sculptrix
1113 o.wWinEvent: libs:steel.h.caretPtr
1114 o.wWinEvent: libs:steel.h.pointer
1115 o.wWinEvent: libs:steel.h.akbd
1116 o.wWinEvent: libs:steel.h.bbc
1117 o.wWinEvent: h.gStruct
1118 o.wWinEvent: h.gPrefs
1119 o.wWinEvent: h.glass
1120 o.wWinEvent: libs:steel.h.viewer
1121 o.wWinEvent: libs:steel.h.pane
1122 o.wWinEvent: libs:steel.h.listbox
1123 o.wWinEvent: h.gMenus
1124 o.wWinEvent: h.gIcons
1125 o.wWinEvent: h.glass
1126 o.wWinEvent: h.gPrefs
1127 o.wWinEvent: h.tfile
1128 o.wWinEvent: h.window
1129 o.wWinEvent: h._window
1130 o.wWinEvent: h.gStruct
1131 o.wWinEvent: h.intMsgs
1132 o.wWinEvent: h.toolbox
1133 o.wWinEvent: h.editIcon
1134 o.wWinEvent: h.editWin
1135 o.wWinEvent: h.tearEdit
1136 o.wWinEvent: h.gStruct
1137 o.wMenus: c.wMenus
1138 o.wMenus: libs:steel.h.Steel
1139 o.wMenus: libs:steel.h.wimp
1140 o.wMenus: libs:steel.h.wimpstruct
1141 o.wMenus: libs:steel.h.os
1142 o.wMenus: C:h.kernel
1143 o.wMenus: libs:steel.h.sprite
1144 o.wMenus: libs:steel.h.wimpt
1145 o.wMenus: libs:steel.h.win
1146 o.wMenus: libs:steel.h.event
1147 o.wMenus: libs:steel.h.menu
1148 o.wMenus: libs:steel.h.ibicon
1149 o.wMenus: libs:steel.h.res
1150 o.wMenus: libs:steel.h.resspr
1151 o.wMenus: libs:steel.h.template
1152 o.wMenus: libs:steel.h.dbox
1153 o.wMenus: libs:steel.h.mem
1154 o.wMenus: libs:steel.h.visdelay
1155 o.wMenus: libs:steel.h.help
1156 o.wMenus: libs:steel.h.exception
1157 o.wMenus: libs:h.dll
1158 o.wMenus: libs:steel.h.msgs
1159 o.wMenus: libs:steel.h.utils
1160 o.wMenus: libs:steel.h.stddbox
1161 o.wMenus: libs:steel.h.xfersend
1162 o.wMenus: libs:steel.h.werr
1163 o.wMenus: libs:h.swis
1164 o.wMenus: libs:steel.h.buttons
1165 o.wMenus: libs:steel.h.choices
1166 o.wMenus: libs:steel.h.bbc
1167 o.wMenus: libs:steel.h.buffer
1168 o.wMenus: libs:steel.h.tearoff
1169 o.wMenus: h.gStruct
1170 o.wMenus: h.gPrefs
1171 o.wMenus: h.glass
1172 o.wMenus: libs:steel.h.viewer
1173 o.wMenus: libs:steel.h.pane
1174 o.wMenus: libs:steel.h.listbox
1175 o.wMenus: h.gMenus
1176 o.wMenus: h.gIcons
1177 o.wMenus: h.glass
1178 o.wMenus: h.gPrefs
1179 o.wMenus: h.tfile
1180 o.wMenus: h.window
1181 o.wMenus: h._window
1182 o.wMenus: h.gStruct
1183 o.wMenus: h.editIcon
1184 o.wMenus: h.editWin
1185 o.wMenus: h.align
1186 o.wMenus: h.iconData
1187 o.wMenus: h.tearEdit
1188 o.wMenus: h.gStruct