# # Makefile # # © 1998 Straylight/Edgeware # #----- Licensing note ------------------------------------------------------- # # This makefile is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This makefile is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this makefile. If not, write to the Free Software Foundation, # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #----- Compilation flags ---------------------------------------------------- # --- Uncomment to use the C4 tools --- # OLD = o- # --- C compilation --- CC = $(OLD)cc -c -o $@ CFLAGS = -depend !Depend -throwback -ffah -Jlibs: -JC: COMPILE = $(CC) $(CFLAGS) # --- Assembling --- AS = $(OLD)objasm -quit -to $@ ASFLAGS = -stamp -depend !Depend -throwback ASSEMBLE = $(AS) $(ASFLAGS) -from BAS = basasm # --- Linking --- LD = $(OLD)link -o $@ LD_APP = $(LD) -aif LD_UTIL = $(LD) -bin -base 0 LD_MOD = $(LD) -bin -base 0 LD_BIN = $(LD) -bin -base 0 LD_DLL = $(LD) -rmf LD_AOF = $(LD) -aof # --- Making libraries --- AR = $(OLD)libfile -o CDLL = cdll # --- Setting file types --- SET_APP = SetType $@ FF8 SET_MOD = SetType $@ FFA SET_UTIL = SetType $@ FFC SET_DLL = SetType $@ FFD # --- Other maintenance things --- RM = ssrclean INSTALL = inst SETDATE = setdate SQUEEZE = squeeze $@ DATE = %zdy %mo %ce%yr MODDATE = %dy %m3 %ce%yr CRIGHT = © %ce%yr Straylight FIXLINK = fixlink $@ #----- Default rules -------------------------------------------------------- .SUFFIXES: .o .do .c .s .bs .c.o: $(COMPILE) $< .s.o: $(ASSEMBLE) $< .c.do: $(COMPILE) -zM -D_DLL $< .s.do: $(ASSEMBLE) $< .bs.o: $(BAS) $< $@ #----- Object files --------------------------------------------------------- # --- Maintenance note --- # # The list of object files is duplicated. I don't really care, because I'm # not expecting to have to fiddle with anything here. If you want anything # changing, do it yourself. That's what Free software is about. # --- Dynamic library components --- DLLOBJ = \ do.bbc do.colourtran do.font do.interface do.os do.print \ do.sculptrix do.sprite do.wimpext do.wimp_dll \ do.buffer do.calltrace do.exception do.utils do.vsscanf \ do.akbd do.coords do.keystring \ do.alarm do.blinkc do.caretptr do.pointer do.visdelay \ do.event do.help do.pane do.wimpt do.win \ do.baricon do.ibicon do.listbox do.viewer \ do.buttons do.dbox do.fileicon do.nopoll do.saveas \ do.stddbox do.tcol do.werr \ do.choices do.prefs \ do.creator do.fontmenu do.menu do.tearoff libs:tearsupt.o.tearsupt \ do.msgs do.res do.resspr do.template \ do.fastMove do.flex_dll do.heap_dll do.mem \ do.xferrecv do.xfersend # --- Static library components --- STATOBJ = \ o.bbc o.colourtran o.font o.interface o.os o.print \ o.sculptrix o.sprite o.wimpext o.wimp_stat \ o.buffer o.calltrace o.exception o.utils o.vsscanf \ o.akbd o.coords o.keystring \ o.alarm o.blinkc o.caretptr o.pointer o.visdelay \ o.event o.help o.pane o.wimpt o.win \ o.baricon o.ibicon o.listbox o.viewer \ o.buttons o.dbox o.fileicon o.nopoll o.saveas \ o.stddbox o.tcol o.werr \ o.choices o.prefs \ o.crc o.crc32 \ o.creator o.fontmenu o.menu o.tearoff libs:tearsupt.o.tearsupt \ o.scroller o.xproginfo \ o.msgs o.res o.resspr o.template \ o.fastMove o.flex_stat o.heap_stat o.mem \ o.xferrecv o.xfersend #----- Interface targets ---------------------------------------------------- # --- Main target --- all: dll.Steel lib.steel lib.steeldll # --- Installing the libraries --- install: dll.Steel cdir .Straylight $(INSTALL) dll.Steel .Straylight # --- Cleansing the build tree --- clean: -$(RM) o.* do.* lib.* dll.* dl.* ds.* #----- Building the libraries ----------------------------------------------- # --- Static library --- lib.steel: $(STATOBJ) test -file lib.steel -exists -else "$(AR) -c lib.steel" $(AR) -i lib.steel $? # --- Dynamic library --- do.steel: $(DLLOBJ) test -file do.steel -exists -else "$(AR) -c do.steel" $(AR) -i do.steel $? lib.steeldll: ds.steel $(AR) -c lib.steeldll ds.steel dh.steel ds.steel: def.steel do.steel $(CDLL) def.steel ds.steel dh.steel DLL_LDADD = libs:o.swiv libs:o.dstubs libs:o.dlllib dll.steel: dh.steel do.steel $(DLL_LDADD) $(LD_DLL) dh.steel do.steel $(DLL_LDADD) $(SET_DLL) #----- Dynamic dependencies ------------------------------------------------- # Dynamic dependencies: o.bbc: s.bbc o.bbc: libs:header o.bbc: libs:swis o.colourtran: s.colourtran o.colourtran: libs:header o.colourtran: libs:swis o.font: c.font o.font: C:h.stddef o.font: h.os o.font: C:h.kernel o.font: C:h.trace o.font: h.font o.font: C:h.drawmod o.interface: c.interface o.interface: libs:h.stdio o.interface: libs:h.swiv o.interface: C:h.kernel o.interface: h.os o.interface: h.wimp o.interface: h.wimpstruct o.interface: h.sprite o.interface: libs:h.swis o.interface: h.pointer o.interface: h.interface o.interface: h.visdelay o.os: s.os o.os: libs:header o.os: libs:swis o.os: libs:s.swihack o.print: c.print o.print: h.os o.print: C:h.kernel o.print: C:h.print o.sculptrix: s.sculptrix o.sculptrix: libs:header o.sculptrix: libs:swis o.sprite: c.sprite o.sprite: C:h.stddef o.sprite: h.os o.sprite: C:h.kernel o.sprite: h.sprite o.wimpext: s.wimpext o.wimp_stat: s.wimp_stat o.wimp_stat: libs:header o.wimp_stat: libs:SWIs o.wimp_stat: s.wimp_main o.buffer: c.buffer o.buffer: h.buffer o.calltrace: s.calltrace o.calltrace: libs:header o.calltrace: libs:swis o.exception: c.exception o.exception: C:h.stdarg o.exception: libs:h.stdio o.exception: C:h.stdlib o.exception: h.msgs o.exception: h.exception o.exception: C:h.setjmp o.exception: libs:h.dll o.exception: libs:h.os o.exception: C:h.kernel o.exception: libs:h.wimp o.exception: libs:h.wimpstruct o.exception: libs:h.sprite o.exception: h.wimpt o.exception: h.werr o.exception: h.visdelay o.utils: c.utils o.utils: libs:h.stdio o.utils: C:h.string o.utils: libs:h.ctype o.utils: h.utils o.utils: h.os o.utils: C:h.kernel o.utils: h.os o.utils: h.werr o.utils: h.wimpt o.utils: h.wimp o.utils: h.wimpstruct o.utils: h.sprite o.utils: libs:h.swiv o.utils: libs:h.swis o.utils: h.buffer o.vsscanf: c.vsscanf o.vsscanf: libs:h.stdio o.vsscanf: C:h.stdarg o.vsscanf: C:h.stdlib o.vsscanf: libs:h.ctype o.vsscanf: h.vsscanf o.akbd: c.akbd o.akbd: h.os o.akbd: C:h.kernel o.akbd: h.akbd o.akbd: h.bbc o.coords: s.coords o.coords: libs:header o.keystring: c.keystring o.keystring: h.akbd o.keystring: h.msgs o.keystring: h.keyString o.keystring: h.buffer o.keystring: C:h.string o.keystring: libs:h.stdio o.alarm: c.alarm o.alarm: h.alarm o.alarm: h.mem o.alarm: h.werr o.alarm: h.msgs o.alarm: h.os o.alarm: C:h.kernel o.alarm: libs:h.swiv o.alarm: libs:h.swis o.blinkc: c.blinkc o.blinkc: h.wimp o.blinkc: h.wimpstruct o.blinkc: h.os o.blinkc: C:h.kernel o.blinkc: h.sprite o.blinkc: h.wimpt o.blinkc: h.os o.blinkc: h.blinkC o.blinkc: h.alarm o.blinkc: libs:h.swiv o.blinkc: C:h.stdlib o.blinkc: libs:h.dll o.caretptr: c.caretptr o.caretptr: libs:h.ctype o.caretptr: h.pointer o.caretptr: h.os o.caretptr: C:h.kernel o.caretptr: h.sprite o.caretptr: h.win o.caretptr: h.wimp o.caretptr: h.wimpstruct o.caretptr: h.wimpt o.caretptr: h.wimp o.caretptr: h.os o.caretptr: h.caretptr o.caretptr: h.resspr o.pointer: c.pointer o.pointer: libs:h.stdio o.pointer: h.os o.pointer: C:h.kernel o.pointer: h.sprite o.pointer: libs:h.swis o.pointer: h.wimpt o.pointer: h.wimp o.pointer: h.wimpstruct o.pointer: h.pointer o.visdelay: c.visdelay o.visdelay: h.visdelay o.visdelay: h.os o.visdelay: C:h.kernel o.visdelay: libs:h.swiv o.visdelay: libs:h.swis o.visdelay: h.wimpt o.visdelay: h.wimp o.visdelay: h.wimpstruct o.visdelay: h.sprite o.visdelay: C:h.stdlib o.visdelay: libs:h.dll o.event: c.event o.event: C:h.stdlib o.event: C:h.string o.event: h.event o.event: h.wimp o.event: h.wimpstruct o.event: h.os o.event: C:h.kernel o.event: h.sprite o.event: h.menu o.event: h.wimpt o.event: h.win o.event: h.menu o.event: h.msgs o.event: h.werr o.event: h.alarm o.event: h.mem o.event: libs:h.swis o.event: h.dbox o.help: c.help o.help: h.wimp o.help: h.wimpstruct o.help: h.os o.help: C:h.kernel o.help: h.sprite o.help: h.wimpt o.help: h.help o.help: h.msgs o.help: h.werr o.help: C:h.string o.help: C:h.stdarg o.help: libs:h.stdio o.pane: c.pane o.pane: h.wimp o.pane: h.wimpstruct o.pane: h.os o.pane: C:h.kernel o.pane: h.sprite o.pane: h.wimpt o.pane: h.pane o.pane: h.listbox o.pane: h.werr o.pane: h.msgs o.pane: h.mem o.pane: h.win o.pane: C:h.stdlib o.wimpt: c.wimpt o.wimpt: libs:h.stdio o.wimpt: C:h.stdlib o.wimpt: C:h.stdarg o.wimpt: C:h.signal o.wimpt: C:h.string o.wimpt: libs:h.dll o.wimpt: libs:h.os o.wimpt: C:h.kernel o.wimpt: libs:h.wimp o.wimpt: libs:h.wimpstruct o.wimpt: libs:h.sprite o.wimpt: libs:h.swis o.wimpt: C:h.kernel o.wimpt: h.os o.wimpt: h.bbc o.wimpt: h.wimp o.wimpt: h.font o.wimpt: C:h.drawmod o.wimpt: h.wimpt o.wimpt: h.wimpt o.wimpt: h.werr o.wimpt: h.alarm o.wimpt: h.event o.wimpt: h.menu o.wimpt: h.flex o.wimpt: h.msgs o.wimpt: h.interface o.wimpt: h.exception o.wimpt: C:h.setjmp o.wimpt: h.mem o.wimpt: h.visdelay o.wimpt: h.caretptr o.wimpt: h.pointer o.wimpt: h.sculptrix o.wimpt: h.resspr o.win: c.win o.win: C:h.stdarg o.win: C:h.stdlib o.win: C:h.string o.win: libs:h.stdio o.win: C:h.trace o.win: h.os o.win: C:h.kernel o.win: h.wimp o.win: h.wimpstruct o.win: h.sprite o.win: h.werr o.win: h.wimpt o.win: h.event o.win: h.menu o.win: h.msgs o.win: h.mem o.win: h.bbc o.win: libs:h.swis o.win: h.menu o.win: h.win o.baricon: c.baricon o.baricon: h.baricon o.baricon: h.ibicon o.baricon: h.sprite o.baricon: h.os o.baricon: C:h.kernel o.baricon: h.wimp o.baricon: h.wimpstruct o.baricon: h.event o.baricon: h.menu o.ibicon: c.ibicon o.ibicon: h.wimp o.ibicon: h.wimpstruct o.ibicon: h.os o.ibicon: C:h.kernel o.ibicon: h.sprite o.ibicon: h.wimpt o.ibicon: h.os o.ibicon: libs:h.swis o.ibicon: h.bbc o.ibicon: h.win o.ibicon: h.werr o.ibicon: h.ibicon o.ibicon: h.event o.ibicon: h.menu o.ibicon: h.msgs o.ibicon: h.event o.ibicon: h.mem o.ibicon: libs:h.swiv o.ibicon: C:h.string o.ibicon: libs:h.stdio o.ibicon: libs:h.dll o.listbox: c.listbox o.listbox: libs:h.stdio o.listbox: C:h.stdlib o.listbox: C:h.string o.listbox: h.wimp o.listbox: h.wimpstruct o.listbox: h.os o.listbox: C:h.kernel o.listbox: h.sprite o.listbox: h.wimpt o.listbox: h.event o.listbox: h.menu o.listbox: h.win o.listbox: h.template o.listbox: h.listbox o.listbox: h.pane o.listbox: h.werr o.listbox: h.msgs o.listbox: h.bbc o.listbox: h.mem o.listbox: h.utils o.listbox: h.help o.listbox: h.visdelay o.listbox: libs:h.dll o.viewer: c.viewer o.viewer: h.wimp o.viewer: h.wimpstruct o.viewer: h.os o.viewer: C:h.kernel o.viewer: h.sprite o.viewer: h.wimpt o.viewer: h.win o.viewer: h.viewer o.viewer: h.menu o.viewer: h.event o.viewer: h.msgs o.viewer: h.bbc o.viewer: h.werr o.viewer: h.os o.viewer: h.xfersend o.viewer: h.mem o.viewer: h.coords o.viewer: h.wimp o.viewer: h.utils o.viewer: h.help o.viewer: h.fileicon o.viewer: h.buffer o.viewer: libs:h.swis o.viewer: C:h.stdlib o.viewer: C:h.string o.viewer: libs:h.stdio o.viewer: libs:h.dll o.buttons: c.buttons o.buttons: h.wimp o.buttons: h.wimpstruct o.buttons: h.os o.buttons: C:h.kernel o.buttons: h.sprite o.buttons: h.wimpt o.buttons: h.buttons o.buttons: h.dbox o.buttons: h.event o.buttons: h.menu o.buttons: h.bbc o.buttons: h.win o.buttons: h.werr o.buttons: libs:h.stdio o.buttons: C:h.colourtran o.buttons: C:h.font o.buttons: C:h.drawmod o.buttons: h.msgs o.buttons: h.mem o.buttons: h.alarm o.buttons: C:h.stdlib o.buttons: C:h.string o.fileicon: c.fileicon o.fileicon: h.fileicon o.fileicon: h.wimp o.fileicon: h.wimpstruct o.fileicon: h.os o.fileicon: C:h.kernel o.fileicon: h.sprite o.fileicon: h.wimp o.fileicon: h.wimpt o.fileicon: h.werr o.fileicon: h.msgs o.fileicon: h.buffer o.fileicon: libs:h.stdio o.fileicon: C:h.string o.nopoll: c.nopoll o.nopoll: h.dbox o.nopoll: h.wimp o.nopoll: h.wimpstruct o.nopoll: h.os o.nopoll: C:h.kernel o.nopoll: h.sprite o.nopoll: h.event o.nopoll: h.menu o.nopoll: h.wimpt o.nopoll: h.coords o.nopoll: h.wimp o.nopoll: h.bbc o.nopoll: h.os o.nopoll: h.nopoll o.nopoll: h.interface o.nopoll: h.sculptrix o.nopoll: h.visdelay o.nopoll: h.resspr o.nopoll: libs:h.swiv o.saveas: c.saveas o.saveas: h.wimp o.saveas: h.wimpstruct o.saveas: h.os o.saveas: C:h.kernel o.saveas: h.sprite o.saveas: h.wimpt o.saveas: h.win o.saveas: h.dbox o.saveas: h.event o.saveas: h.menu o.saveas: h.help o.saveas: h.saveas o.saveas: h.xfersend o.saveas: h.fileicon o.saveas: h.stddbox o.saveas: h.msgs o.saveas: h.template o.saveas: h.werr o.stddbox: c.stddbox o.stddbox: h.dbox o.stddbox: h.wimp o.stddbox: h.wimpstruct o.stddbox: h.os o.stddbox: C:h.kernel o.stddbox: h.sprite o.stddbox: h.event o.stddbox: h.menu o.stddbox: h.nopoll o.stddbox: h.bbc o.stddbox: h.stddbox o.stddbox: h.xfersend o.stddbox: h.werr o.stddbox: h.win o.stddbox: h.wimpt o.stddbox: h.msgs o.stddbox: h.saveas o.stddbox: h.help o.stddbox: C:h.stdarg o.stddbox: libs:h.stdio o.stddbox: C:h.string o.tcol: c.tcol o.tcol: h.dbox o.tcol: h.wimp o.tcol: h.wimpstruct o.tcol: h.os o.tcol: C:h.kernel o.tcol: h.sprite o.tcol: h.event o.tcol: h.menu o.tcol: h.buttons o.tcol: h.wimp o.tcol: h.wimpt o.tcol: h.werr o.tcol: h.tcol o.tcol: h.help o.tcol: h.msgs o.tcol: h.mem o.tcol: h.akbd o.tcol: libs:h.stdio o.tcol: C:h.string o.tcol: C:h.stdlib o.werr: c.werr o.werr: h.werr o.werr: h.dbox o.werr: h.wimp o.werr: h.wimpstruct o.werr: h.os o.werr: C:h.kernel o.werr: h.sprite o.werr: h.event o.werr: h.menu o.werr: h.template o.werr: h.nopoll o.werr: h.bbc o.werr: h.wimp o.werr: h.wimpt o.werr: h.win o.werr: h.msgs o.werr: C:h.kernel o.werr: libs:h.swiv o.werr: libs:h.swis o.werr: h.exception o.werr: C:h.setjmp o.werr: libs:h.dll o.werr: h.calltrace o.werr: C:h.stdlib o.werr: C:h.stdarg o.werr: C:h.string o.werr: libs:h.stdio o.choices: c.choices o.choices: C:h.stdlib o.choices: C:h.string o.choices: h.res o.choices: libs:h.stdio o.choices: h.wimpt o.choices: h.wimp o.choices: h.wimpstruct o.choices: h.os o.choices: C:h.kernel o.choices: h.sprite o.choices: h.buffer o.choices: h.choices o.prefs: c.prefs o.prefs: h.prefs o.prefs: libs:h.stdio o.prefs: h.os o.prefs: C:h.kernel o.prefs: h.utils o.prefs: h.msgs o.prefs: h.choices o.prefs: h.res o.prefs: C:h.kernel o.prefs: h.werr o.prefs: libs:h.stdio o.prefs: C:h.string o.prefs: libs:h.ctype o.crc: c.crc o.crc: h.crc o.crc: h.crc32 o.crc: C:h.stddef o.crc: h.os o.crc: C:h.kernel o.crc: h.res o.crc: libs:h.stdio o.crc: h.msgs o.crc: h.werr o.crc: h.wimpt o.crc: h.wimp o.crc: h.wimpstruct o.crc: h.sprite o.crc: libs:h.stdio o.crc: C:h.stdlib o.crc32: s.crc32 o.crc32: libs:header o.crc32: libs:swis o.creator: c.creator o.creator: C:h.stdlib o.creator: C:h.stdarg o.creator: h.steel o.creator: h.wimp o.creator: h.wimpstruct o.creator: h.os o.creator: C:h.kernel o.creator: h.sprite o.creator: h.wimpt o.creator: h.win o.creator: h.event o.creator: h.menu o.creator: h.ibicon o.creator: h.res o.creator: libs:h.stdio o.creator: h.resspr o.creator: h.template o.creator: h.dbox o.creator: h.mem o.creator: h.visdelay o.creator: h.help o.creator: h.exception o.creator: C:h.setjmp o.creator: libs:h.dll o.creator: h.msgs o.creator: h.utils o.creator: h.stddbox o.creator: h.xfersend o.creator: h.werr o.creator: C:h.string o.creator: h.xtearoff o.creator: h.tearoff o.fontmenu: c.fontmenu o.fontmenu: h.wimp o.fontmenu: h.wimpstruct o.fontmenu: h.os o.fontmenu: C:h.kernel o.fontmenu: h.sprite o.fontmenu: h.fontMenu o.fontmenu: h.menu o.fontmenu: h.event o.fontmenu: h.msgs o.fontmenu: h.werr o.fontmenu: h.wimpt o.fontmenu: h.menuExt o.fontmenu: h.buffer o.fontmenu: libs:h.stdio o.fontmenu: h.font o.fontmenu: C:h.drawmod o.fontmenu: h.visdelay o.fontmenu: h.win o.fontmenu: h.utils o.fontmenu: C:h.string o.fontmenu: C:h.stdlib o.menu: c.menu o.menu: h.menu o.menu: h.wimp o.menu: h.wimpstruct o.menu: h.os o.menu: C:h.kernel o.menu: h.sprite o.menu: h.event o.menu: h.mem o.menu: h.wimp o.menu: h.werr o.menu: h.msgs o.menu: h.resspr o.menu: h.event o.menu: h.wimpt o.menu: h.os o.menu: libs:h.swis o.menu: C:h.stdlib o.menu: libs:h.stdio o.menu: C:h.string o.menu: libs:h.dll o.tearoff: c.tearoff o.tearoff: C:h.stdlib o.tearoff: C:h.stdarg o.tearoff: h.steel o.tearoff: h.wimp o.tearoff: h.wimpstruct o.tearoff: h.os o.tearoff: C:h.kernel o.tearoff: h.sprite o.tearoff: h.wimpt o.tearoff: h.win o.tearoff: h.event o.tearoff: h.menu o.tearoff: h.ibicon o.tearoff: h.res o.tearoff: libs:h.stdio o.tearoff: h.resspr o.tearoff: h.template o.tearoff: h.dbox o.tearoff: h.mem o.tearoff: h.visdelay o.tearoff: h.help o.tearoff: h.exception o.tearoff: C:h.setjmp o.tearoff: libs:h.dll o.tearoff: h.msgs o.tearoff: h.utils o.tearoff: h.stddbox o.tearoff: h.xfersend o.tearoff: h.werr o.tearoff: C:h.string o.tearoff: h.os o.tearoff: h.bbc o.tearoff: h.xtearoff o.tearoff: h.tearoff o.tearoff: h.font o.tearoff: C:h.drawmod o.tearoff: libs:h.swis o.tearoff: h.alarm o.tearoff: libs:tearSupt.h.tearSupt o.scroller: c.scroller o.scroller: libs:h.stdio o.scroller: C:h.string o.scroller: C:h.stdlib o.scroller: h.scroller o.scroller: h.wimp o.scroller: h.wimpstruct o.scroller: h.os o.scroller: C:h.kernel o.scroller: h.sprite o.scroller: h.dbox o.scroller: h.event o.scroller: h.menu o.scroller: h.steel o.scroller: h.wimpt o.scroller: h.win o.scroller: h.ibicon o.scroller: h.res o.scroller: h.resspr o.scroller: h.template o.scroller: h.mem o.scroller: h.visdelay o.scroller: h.bbc o.scroller: h.msgs o.scroller: h.werr o.xproginfo: c.xproginfo o.xproginfo: h.steel o.xproginfo: h.wimp o.xproginfo: h.wimpstruct o.xproginfo: h.os o.xproginfo: C:h.kernel o.xproginfo: h.sprite o.xproginfo: h.wimpt o.xproginfo: h.win o.xproginfo: h.event o.xproginfo: h.menu o.xproginfo: h.ibicon o.xproginfo: h.res o.xproginfo: libs:h.stdio o.xproginfo: h.resspr o.xproginfo: h.template o.xproginfo: h.dbox o.xproginfo: h.mem o.xproginfo: h.visdelay o.xproginfo: h.help o.xproginfo: h.exception o.xproginfo: C:h.setjmp o.xproginfo: libs:h.dll o.xproginfo: h.msgs o.xproginfo: h.utils o.xproginfo: h.stddbox o.xproginfo: h.xfersend o.xproginfo: h.werr o.xproginfo: h.scroller o.xproginfo: h.xproginfo o.msgs: c.msgs o.msgs: libs:h.stdio o.msgs: C:h.stdlib o.msgs: C:h.string o.msgs: libs:h.ctype o.msgs: h.os o.msgs: C:h.kernel o.msgs: h.mem o.msgs: h.werr o.msgs: h.res o.msgs: h.msgs o.res: c.res o.res: C:h.string o.res: libs:h.stdio o.res: h.os o.res: C:h.kernel o.res: libs:h.swiv o.res: libs:h.swis o.res: h.wimpt o.res: h.wimp o.res: h.wimpstruct o.res: h.sprite o.res: h.res o.res: h.buffer o.resspr: c.resspr o.resspr: C:h.stdlib o.resspr: h.os o.resspr: C:h.kernel o.resspr: h.resspr o.resspr: h.sprite o.resspr: h.mem o.resspr: h.msgs o.resspr: h.werr o.resspr: h.res o.resspr: libs:h.stdio o.template: c.template o.template: C:h.string o.template: C:h.stdlib o.template: libs:h.stdio o.template: h.os o.template: C:h.kernel o.template: h.wimp o.template: h.wimpstruct o.template: h.sprite o.template: h.utils o.template: h.template o.template: libs:h.dll o.template: h.mem o.template: h.font o.template: C:h.drawmod o.template: h.msgs o.template: h.werr o.template: h.res o.template: h.resspr o.fastMove: s.fastMove o.fastMove: libs:s.fastMove o.fastMove: libs:header o.fastMove: libs:swis o.flex_stat: s.flex_stat o.flex_stat: libs:s.flex o.flex_stat: libs:header o.flex_stat: libs:swis o.flex_stat: libs:sh.flexws o.heap_stat: s.heap_stat o.heap_stat: libs:s.heap o.heap_stat: libs:header o.heap_stat: libs:swis o.heap_stat: libs:sh.heapws o.mem: c.mem o.mem: h.flex o.mem: h.heap o.mem: h.wimpt o.mem: h.wimp o.mem: h.wimpstruct o.mem: h.os o.mem: C:h.kernel o.mem: h.sprite o.mem: h.mem o.mem: C:h.kernel o.mem: h.bbc o.mem: C:h.stdlib o.mem: C:h.string o.mem: libs:h.stdio o.xferrecv: c.xferrecv o.xferrecv: C:h.string o.xferrecv: libs:h.stdio o.xferrecv: C:h.trace o.xferrecv: h.os o.xferrecv: C:h.kernel o.xferrecv: h.bbc o.xferrecv: h.wimp o.xferrecv: h.wimpstruct o.xferrecv: h.sprite o.xferrecv: h.wimpt o.xferrecv: h.win o.xferrecv: h.dbox o.xferrecv: h.event o.xferrecv: h.menu o.xferrecv: C:h.typdat o.xferrecv: h.xfersend o.xferrecv: h.fileicon o.xferrecv: h.werr o.xferrecv: h.menu o.xferrecv: h.event o.xferrecv: h.xferrecv o.xferrecv: h.flex o.xferrecv: h.msgs o.xfersend: c.xfersend o.xfersend: C:h.string o.xfersend: libs:h.stdio o.xfersend: C:h.stdlib o.xfersend: C:h.trace o.xfersend: h.os o.xfersend: C:h.kernel o.xfersend: h.bbc o.xfersend: h.wimp o.xfersend: h.wimpstruct o.xfersend: h.sprite o.xfersend: h.wimpt o.xfersend: h.win o.xfersend: h.dbox o.xfersend: h.event o.xfersend: h.menu o.xfersend: h.xfersend o.xfersend: h.fileicon o.xfersend: h.werr o.xfersend: h.menu o.xfersend: h.event o.xfersend: h.msgs o.xfersend: libs:h.swis do.bbc: s.bbc do.bbc: libs:header do.bbc: libs:swis do.colourtran: s.colourtran do.colourtran: libs:header do.colourtran: libs:swis do.font: c.font do.font: C:h.stddef do.font: h.os do.font: C:h.kernel do.font: C:h.trace do.font: h.font do.font: C:h.drawmod do.interface: c.interface do.interface: libs:h.stdio do.interface: libs:h.swiv do.interface: C:h.kernel do.interface: h.os do.interface: h.wimp do.interface: h.wimpstruct do.interface: h.sprite do.interface: libs:h.swis do.interface: h.pointer do.interface: h.interface do.interface: h.visdelay do.os: s.os do.os: libs:header do.os: libs:swis do.os: libs:s.swihack do.print: c.print do.print: h.os do.print: C:h.kernel do.print: C:h.print do.sculptrix: s.sculptrix do.sculptrix: libs:header do.sculptrix: libs:swis do.sprite: c.sprite do.sprite: C:h.stddef do.sprite: h.os do.sprite: C:h.kernel do.sprite: h.sprite do.wimpext: s.wimpext do.wimp_dll: s.wimp_dll do.wimp_dll: libs:header do.wimp_dll: libs:SWIs do.wimp_dll: s.wimp_main do.buffer: c.buffer do.buffer: h.buffer do.calltrace: s.calltrace do.calltrace: libs:header do.calltrace: libs:swis do.exception: c.exception do.exception: C:h.stdarg do.exception: libs:h.stdio do.exception: C:h.stdlib do.exception: h.msgs do.exception: h.exception do.exception: C:h.setjmp do.exception: libs:h.dll do.exception: libs:h.os do.exception: C:h.kernel do.exception: libs:h.wimp do.exception: libs:h.wimpstruct do.exception: libs:h.sprite do.exception: h.wimpt do.exception: h.werr do.exception: h.visdelay do.utils: c.utils do.utils: libs:h.stdio do.utils: C:h.string do.utils: libs:h.ctype do.utils: h.utils do.utils: h.os do.utils: C:h.kernel do.utils: h.os do.utils: h.werr do.utils: h.wimpt do.utils: h.wimp do.utils: h.wimpstruct do.utils: h.sprite do.utils: libs:h.swiv do.utils: libs:h.swis do.utils: h.buffer do.vsscanf: c.vsscanf do.vsscanf: libs:h.stdio do.vsscanf: C:h.stdarg do.vsscanf: C:h.stdlib do.vsscanf: libs:h.ctype do.vsscanf: h.vsscanf do.akbd: c.akbd do.akbd: h.os do.akbd: C:h.kernel do.akbd: h.akbd do.akbd: h.bbc do.coords: s.coords do.coords: libs:header do.keystring: c.keystring do.keystring: h.akbd do.keystring: h.msgs do.keystring: h.keyString do.keystring: h.buffer do.keystring: C:h.string do.keystring: libs:h.stdio do.alarm: c.alarm do.alarm: h.alarm do.alarm: h.mem do.alarm: h.werr do.alarm: h.msgs do.alarm: h.os do.alarm: C:h.kernel do.alarm: libs:h.swiv do.alarm: libs:h.swis do.blinkc: c.blinkc do.blinkc: h.wimp do.blinkc: h.wimpstruct do.blinkc: h.os do.blinkc: C:h.kernel do.blinkc: h.sprite do.blinkc: h.wimpt do.blinkc: h.os do.blinkc: h.blinkC do.blinkc: h.alarm do.blinkc: libs:h.swiv do.blinkc: C:h.stdlib do.blinkc: libs:h.dll do.caretptr: c.caretptr do.caretptr: libs:h.ctype do.caretptr: h.pointer do.caretptr: h.os do.caretptr: C:h.kernel do.caretptr: h.sprite do.caretptr: h.win do.caretptr: h.wimp do.caretptr: h.wimpstruct do.caretptr: h.wimpt do.caretptr: h.wimp do.caretptr: h.os do.caretptr: h.caretptr do.caretptr: h.resspr do.pointer: c.pointer do.pointer: libs:h.stdio do.pointer: h.os do.pointer: C:h.kernel do.pointer: h.sprite do.pointer: libs:h.swis do.pointer: h.wimpt do.pointer: h.wimp do.pointer: h.wimpstruct do.pointer: h.pointer do.visdelay: c.visdelay do.visdelay: h.visdelay do.visdelay: h.os do.visdelay: C:h.kernel do.visdelay: libs:h.swiv do.visdelay: libs:h.swis do.visdelay: h.wimpt do.visdelay: h.wimp do.visdelay: h.wimpstruct do.visdelay: h.sprite do.visdelay: C:h.stdlib do.visdelay: libs:h.dll do.event: c.event do.event: C:h.stdlib do.event: C:h.string do.event: h.event do.event: h.wimp do.event: h.wimpstruct do.event: h.os do.event: C:h.kernel do.event: h.sprite do.event: h.menu do.event: h.wimpt do.event: h.win do.event: h.menu do.event: h.msgs do.event: h.werr do.event: h.alarm do.event: h.mem do.event: libs:h.swis do.event: h.dbox do.help: c.help do.help: h.wimp do.help: h.wimpstruct do.help: h.os do.help: C:h.kernel do.help: h.sprite do.help: h.wimpt do.help: h.help do.help: h.msgs do.help: h.werr do.help: C:h.string do.help: C:h.stdarg do.help: libs:h.stdio do.pane: c.pane do.pane: h.wimp do.pane: h.wimpstruct do.pane: h.os do.pane: C:h.kernel do.pane: h.sprite do.pane: h.wimpt do.pane: h.pane do.pane: h.listbox do.pane: h.werr do.pane: h.msgs do.pane: h.mem do.pane: h.win do.pane: C:h.stdlib do.wimpt: c.wimpt do.wimpt: libs:h.stdio do.wimpt: C:h.stdlib do.wimpt: C:h.stdarg do.wimpt: C:h.signal do.wimpt: C:h.string do.wimpt: libs:h.dll do.wimpt: libs:h.os do.wimpt: C:h.kernel do.wimpt: libs:h.wimp do.wimpt: libs:h.wimpstruct do.wimpt: libs:h.sprite do.wimpt: libs:h.swis do.wimpt: C:h.kernel do.wimpt: h.os do.wimpt: h.bbc do.wimpt: h.wimp do.wimpt: h.font do.wimpt: C:h.drawmod do.wimpt: h.wimpt do.wimpt: h.wimpt do.wimpt: h.werr do.wimpt: h.alarm do.wimpt: h.event do.wimpt: h.menu do.wimpt: h.flex do.wimpt: h.msgs do.wimpt: h.interface do.wimpt: h.exception do.wimpt: C:h.setjmp do.wimpt: h.mem do.wimpt: h.visdelay do.wimpt: h.caretptr do.wimpt: h.pointer do.wimpt: h.sculptrix do.wimpt: h.resspr do.win: c.win do.win: C:h.stdarg do.win: C:h.stdlib do.win: C:h.string do.win: libs:h.stdio do.win: C:h.trace do.win: h.os do.win: C:h.kernel do.win: h.wimp do.win: h.wimpstruct do.win: h.sprite do.win: h.werr do.win: h.wimpt do.win: h.event do.win: h.menu do.win: h.msgs do.win: h.mem do.win: h.bbc do.win: libs:h.swis do.win: h.menu do.win: h.win do.baricon: c.baricon do.baricon: h.baricon do.baricon: h.ibicon do.baricon: h.sprite do.baricon: h.os do.baricon: C:h.kernel do.baricon: h.wimp do.baricon: h.wimpstruct do.baricon: h.event do.baricon: h.menu do.ibicon: c.ibicon do.ibicon: h.wimp do.ibicon: h.wimpstruct do.ibicon: h.os do.ibicon: C:h.kernel do.ibicon: h.sprite do.ibicon: h.wimpt do.ibicon: h.os do.ibicon: libs:h.swis do.ibicon: h.bbc do.ibicon: h.win do.ibicon: h.werr do.ibicon: h.ibicon do.ibicon: h.event do.ibicon: h.menu do.ibicon: h.msgs do.ibicon: h.event do.ibicon: h.mem do.ibicon: libs:h.swiv do.ibicon: C:h.string do.ibicon: libs:h.stdio do.ibicon: libs:h.dll do.listbox: c.listbox do.listbox: libs:h.stdio do.listbox: C:h.stdlib do.listbox: C:h.string do.listbox: h.wimp do.listbox: h.wimpstruct do.listbox: h.os do.listbox: C:h.kernel do.listbox: h.sprite do.listbox: h.wimpt do.listbox: h.event do.listbox: h.menu do.listbox: h.win do.listbox: h.template do.listbox: h.listbox do.listbox: h.pane do.listbox: h.werr do.listbox: h.msgs do.listbox: h.bbc do.listbox: h.mem do.listbox: h.utils do.listbox: h.help do.listbox: h.visdelay do.listbox: libs:h.dll do.viewer: c.viewer do.viewer: h.wimp do.viewer: h.wimpstruct do.viewer: h.os do.viewer: C:h.kernel do.viewer: h.sprite do.viewer: h.wimpt do.viewer: h.win do.viewer: h.viewer do.viewer: h.menu do.viewer: h.event do.viewer: h.msgs do.viewer: h.bbc do.viewer: h.werr do.viewer: h.os do.viewer: h.xfersend do.viewer: h.mem do.viewer: h.coords do.viewer: h.wimp do.viewer: h.utils do.viewer: h.help do.viewer: h.fileicon do.viewer: h.buffer do.viewer: libs:h.swis do.viewer: C:h.stdlib do.viewer: C:h.string do.viewer: libs:h.stdio do.viewer: libs:h.dll do.buttons: c.buttons do.buttons: h.wimp do.buttons: h.wimpstruct do.buttons: h.os do.buttons: C:h.kernel do.buttons: h.sprite do.buttons: h.wimpt do.buttons: h.buttons do.buttons: h.dbox do.buttons: h.event do.buttons: h.menu do.buttons: h.bbc do.buttons: h.win do.buttons: h.werr do.buttons: libs:h.stdio do.buttons: h.colourtran do.buttons: h.font do.buttons: C:h.drawmod do.buttons: h.msgs do.buttons: h.mem do.buttons: h.alarm do.buttons: C:h.stdlib do.buttons: C:h.string do.fileicon: c.fileicon do.fileicon: h.fileicon do.fileicon: h.wimp do.fileicon: h.wimpstruct do.fileicon: h.os do.fileicon: C:h.kernel do.fileicon: h.sprite do.fileicon: h.wimp do.fileicon: h.wimpt do.fileicon: h.werr do.fileicon: h.msgs do.fileicon: h.buffer do.fileicon: libs:h.stdio do.fileicon: C:h.string do.nopoll: c.nopoll do.nopoll: h.dbox do.nopoll: h.wimp do.nopoll: h.wimpstruct do.nopoll: h.os do.nopoll: C:h.kernel do.nopoll: h.sprite do.nopoll: h.event do.nopoll: h.menu do.nopoll: h.wimpt do.nopoll: h.coords do.nopoll: h.wimp do.nopoll: h.bbc do.nopoll: h.os do.nopoll: h.nopoll do.nopoll: h.interface do.nopoll: h.sculptrix do.nopoll: h.visdelay do.nopoll: h.resspr do.nopoll: libs:h.swiv do.saveas: c.saveas do.saveas: h.wimp do.saveas: h.wimpstruct do.saveas: h.os do.saveas: C:h.kernel do.saveas: h.sprite do.saveas: h.wimpt do.saveas: h.win do.saveas: h.dbox do.saveas: h.event do.saveas: h.menu do.saveas: h.help do.saveas: h.saveas do.saveas: h.xfersend do.saveas: h.fileicon do.saveas: h.stddbox do.saveas: h.msgs do.saveas: h.template do.saveas: h.werr do.stddbox: c.stddbox do.stddbox: h.dbox do.stddbox: h.wimp do.stddbox: h.wimpstruct do.stddbox: h.os do.stddbox: C:h.kernel do.stddbox: h.sprite do.stddbox: h.event do.stddbox: h.menu do.stddbox: h.nopoll do.stddbox: h.bbc do.stddbox: h.stddbox do.stddbox: h.xfersend do.stddbox: h.werr do.stddbox: h.win do.stddbox: h.wimpt do.stddbox: h.msgs do.stddbox: h.saveas do.stddbox: h.help do.stddbox: C:h.stdarg do.stddbox: libs:h.stdio do.stddbox: C:h.string do.tcol: c.tcol do.tcol: h.dbox do.tcol: h.wimp do.tcol: h.wimpstruct do.tcol: h.os do.tcol: C:h.kernel do.tcol: h.sprite do.tcol: h.event do.tcol: h.menu do.tcol: h.buttons do.tcol: h.wimp do.tcol: h.wimpt do.tcol: h.werr do.tcol: h.tcol do.tcol: h.help do.tcol: h.msgs do.tcol: h.mem do.tcol: h.akbd do.tcol: libs:h.stdio do.tcol: C:h.string do.tcol: C:h.stdlib do.werr: c.werr do.werr: h.werr do.werr: h.dbox do.werr: h.wimp do.werr: h.wimpstruct do.werr: h.os do.werr: C:h.kernel do.werr: h.sprite do.werr: h.event do.werr: h.menu do.werr: h.template do.werr: h.nopoll do.werr: h.bbc do.werr: h.wimp do.werr: h.wimpt do.werr: h.win do.werr: h.msgs do.werr: C:h.kernel do.werr: libs:h.swiv do.werr: libs:h.swis do.werr: h.exception do.werr: C:h.setjmp do.werr: libs:h.dll do.werr: h.calltrace do.werr: C:h.stdlib do.werr: C:h.stdarg do.werr: C:h.string do.werr: libs:h.stdio do.choices: c.choices do.choices: C:h.stdlib do.choices: C:h.string do.choices: h.res do.choices: libs:h.stdio do.choices: h.wimpt do.choices: h.wimp do.choices: h.wimpstruct do.choices: h.os do.choices: C:h.kernel do.choices: h.sprite do.choices: h.buffer do.choices: h.choices do.prefs: c.prefs do.prefs: h.prefs do.prefs: libs:h.stdio do.prefs: h.os do.prefs: C:h.kernel do.prefs: h.utils do.prefs: h.msgs do.prefs: h.choices do.prefs: h.res do.prefs: C:h.kernel do.prefs: h.werr do.prefs: libs:h.stdio do.prefs: C:h.string do.prefs: libs:h.ctype do.creator: c.creator do.creator: C:h.stdlib do.creator: C:h.stdarg do.creator: h.steel do.creator: h.wimp do.creator: h.wimpstruct do.creator: h.os do.creator: C:h.kernel do.creator: h.sprite do.creator: h.wimpt do.creator: h.win do.creator: h.event do.creator: h.menu do.creator: h.ibicon do.creator: h.res do.creator: libs:h.stdio do.creator: h.resspr do.creator: h.template do.creator: h.dbox do.creator: h.mem do.creator: h.visdelay do.creator: h.help do.creator: h.exception do.creator: C:h.setjmp do.creator: libs:h.dll do.creator: h.msgs do.creator: h.utils do.creator: h.stddbox do.creator: h.xfersend do.creator: h.werr do.creator: C:h.string do.creator: h.xtearoff do.creator: h.tearoff do.fontmenu: c.fontmenu do.fontmenu: h.wimp do.fontmenu: h.wimpstruct do.fontmenu: h.os do.fontmenu: C:h.kernel do.fontmenu: h.sprite do.fontmenu: h.fontMenu do.fontmenu: h.menu do.fontmenu: h.event do.fontmenu: h.msgs do.fontmenu: h.werr do.fontmenu: h.wimpt do.fontmenu: h.menuExt do.fontmenu: h.buffer do.fontmenu: libs:h.stdio do.fontmenu: h.font do.fontmenu: C:h.drawmod do.fontmenu: h.visdelay do.fontmenu: h.win do.fontmenu: h.utils do.fontmenu: C:h.string do.fontmenu: C:h.stdlib do.menu: c.menu do.menu: h.menu do.menu: h.wimp do.menu: h.wimpstruct do.menu: h.os do.menu: C:h.kernel do.menu: h.sprite do.menu: h.event do.menu: h.mem do.menu: h.wimp do.menu: h.werr do.menu: h.msgs do.menu: h.resspr do.menu: h.event do.menu: h.wimpt do.menu: h.os do.menu: libs:h.swis do.menu: C:h.stdlib do.menu: libs:h.stdio do.menu: C:h.string do.menu: libs:h.dll do.tearoff: c.tearoff do.tearoff: C:h.stdlib do.tearoff: C:h.stdarg do.tearoff: h.steel do.tearoff: h.wimp do.tearoff: h.wimpstruct do.tearoff: h.os do.tearoff: C:h.kernel do.tearoff: h.sprite do.tearoff: h.wimpt do.tearoff: h.win do.tearoff: h.event do.tearoff: h.menu do.tearoff: h.ibicon do.tearoff: h.res do.tearoff: libs:h.stdio do.tearoff: h.resspr do.tearoff: h.template do.tearoff: h.dbox do.tearoff: h.mem do.tearoff: h.visdelay do.tearoff: h.help do.tearoff: h.exception do.tearoff: C:h.setjmp do.tearoff: libs:h.dll do.tearoff: h.msgs do.tearoff: h.utils do.tearoff: h.stddbox do.tearoff: h.xfersend do.tearoff: h.werr do.tearoff: C:h.string do.tearoff: h.os do.tearoff: h.bbc do.tearoff: h.xtearoff do.tearoff: h.tearoff do.tearoff: h.font do.tearoff: C:h.drawmod do.tearoff: libs:h.swis do.tearoff: h.alarm do.tearoff: libs:tearSupt.h.tearSupt do.msgs: c.msgs do.msgs: libs:h.stdio do.msgs: C:h.stdlib do.msgs: C:h.string do.msgs: libs:h.ctype do.msgs: h.os do.msgs: C:h.kernel do.msgs: h.mem do.msgs: h.werr do.msgs: h.res do.msgs: h.msgs do.res: c.res do.res: C:h.string do.res: libs:h.stdio do.res: h.os do.res: C:h.kernel do.res: libs:h.swiv do.res: libs:h.swis do.res: h.wimpt do.res: h.wimp do.res: h.wimpstruct do.res: h.sprite do.res: h.res do.res: h.buffer do.resspr: c.resspr do.resspr: C:h.stdlib do.resspr: h.os do.resspr: C:h.kernel do.resspr: h.resspr do.resspr: h.sprite do.resspr: h.mem do.resspr: h.msgs do.resspr: h.werr do.resspr: h.res do.resspr: libs:h.stdio do.template: c.template do.template: C:h.string do.template: C:h.stdlib do.template: libs:h.stdio do.template: h.os do.template: C:h.kernel do.template: h.wimp do.template: h.wimpstruct do.template: h.sprite do.template: h.utils do.template: h.template do.template: libs:h.dll do.template: h.mem do.template: h.font do.template: C:h.drawmod do.template: h.msgs do.template: h.werr do.template: h.res do.template: h.resspr do.fastMove: s.fastMove do.fastMove: libs:s.fastMove do.fastMove: libs:header do.fastMove: libs:swis do.flex_dll: s.flex_dll do.flex_dll: libs:s.flex do.flex_dll: libs:header do.flex_dll: libs:swis do.flex_dll: libs:sh.flexws do.heap_dll: s.heap_dll do.heap_dll: libs:s.heap do.heap_dll: libs:header do.heap_dll: libs:swis do.heap_dll: libs:sh.heapws do.mem: c.mem do.mem: h.flex do.mem: h.heap do.mem: h.wimpt do.mem: h.wimp do.mem: h.wimpstruct do.mem: h.os do.mem: C:h.kernel do.mem: h.sprite do.mem: h.mem do.mem: C:h.kernel do.mem: h.bbc do.mem: C:h.stdlib do.mem: C:h.string do.mem: libs:h.stdio do.xferrecv: c.xferrecv do.xferrecv: C:h.string do.xferrecv: libs:h.stdio do.xferrecv: C:h.trace do.xferrecv: h.os do.xferrecv: C:h.kernel do.xferrecv: h.bbc do.xferrecv: h.wimp do.xferrecv: h.wimpstruct do.xferrecv: h.sprite do.xferrecv: h.wimpt do.xferrecv: h.win do.xferrecv: h.dbox do.xferrecv: h.event do.xferrecv: h.menu do.xferrecv: C:h.typdat do.xferrecv: h.xfersend do.xferrecv: h.fileicon do.xferrecv: h.werr do.xferrecv: h.menu do.xferrecv: h.event do.xferrecv: h.xferrecv do.xferrecv: h.flex do.xferrecv: h.msgs do.xfersend: c.xfersend do.xfersend: C:h.string do.xfersend: libs:h.stdio do.xfersend: C:h.stdlib do.xfersend: C:h.trace do.xfersend: h.os do.xfersend: C:h.kernel do.xfersend: h.bbc do.xfersend: h.wimp do.xfersend: h.wimpstruct do.xfersend: h.sprite do.xfersend: h.wimpt do.xfersend: h.win do.xfersend: h.dbox do.xfersend: h.event do.xfersend: h.menu do.xfersend: h.xfersend do.xfersend: h.fileicon do.xfersend: h.werr do.xfersend: h.menu do.xfersend: h.event do.xfersend: h.msgs do.xfersend: libs:h.swis o.dbox: c.dbox o.dbox: h.event o.dbox: h.wimp o.dbox: h.wimpstruct o.dbox: h.os o.dbox: C:h.kernel o.dbox: h.sprite o.dbox: h.menu o.dbox: h.wimpt o.dbox: h.wimp o.dbox: h.interface o.dbox: h.sculptrix o.dbox: h.werr o.dbox: h.template o.dbox: h.win o.dbox: h.dbox o.dbox: h.msgs o.dbox: h.bbc o.dbox: h.mem o.dbox: h.akbd o.dbox: h.os o.dbox: libs:h.swiv o.dbox: libs:h.swis o.dbox: h.help o.dbox: h.vsscanf o.dbox: C:h.stdarg o.dbox: C:h.string o.dbox: C:h.stdlib o.dbox: libs:h.stdio o.dbox: C:h.stdarg o.dbox: libs:h.dll do.dbox: c.dbox do.dbox: h.event do.dbox: h.wimp do.dbox: h.wimpstruct do.dbox: h.os do.dbox: C:h.kernel do.dbox: h.sprite do.dbox: h.menu do.dbox: h.wimpt do.dbox: h.wimp do.dbox: h.interface do.dbox: h.sculptrix do.dbox: h.werr do.dbox: h.template do.dbox: h.win do.dbox: h.dbox do.dbox: h.msgs do.dbox: h.bbc do.dbox: h.mem do.dbox: h.akbd do.dbox: h.os do.dbox: libs:h.swiv do.dbox: libs:h.swis do.dbox: h.help do.dbox: h.vsscanf do.dbox: C:h.stdarg do.dbox: C:h.string do.dbox: C:h.stdlib do.dbox: libs:h.stdio do.dbox: C:h.stdarg do.dbox: libs:h.dll