├── .gitignore ├── Amiga ├── Level9.guide ├── amiga.c └── dmakefile ├── COPYING ├── Data └── L9TestSuite │ ├── Makefile │ ├── readme.txt │ ├── ref │ ├── adventure_quest_v1.ref │ ├── adventure_quest_v2.ref │ ├── adventure_quest_v3.ref │ ├── colossal_adventure_v1.ref │ ├── colossal_adventure_v2.ref │ ├── colossal_adventure_v3.ref │ ├── dungeon_adventure_v1.ref │ ├── dungeon_adventure_v2.ref │ ├── dungeon_adventure_v3.ref │ ├── emerald_isle_v2.ref │ ├── erik_the_viking_v2.ref │ ├── gnome_ranger_v4_1.ref │ ├── ingrids_back_v4_1.ref │ ├── knight_orc_v4_1.ref │ ├── lancelot_v4_1.ref │ ├── lords_of_time_v1.ref │ ├── lords_of_time_v2.ref │ ├── price_of_magik_v3.ref │ ├── red_moon_v2.ref │ ├── return_to_eden_v2.ref │ ├── return_to_eden_v3.ref │ ├── scapeghost_v4_1.ref │ ├── snowball_v1.ref │ ├── snowball_v2.ref │ ├── snowball_v3.ref │ ├── time_and_magik_v4_1.ref │ ├── time_and_magik_v4_2.ref │ ├── time_and_magik_v4_3.ref │ └── worm_in_paradise_v3.ref │ ├── scripts │ ├── adventure_quest_v1.txt │ ├── adventure_quest_v2.txt │ ├── adventure_quest_v3.txt │ ├── colossal_adventure_v1.txt │ ├── colossal_adventure_v2.txt │ ├── colossal_adventure_v3.txt │ ├── dungeon_adventure_v1.txt │ ├── dungeon_adventure_v2.txt │ ├── dungeon_adventure_v3.txt │ ├── emerald_isle_v2.txt │ ├── erik_the_viking_v2.txt │ ├── gnome_ranger_v4_1.txt │ ├── ingrids_back_v4_1.txt │ ├── knight_orc_v4_1.txt │ ├── lancelot_v4_1.txt │ ├── lords_of_time_v1.txt │ ├── lords_of_time_v2.txt │ ├── price_of_magik_v3.txt │ ├── red_moon_v2.txt │ ├── return_to_eden_v2.txt │ ├── return_to_eden_v3.txt │ ├── scapeghost_v4_1.txt │ ├── snowball_v1.txt │ ├── snowball_v2.txt │ ├── snowball_v3.txt │ ├── time_and_magik_v4_1.txt │ ├── time_and_magik_v4_2.txt │ ├── time_and_magik_v4_3.txt │ └── worm_in_paradise_v3.txt │ └── src │ └── l9test.c ├── Dos ├── bcc.cfg ├── dos.c └── makefile ├── Dos32 ├── allegro.c ├── allegro.cfg ├── default.fnt ├── font.h ├── keyboard.dat └── makefile ├── Glk ├── Makefile.glk ├── glk.c ├── glk_readme.txt └── level9.hdr ├── Gtk ├── BUGS ├── Makefile ├── NEWS ├── README ├── TODO ├── config.c ├── config.h ├── graphics.c ├── graphics.h ├── gtklevel9.desktop ├── gtklevel9.png ├── gtklevel9.xml ├── gui.c ├── gui.h ├── main.c ├── main.h ├── text.c ├── text.h ├── util.c └── util.h ├── MakeDist.bat ├── README.md ├── Red Moon.png ├── Unix ├── Makefile └── unix-curses.c ├── Win ├── Classlib │ ├── Classlib.vcxproj │ ├── app.cpp │ ├── app.h │ ├── array.cpp │ ├── array.h │ ├── bitmapc.cpp │ ├── bitmapc.h │ ├── button.cpp │ ├── button.h │ ├── cacheini.cpp │ ├── cacheini.h │ ├── colorbtn.cpp │ ├── colorbtn.h │ ├── dark.cpp │ ├── dark.h │ ├── ddewnd.cpp │ ├── ddewnd.h │ ├── dialog.cpp │ ├── dialog.h │ ├── dlgwnd.cpp │ ├── dlgwnd.h │ ├── dll.h │ ├── dpi.cpp │ ├── dpi.h │ ├── edit.cpp │ ├── edit.h │ ├── eval.cpp │ ├── eval.h │ ├── event.cpp │ ├── event.h │ ├── filedlg.cpp │ ├── filedlg.h │ ├── findcol.cpp │ ├── findcol.h │ ├── fname.cpp │ ├── fname.h │ ├── font.cpp │ ├── font.h │ ├── hashwnd.cpp │ ├── hashwnd.h │ ├── inistuff.cpp │ ├── inistuff.h │ ├── keypress.cpp │ ├── keypress.h │ ├── listc.h │ ├── main.cpp │ ├── main.h │ ├── matrix.cpp │ ├── matrix.h │ ├── mdi.cpp │ ├── mdi.h │ ├── misc.cpp │ ├── misc.h │ ├── mywin.h │ ├── numedit.cpp │ ├── numedit.h │ ├── object.cpp │ ├── object.h │ ├── owndrwb.cpp │ ├── owndrwb.h │ ├── parse.cpp │ ├── parse.h │ ├── pointer.h │ ├── printer.cpp │ ├── printer.h │ ├── radgrp.cpp │ ├── radgrp.h │ ├── realedit.cpp │ ├── realedit.h │ ├── statbar.cpp │ ├── statbar.h │ ├── stringc.cpp │ ├── stringc.h │ ├── textwnd.cpp │ ├── textwnd.h │ ├── unitedit.cpp │ ├── unitedit.h │ ├── vectorc.h │ ├── windinfo.cpp │ ├── windinfo.h │ ├── window.cpp │ └── window.h ├── Compile.txt ├── Help │ ├── Level9.css │ ├── Level9.hhc │ ├── Level9.hhp │ ├── archive.htm │ ├── commands.htm │ ├── credits.htm │ ├── formats.htm │ ├── graphics.htm │ ├── history.htm │ └── introduction.htm ├── Lev9win.cpp ├── Level9.ico ├── Level9.manifest ├── Level9.rc ├── Level9.sln ├── Level9.vcxproj └── resource.h ├── bitmap.c ├── generic.c ├── level9.c ├── level9.h ├── level9.txt └── porting.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/.gitignore -------------------------------------------------------------------------------- /Amiga/Level9.guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Amiga/Level9.guide -------------------------------------------------------------------------------- /Amiga/amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Amiga/amiga.c -------------------------------------------------------------------------------- /Amiga/dmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Amiga/dmakefile -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/COPYING -------------------------------------------------------------------------------- /Data/L9TestSuite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/Makefile -------------------------------------------------------------------------------- /Data/L9TestSuite/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/readme.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/adventure_quest_v1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/adventure_quest_v1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/adventure_quest_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/adventure_quest_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/adventure_quest_v3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/adventure_quest_v3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/colossal_adventure_v1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/colossal_adventure_v1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/colossal_adventure_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/colossal_adventure_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/colossal_adventure_v3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/colossal_adventure_v3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/dungeon_adventure_v1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/dungeon_adventure_v1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/dungeon_adventure_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/dungeon_adventure_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/dungeon_adventure_v3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/dungeon_adventure_v3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/emerald_isle_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/emerald_isle_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/erik_the_viking_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/erik_the_viking_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/gnome_ranger_v4_1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/gnome_ranger_v4_1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/ingrids_back_v4_1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/ingrids_back_v4_1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/knight_orc_v4_1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/knight_orc_v4_1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/lancelot_v4_1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/lancelot_v4_1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/lords_of_time_v1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/lords_of_time_v1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/lords_of_time_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/lords_of_time_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/price_of_magik_v3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/price_of_magik_v3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/red_moon_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/red_moon_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/return_to_eden_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/return_to_eden_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/return_to_eden_v3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/return_to_eden_v3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/scapeghost_v4_1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/scapeghost_v4_1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/snowball_v1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/snowball_v1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/snowball_v2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/snowball_v2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/snowball_v3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/snowball_v3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/time_and_magik_v4_1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/time_and_magik_v4_1.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/time_and_magik_v4_2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/time_and_magik_v4_2.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/time_and_magik_v4_3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/time_and_magik_v4_3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/ref/worm_in_paradise_v3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/ref/worm_in_paradise_v3.ref -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/adventure_quest_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/adventure_quest_v1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/adventure_quest_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/adventure_quest_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/adventure_quest_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/adventure_quest_v3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/colossal_adventure_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/colossal_adventure_v1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/colossal_adventure_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/colossal_adventure_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/colossal_adventure_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/colossal_adventure_v3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/dungeon_adventure_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/dungeon_adventure_v1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/dungeon_adventure_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/dungeon_adventure_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/dungeon_adventure_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/dungeon_adventure_v3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/emerald_isle_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/emerald_isle_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/erik_the_viking_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/erik_the_viking_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/gnome_ranger_v4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/gnome_ranger_v4_1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/ingrids_back_v4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/ingrids_back_v4_1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/knight_orc_v4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/knight_orc_v4_1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/lancelot_v4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/lancelot_v4_1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/lords_of_time_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/lords_of_time_v1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/lords_of_time_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/lords_of_time_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/price_of_magik_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/price_of_magik_v3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/red_moon_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/red_moon_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/return_to_eden_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/return_to_eden_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/return_to_eden_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/return_to_eden_v3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/scapeghost_v4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/scapeghost_v4_1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/snowball_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/snowball_v1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/snowball_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/snowball_v2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/snowball_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/snowball_v3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/time_and_magik_v4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/time_and_magik_v4_1.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/time_and_magik_v4_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/time_and_magik_v4_2.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/time_and_magik_v4_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/time_and_magik_v4_3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/scripts/worm_in_paradise_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/scripts/worm_in_paradise_v3.txt -------------------------------------------------------------------------------- /Data/L9TestSuite/src/l9test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Data/L9TestSuite/src/l9test.c -------------------------------------------------------------------------------- /Dos/bcc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos/bcc.cfg -------------------------------------------------------------------------------- /Dos/dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos/dos.c -------------------------------------------------------------------------------- /Dos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos/makefile -------------------------------------------------------------------------------- /Dos32/allegro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos32/allegro.c -------------------------------------------------------------------------------- /Dos32/allegro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos32/allegro.cfg -------------------------------------------------------------------------------- /Dos32/default.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos32/default.fnt -------------------------------------------------------------------------------- /Dos32/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos32/font.h -------------------------------------------------------------------------------- /Dos32/keyboard.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos32/keyboard.dat -------------------------------------------------------------------------------- /Dos32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Dos32/makefile -------------------------------------------------------------------------------- /Glk/Makefile.glk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Glk/Makefile.glk -------------------------------------------------------------------------------- /Glk/glk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Glk/glk.c -------------------------------------------------------------------------------- /Glk/glk_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Glk/glk_readme.txt -------------------------------------------------------------------------------- /Glk/level9.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Glk/level9.hdr -------------------------------------------------------------------------------- /Gtk/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/BUGS -------------------------------------------------------------------------------- /Gtk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/Makefile -------------------------------------------------------------------------------- /Gtk/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/NEWS -------------------------------------------------------------------------------- /Gtk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/README -------------------------------------------------------------------------------- /Gtk/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/TODO -------------------------------------------------------------------------------- /Gtk/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/config.c -------------------------------------------------------------------------------- /Gtk/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/config.h -------------------------------------------------------------------------------- /Gtk/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/graphics.c -------------------------------------------------------------------------------- /Gtk/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/graphics.h -------------------------------------------------------------------------------- /Gtk/gtklevel9.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/gtklevel9.desktop -------------------------------------------------------------------------------- /Gtk/gtklevel9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/gtklevel9.png -------------------------------------------------------------------------------- /Gtk/gtklevel9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/gtklevel9.xml -------------------------------------------------------------------------------- /Gtk/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/gui.c -------------------------------------------------------------------------------- /Gtk/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/gui.h -------------------------------------------------------------------------------- /Gtk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/main.c -------------------------------------------------------------------------------- /Gtk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/main.h -------------------------------------------------------------------------------- /Gtk/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/text.c -------------------------------------------------------------------------------- /Gtk/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/text.h -------------------------------------------------------------------------------- /Gtk/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/util.c -------------------------------------------------------------------------------- /Gtk/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Gtk/util.h -------------------------------------------------------------------------------- /MakeDist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/MakeDist.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/README.md -------------------------------------------------------------------------------- /Red Moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Red Moon.png -------------------------------------------------------------------------------- /Unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Unix/Makefile -------------------------------------------------------------------------------- /Unix/unix-curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Unix/unix-curses.c -------------------------------------------------------------------------------- /Win/Classlib/Classlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/Classlib.vcxproj -------------------------------------------------------------------------------- /Win/Classlib/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/app.cpp -------------------------------------------------------------------------------- /Win/Classlib/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/app.h -------------------------------------------------------------------------------- /Win/Classlib/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/array.cpp -------------------------------------------------------------------------------- /Win/Classlib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/array.h -------------------------------------------------------------------------------- /Win/Classlib/bitmapc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/bitmapc.cpp -------------------------------------------------------------------------------- /Win/Classlib/bitmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/bitmapc.h -------------------------------------------------------------------------------- /Win/Classlib/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/button.cpp -------------------------------------------------------------------------------- /Win/Classlib/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/button.h -------------------------------------------------------------------------------- /Win/Classlib/cacheini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/cacheini.cpp -------------------------------------------------------------------------------- /Win/Classlib/cacheini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/cacheini.h -------------------------------------------------------------------------------- /Win/Classlib/colorbtn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/colorbtn.cpp -------------------------------------------------------------------------------- /Win/Classlib/colorbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/colorbtn.h -------------------------------------------------------------------------------- /Win/Classlib/dark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dark.cpp -------------------------------------------------------------------------------- /Win/Classlib/dark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dark.h -------------------------------------------------------------------------------- /Win/Classlib/ddewnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/ddewnd.cpp -------------------------------------------------------------------------------- /Win/Classlib/ddewnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/ddewnd.h -------------------------------------------------------------------------------- /Win/Classlib/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dialog.cpp -------------------------------------------------------------------------------- /Win/Classlib/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dialog.h -------------------------------------------------------------------------------- /Win/Classlib/dlgwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dlgwnd.cpp -------------------------------------------------------------------------------- /Win/Classlib/dlgwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dlgwnd.h -------------------------------------------------------------------------------- /Win/Classlib/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dll.h -------------------------------------------------------------------------------- /Win/Classlib/dpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dpi.cpp -------------------------------------------------------------------------------- /Win/Classlib/dpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/dpi.h -------------------------------------------------------------------------------- /Win/Classlib/edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/edit.cpp -------------------------------------------------------------------------------- /Win/Classlib/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/edit.h -------------------------------------------------------------------------------- /Win/Classlib/eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/eval.cpp -------------------------------------------------------------------------------- /Win/Classlib/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/eval.h -------------------------------------------------------------------------------- /Win/Classlib/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/event.cpp -------------------------------------------------------------------------------- /Win/Classlib/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/event.h -------------------------------------------------------------------------------- /Win/Classlib/filedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/filedlg.cpp -------------------------------------------------------------------------------- /Win/Classlib/filedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/filedlg.h -------------------------------------------------------------------------------- /Win/Classlib/findcol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/findcol.cpp -------------------------------------------------------------------------------- /Win/Classlib/findcol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/findcol.h -------------------------------------------------------------------------------- /Win/Classlib/fname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/fname.cpp -------------------------------------------------------------------------------- /Win/Classlib/fname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/fname.h -------------------------------------------------------------------------------- /Win/Classlib/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/font.cpp -------------------------------------------------------------------------------- /Win/Classlib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/font.h -------------------------------------------------------------------------------- /Win/Classlib/hashwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/hashwnd.cpp -------------------------------------------------------------------------------- /Win/Classlib/hashwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/hashwnd.h -------------------------------------------------------------------------------- /Win/Classlib/inistuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/inistuff.cpp -------------------------------------------------------------------------------- /Win/Classlib/inistuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/inistuff.h -------------------------------------------------------------------------------- /Win/Classlib/keypress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/keypress.cpp -------------------------------------------------------------------------------- /Win/Classlib/keypress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/keypress.h -------------------------------------------------------------------------------- /Win/Classlib/listc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/listc.h -------------------------------------------------------------------------------- /Win/Classlib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/main.cpp -------------------------------------------------------------------------------- /Win/Classlib/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/main.h -------------------------------------------------------------------------------- /Win/Classlib/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/matrix.cpp -------------------------------------------------------------------------------- /Win/Classlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/matrix.h -------------------------------------------------------------------------------- /Win/Classlib/mdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/mdi.cpp -------------------------------------------------------------------------------- /Win/Classlib/mdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/mdi.h -------------------------------------------------------------------------------- /Win/Classlib/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/misc.cpp -------------------------------------------------------------------------------- /Win/Classlib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/misc.h -------------------------------------------------------------------------------- /Win/Classlib/mywin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/mywin.h -------------------------------------------------------------------------------- /Win/Classlib/numedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/numedit.cpp -------------------------------------------------------------------------------- /Win/Classlib/numedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/numedit.h -------------------------------------------------------------------------------- /Win/Classlib/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/object.cpp -------------------------------------------------------------------------------- /Win/Classlib/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/object.h -------------------------------------------------------------------------------- /Win/Classlib/owndrwb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/owndrwb.cpp -------------------------------------------------------------------------------- /Win/Classlib/owndrwb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/owndrwb.h -------------------------------------------------------------------------------- /Win/Classlib/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/parse.cpp -------------------------------------------------------------------------------- /Win/Classlib/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/parse.h -------------------------------------------------------------------------------- /Win/Classlib/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/pointer.h -------------------------------------------------------------------------------- /Win/Classlib/printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/printer.cpp -------------------------------------------------------------------------------- /Win/Classlib/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/printer.h -------------------------------------------------------------------------------- /Win/Classlib/radgrp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/radgrp.cpp -------------------------------------------------------------------------------- /Win/Classlib/radgrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/radgrp.h -------------------------------------------------------------------------------- /Win/Classlib/realedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/realedit.cpp -------------------------------------------------------------------------------- /Win/Classlib/realedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/realedit.h -------------------------------------------------------------------------------- /Win/Classlib/statbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/statbar.cpp -------------------------------------------------------------------------------- /Win/Classlib/statbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/statbar.h -------------------------------------------------------------------------------- /Win/Classlib/stringc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/stringc.cpp -------------------------------------------------------------------------------- /Win/Classlib/stringc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/stringc.h -------------------------------------------------------------------------------- /Win/Classlib/textwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/textwnd.cpp -------------------------------------------------------------------------------- /Win/Classlib/textwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/textwnd.h -------------------------------------------------------------------------------- /Win/Classlib/unitedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/unitedit.cpp -------------------------------------------------------------------------------- /Win/Classlib/unitedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/unitedit.h -------------------------------------------------------------------------------- /Win/Classlib/vectorc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/vectorc.h -------------------------------------------------------------------------------- /Win/Classlib/windinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/windinfo.cpp -------------------------------------------------------------------------------- /Win/Classlib/windinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/windinfo.h -------------------------------------------------------------------------------- /Win/Classlib/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/window.cpp -------------------------------------------------------------------------------- /Win/Classlib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Classlib/window.h -------------------------------------------------------------------------------- /Win/Compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Compile.txt -------------------------------------------------------------------------------- /Win/Help/Level9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/Level9.css -------------------------------------------------------------------------------- /Win/Help/Level9.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/Level9.hhc -------------------------------------------------------------------------------- /Win/Help/Level9.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/Level9.hhp -------------------------------------------------------------------------------- /Win/Help/archive.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/archive.htm -------------------------------------------------------------------------------- /Win/Help/commands.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/commands.htm -------------------------------------------------------------------------------- /Win/Help/credits.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/credits.htm -------------------------------------------------------------------------------- /Win/Help/formats.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/formats.htm -------------------------------------------------------------------------------- /Win/Help/graphics.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/graphics.htm -------------------------------------------------------------------------------- /Win/Help/history.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/history.htm -------------------------------------------------------------------------------- /Win/Help/introduction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Help/introduction.htm -------------------------------------------------------------------------------- /Win/Lev9win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Lev9win.cpp -------------------------------------------------------------------------------- /Win/Level9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Level9.ico -------------------------------------------------------------------------------- /Win/Level9.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Level9.manifest -------------------------------------------------------------------------------- /Win/Level9.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Level9.rc -------------------------------------------------------------------------------- /Win/Level9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Level9.sln -------------------------------------------------------------------------------- /Win/Level9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/Level9.vcxproj -------------------------------------------------------------------------------- /Win/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/Win/resource.h -------------------------------------------------------------------------------- /bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/bitmap.c -------------------------------------------------------------------------------- /generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/generic.c -------------------------------------------------------------------------------- /level9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/level9.c -------------------------------------------------------------------------------- /level9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/level9.h -------------------------------------------------------------------------------- /level9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/level9.txt -------------------------------------------------------------------------------- /porting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidKinder/Level9/HEAD/porting.txt --------------------------------------------------------------------------------