├── .github └── workflows │ └── main.yml ├── .gitmodules ├── MME ├── mmsystem.dll │ ├── COPYING.LIB │ ├── MCI.c │ ├── MMBin.c │ ├── MMIF.c │ ├── Makefile │ ├── MultiMedia.c │ ├── MultiMedia.def │ └── MultiMedia.rc ├── mmsystem.drv │ ├── COPYING.LIB │ └── null │ │ ├── DriverProc.c │ │ ├── IOProc.c │ │ ├── auxMessage.c │ │ ├── joyDriverProc.c │ │ ├── mciDriverProc.c │ │ ├── midMessage.c │ │ ├── modMessage.c │ │ ├── widMessage.c │ │ └── wodMessage.c ├── mmsystem │ ├── COPYING.LIB │ ├── Makedepend.Linux │ ├── Makedepend.linux.bak │ ├── Makefile │ ├── midi.c │ ├── mmaux.c │ ├── mmddk.h │ ├── mmdrv.c │ └── wave.c ├── system.ini └── win.ini ├── README.MD ├── _wcc.cmd ├── _wcc.sh ├── applications ├── _wcc.cmd ├── _wcc.sh ├── calc │ ├── COPYING.LIB │ ├── En.rc │ ├── Es.rc │ ├── Fr.rc │ ├── It.rc │ ├── Nl.rc │ ├── Pt.rc │ ├── Ru.rc │ ├── Si.rc │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ ├── resource.h │ ├── rsrc.rc │ ├── stats.c │ ├── stats.h │ ├── winecalc.c │ └── winecalc.h ├── calendar │ └── .empty ├── cardfile │ └── .empty ├── charmap │ ├── CMakeLists.txt │ ├── COPYING │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── about.c │ ├── charmap.c │ ├── charmap.rc │ ├── lang │ │ ├── bg-BG.rc │ │ ├── ca-ES.rc │ │ ├── cs-CZ.rc │ │ ├── de-DE.rc │ │ ├── el-GR.rc │ │ ├── en-US.rc │ │ ├── es-ES.rc │ │ ├── et-EE.rc │ │ ├── fr-FR.rc │ │ ├── he-IL.rc │ │ ├── id-ID.rc │ │ ├── it-IT.rc │ │ ├── ja-JP.rc │ │ ├── ko-KR.rc │ │ ├── lt-LT.rc │ │ ├── nl-NL.rc │ │ ├── no-NO.rc │ │ ├── pl-PL.rc │ │ ├── pt-BR.rc │ │ ├── ro-RO.rc │ │ ├── ru-RU.rc │ │ ├── sk-SK.rc │ │ ├── sq-AL.rc │ │ ├── sv-SE.rc │ │ ├── tr-TR.rc │ │ ├── uk-UA.rc │ │ ├── zh-CN.rc │ │ ├── zh-HK.rc │ │ └── zh-TW.rc │ ├── lrgcell.c │ ├── makefile │ ├── map.c │ ├── precomp.h │ ├── res │ │ └── charmap.ico │ ├── resource.h │ └── settings.c ├── control │ └── applets │ │ ├── cpl.txt │ │ ├── list.txt │ │ ├── main │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── main.c │ │ └── makefile │ │ └── struct.txt ├── drwatson │ ├── .empty │ └── note.txt ├── makefile ├── mplayer │ └── .empty ├── msd │ ├── ALPHA.DOC │ ├── FILE_ID.DIZ │ ├── IFPCOMON.PAS │ ├── IFPEXTRN.PAS │ ├── IFPGLOBL.PAS │ ├── IFPHELP.PAS │ ├── IFPINIT.PAS │ ├── IFPRUN.PAS │ ├── IFPSCRPT.PAS │ ├── INFOPLUS.ASM │ ├── INFOPLUS.DOC │ ├── INFOPLUS.EXE │ ├── INFOPLUS.HIS │ ├── INFOPLUS.HLP │ ├── INFOPLUS.ICO │ ├── INFOPLUS.OBJ │ ├── INFOPLUS.PAS │ ├── INFOPLUS.PIF │ ├── IP-PIF.DVP │ ├── LICENSE │ ├── MAKEHELP.PAS │ ├── PAGE_00.INF │ ├── PAGE_00.PAS │ ├── PAGE_01.INF │ ├── PAGE_01.PAS │ ├── PAGE_02.INF │ ├── PAGE_02.PAS │ ├── PAGE_03.INF │ ├── PAGE_03.PAS │ ├── PAGE_04.INF │ ├── PAGE_04.PAS │ ├── PAGE_05.INF │ ├── PAGE_05.PAS │ ├── PAGE_06.INF │ ├── PAGE_06.PAS │ ├── PAGE_07.INF │ ├── PAGE_07.PAS │ ├── PAGE_08.INF │ ├── PAGE_08.PAS │ ├── PAGE_09.INF │ ├── PAGE_09.PAS │ ├── PAGE_10.INF │ ├── PAGE_10.PAS │ ├── PAGE_11.INF │ ├── PAGE_11.PAS │ ├── PAGE_12.INF │ ├── PAGE_12.PAS │ ├── PAGE_13.INF │ ├── PAGE_13.PAS │ ├── PAGE_14.INF │ ├── PAGE_14.PAS │ ├── PAGE_15.INF │ ├── PAGE_15.PAS │ ├── PAGE_16.INF │ ├── PAGE_16.PAS │ ├── PAGE_17.INF │ ├── PAGE_17.PAS │ ├── PAGE_18.INF │ ├── PAGE_18.PAS │ ├── PAGE_19.INF │ ├── PAGE_19.PAS │ ├── PAGE_20.INF │ ├── PAGE_20.PAS │ ├── PAGE_21.INF │ ├── PAGE_21.PAS │ ├── PRINTHLP.EXE │ ├── PRINTHLP.PAS │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── ifpcomon.ic │ ├── ifpextrn.ic │ ├── ifpglobl.ic │ ├── ifpinit.ic │ ├── ifprun.ic │ ├── ifpscrpt.ic │ ├── infoplus.c │ ├── makefile │ ├── page_00.ic │ ├── page_01.ic │ ├── page_02.ic │ └── page_21.ic ├── packager │ └── .empty ├── pbrush │ ├── CMakeLists.txt │ ├── common.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── dib.cpp │ ├── dib.h │ ├── drawing.cpp │ ├── drawing.h │ ├── fullscreen.cpp │ ├── fullscreen.h │ ├── globalvar.h │ ├── help │ │ ├── Paint.chm │ │ ├── Paint.hhp │ │ ├── Paint_all_files.hhp │ │ ├── Table of Contents.hhc │ │ ├── airbrush.png │ │ ├── appwindow.png │ │ ├── bezier.png │ │ ├── brush.png │ │ ├── color.png │ │ ├── ellipse.png │ │ ├── fill.png │ │ ├── freesel.png │ │ ├── line.png │ │ ├── palette.png │ │ ├── pen.png │ │ ├── rect.png │ │ ├── rectsel.png │ │ ├── rrect.png │ │ ├── rubber.png │ │ ├── settings.html │ │ ├── settings1.png │ │ ├── settings2.png │ │ ├── settings3.png │ │ ├── settings4.png │ │ ├── settings5.png │ │ ├── settings6.png │ │ ├── shape.png │ │ ├── text.png │ │ ├── toolbox.png │ │ ├── tools.html │ │ ├── usage.html │ │ └── zoom.png │ ├── history.cpp │ ├── history.h │ ├── icons │ │ ├── airbrush_cur.ico │ │ ├── color_cur.ico │ │ ├── fill_cur.ico │ │ ├── fontstoolbar.bmp │ │ ├── horzskew.ico │ │ ├── horzstretch.ico │ │ ├── iconbar.bmp │ │ ├── nontransparent.ico │ │ ├── paint.ico │ │ ├── paint.svg │ │ ├── pen_cur.ico │ │ ├── transparency.xcf │ │ ├── transparent.ico │ │ ├── vertskew.ico │ │ ├── vertstretch.ico │ │ └── zoom_cur.ico │ ├── imgarea.cpp │ ├── imgarea.h │ ├── lang │ │ ├── bg-BG.rc │ │ ├── cs-CZ.rc │ │ ├── de-DE.rc │ │ ├── en-GB.rc │ │ ├── en-US.rc │ │ ├── es-ES.rc │ │ ├── et-EE.rc │ │ ├── eu-ES.rc │ │ ├── fr-FR.rc │ │ ├── he-IL.rc │ │ ├── hu-HU.rc │ │ ├── id-ID.rc │ │ ├── it-IT.rc │ │ ├── ja-JP.rc │ │ ├── nl-NL.rc │ │ ├── no-NO.rc │ │ ├── pl-PL.rc │ │ ├── pt-BR.rc │ │ ├── pt-PT.rc │ │ ├── ro-RO.rc │ │ ├── ru-RU.rc │ │ ├── sk-SK.rc │ │ ├── sq-AL.rc │ │ ├── sv-SE.rc │ │ ├── tr-TR.rc │ │ ├── uk-UA.rc │ │ ├── vi-VN.rc │ │ ├── zh-CN.rc │ │ ├── zh-HK.rc │ │ └── zh-TW.rc │ ├── main.cpp │ ├── miniature.cpp │ ├── miniature.h │ ├── mouse.cpp │ ├── mspaint.exe.manifest │ ├── palette.cpp │ ├── palette.h │ ├── palettemodel.cpp │ ├── palettemodel.h │ ├── precomp.h │ ├── registry.cpp │ ├── registry.h │ ├── resource.h │ ├── rsrc.rc │ ├── scrollbox.cpp │ ├── scrollbox.h │ ├── selection.cpp │ ├── selection.h │ ├── selectionmodel.cpp │ ├── selectionmodel.h │ ├── sizebox.cpp │ ├── sizebox.h │ ├── textedit.cpp │ ├── textedit.h │ ├── toolbox.cpp │ ├── toolbox.h │ ├── toolsettings.cpp │ ├── toolsettings.h │ ├── toolsmodel.cpp │ ├── toolsmodel.h │ ├── winproc.cpp │ └── winproc.h ├── printman │ └── .empty ├── progman │ ├── COPYING.LIB │ ├── Cs.rc │ ├── Da.rc │ ├── De.rc │ ├── En.rc │ ├── Es.rc │ ├── Fr.rc │ ├── Hu.rc │ ├── It.rc │ ├── Ko.rc │ ├── Nl.rc │ ├── No.rc │ ├── Pl.rc │ ├── Pt.rc │ ├── README.MD │ ├── Ru.rc │ ├── Si.rc │ ├── TODO │ ├── Tr.rc │ ├── Zh.rc │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── accel.rc │ ├── dialog.c │ ├── group.c │ ├── grpfile.c │ ├── grpfile.h │ ├── main.c │ ├── makefile │ ├── progman.h │ ├── program.c │ ├── res │ │ ├── group.ico │ │ ├── index.jpg │ │ ├── progman.ico │ │ └── terminal.ico │ ├── rsrc.rc │ ├── string.c │ └── tst │ │ ├── accessor.grp │ │ ├── audiosof.grp │ │ ├── games.grp │ │ ├── main.grp │ │ ├── network.grp │ │ ├── progman.ini │ │ ├── quicktim.grp │ │ ├── startup.grp │ │ ├── winos2 │ │ ├── PROGMAN.INI │ │ ├── STARTUP.GRP │ │ ├── WOS2ACCE.GRP │ │ └── WOS2MAIN.GRP │ │ └── zombiewa.grp ├── regedit │ └── .empty ├── setup │ ├── docs │ │ └── 030-31645_Microsoft_Windows_3.1_Resource_Kit_1992.pdf │ ├── info.txt │ ├── note.txt │ ├── stage1 │ │ ├── SETUP.INF │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── a │ │ ├── a.cmd │ │ ├── b.cmd │ │ ├── dialog.c │ │ ├── dialog.h │ │ ├── disk_list.c │ │ ├── disk_list.h │ │ ├── display_list.c │ │ ├── display_list.h │ │ ├── file_list.c │ │ ├── file_list.h │ │ ├── file_utils.c │ │ ├── file_utils.h │ │ ├── help.c │ │ ├── help.h │ │ ├── inf_parser.c │ │ ├── inf_parser.h │ │ ├── kbdtable_list.c │ │ ├── kbdtable_list.h │ │ ├── kbdtype_list.c │ │ ├── kbdtype_list.h │ │ ├── language_list.c │ │ ├── language_list.h │ │ ├── log.c │ │ ├── log.h │ │ ├── machine_list.c │ │ ├── machine_list.h │ │ ├── makefile │ │ ├── mouse_list.c │ │ ├── mouse_list.h │ │ ├── network_list.c │ │ ├── network_list.h │ │ ├── note.txt │ │ ├── resources.c │ │ ├── resources.h │ │ ├── screens.c │ │ ├── screens.h │ │ ├── section_list.c │ │ ├── section_list.h │ │ ├── setup.c │ │ ├── setup_core.c │ │ ├── setup_core.h │ │ ├── stage1_1.zip │ │ ├── stage1_10.zip │ │ ├── stage1_11.zip │ │ ├── stage1_12.zip │ │ ├── stage1_13.zip │ │ ├── stage1_14.zip │ │ ├── stage1_15.zip │ │ ├── stage1_16.zip │ │ ├── stage1_17.zip │ │ ├── stage1_18.zip │ │ ├── stage1_19.zip │ │ ├── stage1_2.7z │ │ ├── stage1_20.zip │ │ ├── stage1_3.zip │ │ ├── stage1_4.zip │ │ ├── stage1_5.zip │ │ ├── stage1_6.zip │ │ ├── stage1_7.zip │ │ ├── stage1_8.zip │ │ ├── stage1_9.zip │ │ ├── system_info.c │ │ ├── system_info.h │ │ ├── ui.c │ │ ├── ui.h │ │ ├── video.c │ │ ├── video.h │ │ ├── Новый точечный рисунок (10).bmp │ │ ├── Новый точечный рисунок (11).bmp │ │ ├── Новый точечный рисунок (12).bmp │ │ ├── Новый точечный рисунок (13).bmp │ │ ├── Новый точечный рисунок (14).bmp │ │ ├── Новый точечный рисунок (2).bmp │ │ ├── Новый точечный рисунок (3).bmp │ │ ├── Новый точечный рисунок (4).bmp │ │ ├── Новый точечный рисунок (5).bmp │ │ ├── Новый точечный рисунок (6).bmp │ │ ├── Новый точечный рисунок (7).bmp │ │ ├── Новый точечный рисунок (8).bmp │ │ ├── Новый точечный рисунок (9).bmp │ │ └── Новый точечный рисунок.bmp │ └── stage2 │ │ └── main.c ├── sol │ └── solitaire │ │ ├── CMakeLists.txt │ │ ├── ReadMe.txt │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── lang │ │ ├── bg-BG.rc │ │ ├── ca-ES.rc │ │ ├── cs-CZ.rc │ │ ├── de-DE.rc │ │ ├── el-GR.rc │ │ ├── en-US.rc │ │ ├── es-ES.rc │ │ ├── eu-ES.rc │ │ ├── fr-FR.rc │ │ ├── he-IL.rc │ │ ├── hr-HR.rc │ │ ├── hu-HU.rc │ │ ├── id-ID.rc │ │ ├── it-IT.rc │ │ ├── ja-JP.rc │ │ ├── ko-KR.rc │ │ ├── lt-LT.rc │ │ ├── nl-NL.rc │ │ ├── no-NO.rc │ │ ├── pl-PL.rc │ │ ├── pt-BR.rc │ │ ├── ro-RO.rc │ │ ├── ru-RU.rc │ │ ├── sk-SK.rc │ │ ├── sq-AL.rc │ │ ├── sv-SE.rc │ │ ├── th-TH.rc │ │ ├── tr-TR.rc │ │ ├── uk-UA.rc │ │ ├── zh-CN.rc │ │ ├── zh-HK.rc │ │ └── zh-TW.rc │ │ ├── makefile │ │ ├── resource.h │ │ ├── rsrc.rc │ │ ├── solcreate.cpp │ │ ├── solgame.cpp │ │ ├── solitaire.cpp │ │ ├── solitaire.h │ │ ├── solitaire.ico │ │ └── solundo.cpp ├── soundrec │ └── .empty ├── winfile │ ├── LICENSE │ ├── README.md │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── help │ │ ├── WINFILE.CHM │ │ └── winfile.hlp │ ├── makefile │ └── src │ │ ├── Makefile.deps │ │ ├── WinFile.mak │ │ ├── _Makefile │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── bitmap.bmp │ │ ├── bullet.bmp │ │ ├── commctrl.h │ │ ├── dbg.c │ │ ├── dbg.h │ │ ├── fmifs.h │ │ ├── lfn.c │ │ ├── lfn.h │ │ ├── lfnmisc.c │ │ ├── makefile │ │ ├── mcopy.cur │ │ ├── mmove.cur │ │ ├── mpr.h │ │ ├── numfmt.c │ │ ├── numfmt.h │ │ ├── prsht.h │ │ ├── res.rc │ │ ├── scopy.cur │ │ ├── smove.cur │ │ ├── split.cur │ │ ├── status.c │ │ ├── suggest.c │ │ ├── suggest.db │ │ ├── suggest.h │ │ ├── tbar.c │ │ ├── todo.txt │ │ ├── toolbar.bmp │ │ ├── treectl.c │ │ ├── treectl.h │ │ ├── wbbitmap.bmp │ │ ├── wfassoc.c │ │ ├── wfchgnot.c │ │ ├── wfcomman.c │ │ ├── wfcopy.c │ │ ├── wfcopy.h │ │ ├── wfdir.c │ │ ├── wfdir.ico │ │ ├── wfdirrd.c │ │ ├── wfdirsrc.c │ │ ├── wfdlgs.c │ │ ├── wfdlgs.h │ │ ├── wfdlgs2.c │ │ ├── wfdlgs3.c │ │ ├── wfdoc.txt │ │ ├── wfdos.c │ │ ├── wfdrives.c │ │ ├── wfext.c │ │ ├── wfext.h │ │ ├── wfexti.h │ │ ├── wffile.c │ │ ├── wfgwl.h │ │ ├── wfhelp.h │ │ ├── wfinfo.c │ │ ├── wfinfo.h │ │ ├── wfinit.c │ │ ├── wfmem.c │ │ ├── wfmem.h │ │ ├── wfprint.c │ │ ├── wfsearch.c │ │ ├── wftrdir.ico │ │ ├── wftree.c │ │ ├── wftree.ico │ │ ├── wfutil.c │ │ ├── windows.ico │ │ ├── winexp.h │ │ ├── winfile.c │ │ ├── winfile.dlg │ │ ├── winfile.h │ │ ├── winfile.ico │ │ ├── wnetcaps.c │ │ ├── wnetcaps.h │ │ └── xtratool.bmp ├── winhelp │ ├── .cvsignore │ ├── ChangeLog │ ├── Cs.rc │ ├── Da.rc │ ├── De.rc │ ├── En.rc │ ├── Es.rc │ ├── Fi.rc │ ├── Fr.rc │ ├── Hu.rc │ ├── It.rc │ ├── Ko.rc │ ├── Makefile.in │ ├── Nl.rc │ ├── Pl.rc │ ├── Pt.rc │ ├── Ru.rc │ ├── Si.rc │ ├── Sk.rc │ ├── Sw.rc │ ├── Va.rc │ ├── Wa.rc │ ├── Zh.rc │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── callback.c │ ├── hlp2sgml.c │ ├── hlpfile.c │ ├── hlpfile.h │ ├── hlpfmt.h │ ├── macro.c │ ├── macro.h │ ├── macro_lex.c │ ├── macro_lex.l │ ├── makefile │ ├── rsrc.rc │ ├── string.c │ ├── winhelp.c │ ├── winhelp.h │ └── winhelp_res.h ├── winsheld │ └── .empty └── write │ ├── De.rc │ ├── En.rc │ ├── Fr.rc │ ├── Ko.rc │ ├── Makefile.in │ ├── Nl.rc │ ├── No.rc │ ├── Pl.rc │ ├── Ro.rc │ ├── Ru.rc │ ├── Si.rc │ ├── resources.h │ ├── rsrc.rc │ └── write.c ├── dlls ├── _wcc.cmd ├── _wcc.sh ├── cards │ ├── COPYING │ ├── COPYING.LIB │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── cards.c │ ├── cards.h │ ├── cards.rc │ ├── makefile │ └── res │ │ ├── bavarian │ │ ├── Eichel10.bmp │ │ ├── Eichel2.bmp │ │ ├── Eichel3.bmp │ │ ├── Eichel4.bmp │ │ ├── Eichel5.bmp │ │ ├── Eichel6.bmp │ │ ├── Eichel7.bmp │ │ ├── Eichel8.bmp │ │ ├── Eichel9.bmp │ │ ├── EichelAs.bmp │ │ ├── EichelKoenig.bmp │ │ ├── EichelOber.bmp │ │ ├── EichelUnter.bmp │ │ ├── FreeCard.bmp │ │ ├── Gras10.bmp │ │ ├── Gras2.bmp │ │ ├── Gras3.bmp │ │ ├── Gras4.bmp │ │ ├── Gras5.bmp │ │ ├── Gras6.bmp │ │ ├── Gras7.bmp │ │ ├── Gras8.bmp │ │ ├── Gras9.bmp │ │ ├── GrasAs.bmp │ │ ├── GrasKoenig.bmp │ │ ├── GrasOber.bmp │ │ ├── GrasUnter.bmp │ │ ├── Herz10.bmp │ │ ├── Herz2.bmp │ │ ├── Herz3.bmp │ │ ├── Herz4.bmp │ │ ├── Herz5.bmp │ │ ├── Herz6.bmp │ │ ├── Herz7.bmp │ │ ├── Herz8.bmp │ │ ├── Herz9.bmp │ │ ├── HerzAs.bmp │ │ ├── HerzKoenig.bmp │ │ ├── HerzOber.bmp │ │ ├── HerzUnter.bmp │ │ ├── Joker.bmp │ │ ├── OSign.bmp │ │ ├── Ruecken1.bmp │ │ ├── Ruecken10.bmp │ │ ├── Ruecken11.bmp │ │ ├── Ruecken12.bmp │ │ ├── Ruecken2.bmp │ │ ├── Ruecken3.bmp │ │ ├── Ruecken4.bmp │ │ ├── Ruecken5.bmp │ │ ├── Ruecken6.bmp │ │ ├── Ruecken7.bmp │ │ ├── Ruecken8.bmp │ │ ├── Ruecken9.bmp │ │ ├── Schellen10.bmp │ │ ├── Schellen2.bmp │ │ ├── Schellen3.bmp │ │ ├── Schellen4.bmp │ │ ├── Schellen5.bmp │ │ ├── Schellen6.bmp │ │ ├── Schellen7.bmp │ │ ├── Schellen8.bmp │ │ ├── Schellen9.bmp │ │ ├── SchellenAs.bmp │ │ ├── SchellenKoenig.bmp │ │ ├── SchellenOber.bmp │ │ ├── SchellenUnter.bmp │ │ └── XSign.bmp │ │ └── default │ │ ├── Background_1.bmp │ │ ├── Background_10.bmp │ │ ├── Background_11.bmp │ │ ├── Background_12.bmp │ │ ├── Background_2.bmp │ │ ├── Background_3.bmp │ │ ├── Background_4.bmp │ │ ├── Background_5.bmp │ │ ├── Background_6.bmp │ │ ├── Background_7.bmp │ │ ├── Background_8.bmp │ │ ├── Background_9.bmp │ │ ├── Clubs_Ace.bmp │ │ ├── Clubs_Eight.bmp │ │ ├── Clubs_Five.bmp │ │ ├── Clubs_Four.bmp │ │ ├── Clubs_Jack.bmp │ │ ├── Clubs_King.bmp │ │ ├── Clubs_Nine.bmp │ │ ├── Clubs_Queen.bmp │ │ ├── Clubs_Seven.bmp │ │ ├── Clubs_Six.bmp │ │ ├── Clubs_Ten.bmp │ │ ├── Clubs_Three.bmp │ │ ├── Clubs_Two.bmp │ │ ├── Diamonds_Ace.bmp │ │ ├── Diamonds_Eight.bmp │ │ ├── Diamonds_Five.bmp │ │ ├── Diamonds_Four.bmp │ │ ├── Diamonds_Jack.bmp │ │ ├── Diamonds_King.bmp │ │ ├── Diamonds_Nine.bmp │ │ ├── Diamonds_Queen.bmp │ │ ├── Diamonds_Seven.bmp │ │ ├── Diamonds_Six.bmp │ │ ├── Diamonds_Ten.bmp │ │ ├── Diamonds_Three.bmp │ │ ├── Diamonds_Two.bmp │ │ ├── FreeCard.bmp │ │ ├── Hearts_Ace.bmp │ │ ├── Hearts_Eight.bmp │ │ ├── Hearts_Five.bmp │ │ ├── Hearts_Four.bmp │ │ ├── Hearts_Jack.bmp │ │ ├── Hearts_King.bmp │ │ ├── Hearts_Nine.bmp │ │ ├── Hearts_Queen.bmp │ │ ├── Hearts_Seven.bmp │ │ ├── Hearts_Six.bmp │ │ ├── Hearts_Ten.bmp │ │ ├── Hearts_Three.bmp │ │ ├── Hearts_Two.bmp │ │ ├── Joker.bmp │ │ ├── OSign.bmp │ │ ├── Spades_Ace.bmp │ │ ├── Spades_Eight.bmp │ │ ├── Spades_Five.bmp │ │ ├── Spades_Four.bmp │ │ ├── Spades_Jack.bmp │ │ ├── Spades_King.bmp │ │ ├── Spades_Nine.bmp │ │ ├── Spades_Queen.bmp │ │ ├── Spades_Seven.bmp │ │ ├── Spades_Six.bmp │ │ ├── Spades_Ten.bmp │ │ ├── Spades_Three.bmp │ │ ├── Spades_Two.bmp │ │ └── XSign.bmp ├── commctrl │ ├── COPYING.LIB │ ├── CommCtrlRC.h │ ├── Makefile │ ├── WAHDItem.h │ ├── WALVColumns.h │ ├── WALVItems.h │ ├── WCommCtrl.def │ ├── WCommCtrl.h │ ├── WCommCtrl.rc │ ├── WCommctl.c │ ├── WCommctl.h │ ├── WControl.h │ ├── WDragLbx.c │ ├── WDragLbx.h │ ├── WHDItem.h │ ├── WHdr.c │ ├── WHdr.h │ ├── WHeader.h │ ├── WImgList.c │ ├── WImgList.h │ ├── WLVColumn.h │ ├── WLVHelpr.c │ ├── WLVHelpr.h │ ├── WLVItem.h │ ├── WLVLBox.c │ ├── WLVLBox.h │ ├── WLView.c │ ├── WLView.h │ ├── WListView.h │ ├── WLists.c │ ├── WLists.h │ ├── WProgBar.c │ ├── WProgBar.h │ ├── WPropsht.c │ ├── WPropsht.h │ ├── WResourc.h │ ├── WStatusb.c │ ├── WStatusb.h │ ├── WTVLBox.c │ ├── WTVLBox.h │ ├── WTView.c │ ├── WTView.h │ ├── WTab.c │ ├── WTab.h │ ├── WTlbCust.c │ ├── WTlbCust.h │ ├── WToolbar.c │ ├── WToolbar.h │ ├── WTooltip.c │ ├── WTooltip.h │ ├── WTrackbr.c │ ├── WTrackbr.h │ ├── WUpdown.c │ ├── WUpdown.h │ ├── WWindow.h │ ├── cpp │ │ ├── WALVColumns.cpp │ │ ├── WALVItems.cpp │ │ ├── WCommCtrl.cpp │ │ ├── WHDItem.cpp │ │ ├── WHeader.cpp │ │ ├── WLVColumn.cpp │ │ ├── WLVItem.cpp │ │ ├── WListView.cpp │ │ └── WWindow.cpp │ ├── custcntl.rc │ └── resource.h ├── commdlg │ ├── ChooseColor.c │ ├── ChooseFont.c │ ├── Commdlg.c │ ├── Commdlg.def │ ├── Commdlg.rc │ ├── CommdlgIF.c │ ├── CommdlgIT.c │ ├── CommdlgRC.h │ ├── Dialog.h │ ├── FindReplDlg.c │ ├── GdiDDK.h │ ├── GetOpenFileName.c │ ├── Log.h │ ├── PrintDlg.c │ ├── PrinterDC.h │ ├── System.h │ ├── WinConfig.c │ ├── WinConfig.h │ ├── _Makefile │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── api.txt │ ├── colordlg.h │ ├── libmain.c │ ├── licence.txt │ ├── makefile │ ├── mfs_config.h │ ├── platform.h │ ├── porting.h │ ├── print.h │ └── res │ │ ├── cdrom.bmp │ │ ├── colorcrosshair.cur │ │ ├── colorcrosshair.ico │ │ ├── crossled.bmp │ │ ├── dir.bmp │ │ ├── floppy.bmp │ │ ├── foldersdrives.bmp │ │ ├── harddrive.bmp │ │ ├── landscape.ico │ │ ├── luminosity.cur │ │ ├── luminosity.ico │ │ ├── mappeddrive.bmp │ │ ├── networkdrive.bmp │ │ ├── opencdir.bmp │ │ ├── opencurrdir.bmp │ │ ├── opendir.bmp │ │ ├── portrait.ico │ │ ├── printer.bmp │ │ ├── raiseddown.bmp │ │ ├── raisedleft.bmp │ │ ├── raisedright.bmp │ │ ├── raisedup.bmp │ │ ├── ramdrive.bmp │ │ ├── recessdown.bmp │ │ ├── recessleft.bmp │ │ ├── recessright.bmp │ │ ├── recessup.bmp │ │ ├── truetype.bmp │ │ ├── truetypeprinter.bmp │ │ └── willows.ico ├── ddeml │ ├── DdeML.c │ ├── DdeML.def │ ├── DdeMLDefs.h │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── licence.txt │ └── makefile ├── lzexpand │ ├── COPYING.LIB │ ├── LZExpand.c │ ├── LZExpand.h │ ├── _wcc.cmd │ ├── _wcc.sh │ └── makefile ├── makefile ├── shell │ ├── About.c │ ├── COPYING.LIB │ ├── DragDrop.c │ ├── Environment.c │ ├── Exec.c │ ├── GlobalData.c │ ├── Hook.c │ ├── Icon.c │ ├── REG.DAT │ ├── Registry.c │ ├── Restart.c │ ├── Shell.c │ ├── Shell.h │ ├── Shell.rc │ ├── Strings.c │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── atomex.c │ ├── hashtest.c │ ├── makefile │ ├── note.txt │ ├── regtst.c │ ├── shelltests.c │ └── willows.ico ├── toolhelp │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── licence.txt │ ├── makefile │ ├── toolhelp.c │ └── toolhelp.h ├── ver │ ├── Makefile.in │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ ├── movefile.c │ ├── ver.dll16.spec │ └── version.c └── winsock │ ├── COPYING.LIB │ ├── Makefile │ ├── WinSock.c │ ├── WinSock.def │ ├── WinSock.rc │ ├── WinSockBin.c │ ├── WinSockBin.h │ └── WinSockIF.c ├── docs ├── 3270.txt ├── _wcc.cmd ├── _wcc.sh ├── networks.txt ├── printers.txt ├── readme.txt ├── sysini.txt ├── sysini2.txt ├── sysini3.txt ├── winini.txt └── winini2.txt ├── dosx ├── README.md ├── _wcc.cmd ├── _wcc.sh ├── dosx-orig.txt ├── dosx.asm ├── hdpmi │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── hdpmi.mk │ ├── makefile │ └── patches │ │ └── fixcase.cmd ├── licence.txt └── makefile ├── drivers ├── _wcc.cmd ├── _wcc.sh ├── comm │ └── modtable.h ├── display │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── display │ │ ├── Makefile.in │ │ ├── display.c │ │ ├── display.drv16.spec │ │ ├── display.rc │ │ └── oic_hand.ico │ ├── logo │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── docs │ │ │ └── DOS-LOGO project.htm │ │ ├── licence.txt │ │ ├── logo.asm │ │ ├── logo.bmp │ │ ├── makefile │ │ └── readme.md │ └── makefile ├── keyboard │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── keyboard │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── keyboard.c │ │ ├── libentry.asm │ │ ├── makefile │ │ ├── vkeys.h │ │ └── xlatus.asm │ ├── makefile │ └── tables │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── dlls │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── be │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── bll │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── br │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── bul │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── ca │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── cr │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── cz │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── cz1 │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── da │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── dv │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── fc │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── fi │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── fr │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── gr │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── hu │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── hu1 │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── ic │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── it │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── la │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── makefile │ │ ├── ne │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── no │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── pl │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── pl1 │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── po │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── ro │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── ru │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── se │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── sf │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── sg │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── sl │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── sl1 │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── sp │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── sv │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── sw │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── uk │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── us │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── usx │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── ycc │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ └── ycl │ │ │ ├── _wcc.cmd │ │ │ ├── _wcc.sh │ │ │ ├── keyboard.c │ │ │ └── makefile │ │ ├── makefile │ │ └── xlat │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── copyright.inc │ │ ├── makefile │ │ ├── unicode.txt │ │ ├── xlat437.inc │ │ ├── xlat850.inc │ │ ├── xlat850 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat850.asm │ │ ├── xlat852.inc │ │ ├── xlat852 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat852.asm │ │ ├── xlat855.inc │ │ ├── xlat855 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat855.asm │ │ ├── xlat860.inc │ │ ├── xlat860 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat860.asm │ │ ├── xlat861.inc │ │ ├── xlat861 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat861.asm │ │ ├── xlat863.inc │ │ ├── xlat863 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat866.asm │ │ ├── xlat865.inc │ │ ├── xlat865 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat865.asm │ │ ├── xlat866.inc │ │ ├── xlat866 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat866.asm │ │ ├── xlat915.inc │ │ └── xlat915 │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ ├── makefile │ │ └── xlat915.asm ├── makefile ├── mousec │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── mouse.mk ├── ramdrive │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── ramdrive.mk ├── smartdrv │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── smartdrv.mk ├── sound │ ├── COPYING.LIB │ ├── Makefile.old │ ├── Sound.c │ ├── Sound.def │ ├── Sound.doc │ ├── Sound.rc │ ├── SoundBin.c │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── libentry.asm │ └── makefile └── system │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── libentry.asm │ ├── makefile │ └── system.c ├── include ├── Log.h ├── ModTable.h ├── Module.h ├── Net.h ├── OEM.h ├── ObjEngine.h ├── Printer.h ├── Resources.h ├── System.h ├── WSA.h ├── WinMalloc.h ├── WinSockUtil.h ├── WinSocktypes.h ├── Win_Base.h ├── Win_Clib.h~ ├── Win_Gdi.h ├── Win_Kernel.h ├── Win_MS.h ├── Win_NT.h ├── Win_Reg.h ├── Win_Thread.h ├── Win_User.h ├── Winver.h ├── cderr.h ├── coguid.h ├── colordlg.h ├── commctrl.h ├── commdlg.h ├── compobj.h ├── dde.h ├── ddeml.h ├── dir.h ├── dlfcn.h ├── dlgs.h ├── initguid.h ├── kerndef.h ├── mmsystem.h ├── ole.h ├── ole2ver.h ├── platform.h ├── print.h ├── prsht.h ├── share.h ├── shellapi.h ├── toolhelp.h ├── twindll.h ├── win_con.h ├── windows.h ├── windowsx.h ├── windowsx16.h ├── windowsx32.h └── winsock.h~ ├── kernel ├── _profstrg.asm ├── _wcc.cmd ├── _wcc.sh ├── ascii.inc ├── atom.c ├── catch.c ├── debug.inc ├── div.asm ├── dos.txt ├── dosbox.c ├── dosh.txt ├── dpmi.h ├── enable.asm ├── enablec.c ├── error.c ├── file.c ├── fixups.inc ├── global.c ├── hmemset.asm ├── kernel.inc ├── kernel │ ├── _makefile │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── docs │ │ ├── A look back at memory models in 16-bit MS-DOS - The Old New Thing.htm │ │ ├── A look back at memory models in 16-bit MS-DOS - The Old New Thing_files │ │ │ ├── 18af76861157165c6dba65e764135ee5.svg │ │ │ ├── 1b2eb3c15ab989416730fe8e95667d24.svg │ │ │ ├── 23ccfda995825dc197c2252f51b0f514.svg │ │ │ ├── 2728ce7fc80c69842405147c802b4e64.png │ │ │ ├── 2b-8e0ae6 │ │ │ ├── 7536a4eba59f1e6c83a57eeed2fdbee9.svg │ │ │ ├── 7caa8b6e72567799dc7a7393c57e8c39.svg │ │ │ ├── 9ca3452a98a3d202e18f92459aaa3864.svg │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── c5cd6a950d85261e0b7bfaa707604430.svg │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── de8e93a63dd70e25bdf08be864de6d80.svg │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── A wrinkle in how Windows 95 setup bootstrapped its initial GUI step - The Old New Thing.htm │ │ ├── A wrinkle in how Windows 95 setup bootstrapped its initial GUI step - The Old New Thing_files │ │ │ ├── 094e6cff8fbf386efa7511e283028628.svg │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── be619a98bbb652aebfb0a5fc4277488e.svg │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── How 16-bit Windows cached INI files for performance - The Old New Thing.htm │ │ ├── How 16-bit Windows cached INI files for performance - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── How did protected-mode 16-bit Windows fix up jumps to functions that got discarded_ - The Old New Thing.htm │ │ ├── How did protected-mode 16-bit Windows fix up jumps to functions that got discarded_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── How did real-mode Windows fix up jumps to functions that got discarded_ - The Old New Thing.htm │ │ ├── How did real-mode Windows fix up jumps to functions that got discarded_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── How did real-mode Windows implement its LRU algorithm without hardware assistance_ - The Old New Thing.htm │ │ ├── How did real-mode Windows implement its LRU algorithm without hardware assistance_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── How did real-mode Windows patch up return addresses to discarded code segments_ - The Old New Thing.htm │ │ ├── How did real-mode Windows patch up return addresses to discarded code segments_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── If 16-bit Windows had a single input queue, how did you debug applications on it_ - The Old New Thing.htm │ │ ├── If 16-bit Windows had a single input queue, how did you debug applications on it_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── In Windows 3.1 and Windows 95, what is a _grabber__ - The Old New Thing.htm │ │ ├── In Windows 3.1 and Windows 95, what is a _grabber__ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── On memory allocations larger than 64KB on 16-bit Windows - The Old New Thing.htm │ │ ├── On memory allocations larger than 64KB on 16-bit Windows - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── Peeking inside the implementation of AnsiUpper and AnsiLower in Windows 1.0 - The Old New Thing.htm │ │ ├── Peeking inside the implementation of AnsiUpper and AnsiLower in Windows 1.0 - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── MicrosoftLogo_50x50.png │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── like_002.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── Q31994_ How Overlays Are Set Up By the Linker _ KnowledgeBase Archive.htm │ │ ├── Q31994_ How Overlays Are Set Up By the Linker _ KnowledgeBase Archive_files │ │ │ ├── css.css │ │ │ ├── print.css │ │ │ └── style.css │ │ ├── Q65122_ Executable-File Header Format _ KnowledgeBase Archive.htm │ │ ├── Q65122_ Executable-File Header Format _ KnowledgeBase Archive_files │ │ │ ├── css.css │ │ │ ├── print.css │ │ │ └── style.css │ │ ├── Virtual Memory For 640K DOS - Digital Mars.htm │ │ ├── Virtual Memory For 640K DOS - Digital Mars_files │ │ │ ├── a.htm │ │ │ ├── bugs.png │ │ │ ├── buy.png │ │ │ ├── d.png │ │ │ ├── dmlogo.gif │ │ │ ├── download.png │ │ │ ├── faq.png │ │ │ ├── figure1.gif │ │ │ ├── figure2.gif │ │ │ ├── figure3.gif │ │ │ ├── home.png │ │ │ ├── idde.png │ │ │ ├── library.png │ │ │ ├── news.png │ │ │ ├── print.css │ │ │ ├── search.png │ │ │ ├── stl.png │ │ │ ├── style.css │ │ │ └── tools.png │ │ ├── What happened in real-mode Windows when somebody did a longjmp into a discardable segment_ - The Old New Thing.htm │ │ ├── What happened in real-mode Windows when somebody did a longjmp into a discardable segment_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── What were the MS-DOS programs that Windows used the progman.exe stock icons for_ - The Old New Thing.htm │ │ ├── What were the MS-DOS programs that Windows used the progman.exe stock icons for_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── 4d6eabc70cfb1ef8dc2b13c7a993b644.svg │ │ │ ├── 51c8c931a2a575e48db2a93b340ca778.svg │ │ │ ├── 755bdbf2363804425b2242a7c113e06b.svg │ │ │ ├── 92404e9ad6792dd1fbed9ae5c42677ff.svg │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── What were the MS-DOS programs that the moricons.dll icons were intended for_ - The Old New Thing.htm │ │ ├── What were the MS-DOS programs that the moricons.dll icons were intended for_ - The Old New Thing_files │ │ │ ├── 099d1533dc71abb41266d76395561f52.svg │ │ │ ├── 1a91765fe72fb388848228b4652e1359.svg │ │ │ ├── 2b-8e0ae6 │ │ │ ├── 465a418558e4ed98efe28642a188e225.svg │ │ │ ├── MicrosoftLogo_50x50.png │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── a49d260e88b886ce961270b840480715.svg │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── What were the intended uses of those icons in moricons.dll_ - The Old New Thing.htm │ │ ├── What were the intended uses of those icons in moricons.dll_ - The Old New Thing_files │ │ │ ├── 15a93bbf63988c7e19f02b81fc5759f7.svg │ │ │ ├── 18f3b1eeec31d4454950a2f220abe9a7.svg │ │ │ ├── 2b-8e0ae6 │ │ │ ├── 2e885177a222e1c72eaf70fd7175a633.svg │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── bf55774e299efa9f4d6f050ff1041a92.svg │ │ │ ├── bfdfe45857548450618cba1498019bc8.svg │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── e9bc4f4f2c112a6a53cc33127e713e56.svg │ │ │ ├── editor.min.css │ │ │ ├── f37dc83cdacfc41468efdc968350f355.svg │ │ │ ├── f8ce753cb004b70e4e237bd0cdc28a86.svg │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── fc51dc51536835a70b87b08a4753abc8.svg │ │ │ ├── ff47621594dc490076427b9d94f2058f.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── Why did Windows 95 setup use three operating systems_ - The Old New Thing.htm │ │ ├── Why did Windows 95 setup use three operating systems_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── 5682bda2368d7377e9832132c196f365.svg │ │ │ ├── 8dd205094a28e3a9af6906ef75040e96.svg │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── Why did the 16-bit _lopen and _lcreat function return -1 on failure instead of 0_ - The Old New Thing.htm │ │ ├── Why did the 16-bit _lopen and _lcreat function return -1 on failure instead of 0_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── heart_002.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── Why does Global_Lock max out at 255 locks_ - The Old New Thing.htm │ │ ├── Why does Global_Lock max out at 255 locks_ - The Old New Thing_files │ │ │ ├── 2b-8e0ae6 │ │ │ ├── RE1Mu3b.png │ │ │ ├── RaymondChen_5in-150x150.jpg │ │ │ ├── a11y.min.js │ │ │ ├── accordion-toggle.min.js │ │ │ ├── add-likes.js │ │ │ ├── ae-f1ac0c.css │ │ │ ├── anchorific.js │ │ │ ├── autocomplete.min.js │ │ │ ├── back-to-top.min.js │ │ │ ├── block-custom.css │ │ │ ├── blocks.style.build.css │ │ │ ├── breadcrumbs.min.js │ │ │ ├── buttons.min.css │ │ │ ├── celebrate.svg │ │ │ ├── clipboard.min.js │ │ │ ├── commentsvote.js │ │ │ ├── common.min.js │ │ │ ├── compelling.svg │ │ │ ├── core.min.js │ │ │ ├── custom-theme.min.js │ │ │ ├── dashicons.min.css │ │ │ ├── dom-ready.min.js │ │ │ ├── dropdown-menu.min.js │ │ │ ├── editor.min.css │ │ │ ├── fabric-icons.css │ │ │ ├── facebook.svg │ │ │ ├── gifffer.min.js │ │ │ ├── heading-links.js │ │ │ ├── heart.svg │ │ │ ├── highlight.css │ │ │ ├── highlight.js │ │ │ ├── hooks.min.js │ │ │ ├── hoverIntent.min.js │ │ │ ├── i18n.min.js │ │ │ ├── intriguing.svg │ │ │ ├── jquery-alias.js │ │ │ ├── jquery.min.js │ │ │ ├── like.svg │ │ │ ├── linkedin.svg │ │ │ ├── main.js │ │ │ ├── menu.min.js │ │ │ ├── mind-blown.svg │ │ │ ├── mpp-frontend.js │ │ │ ├── ms.jsll-3.min.js │ │ │ ├── page-view-ajax.js │ │ │ ├── quicktags.min.js │ │ │ ├── read-more.js │ │ │ ├── simplecomments.min.css │ │ │ ├── simplecomments.min.js │ │ │ ├── social-sidebar.js │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── theme-picker.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── toc.js │ │ │ ├── utils.min.js │ │ │ ├── wcp-consent.js │ │ │ ├── wp-featherlight.min.css │ │ │ ├── wpFeatherlight.pkgd.min.js │ │ │ ├── wplink.min.js │ │ │ └── youtube.svg │ │ ├── undocwin.htm │ │ ├── undocwin_files │ │ │ ├── Pbkz │ │ │ ├── ads.js │ │ │ ├── bckgrnd.jpg │ │ │ ├── jquery-3.3.1.min.js │ │ │ ├── jquery.js │ │ │ ├── uutils_002.fcg │ │ │ └── Без имени │ │ ├── Управление памятью в реальном режиме Windows _ Хабр.htm │ │ └── Управление памятью в реальном режиме Windows _ Хабр_files │ │ │ ├── 008.png │ │ │ ├── 011be472e115ab0d507a175e2c615871.jpg │ │ │ ├── 011be472e115ab0d507a175e2c615871_002.jpg │ │ │ ├── 020.png │ │ │ ├── 020544d2fef2234cfb9a629708bc134d.jpg │ │ │ ├── 020544d2fef2234cfb9a629708bc134d_002.jpg │ │ │ ├── 026.png │ │ │ ├── 048.png │ │ │ ├── 049.png │ │ │ ├── 056.png │ │ │ ├── 0571db6de8decf9994251d48eb5ee5f2.jpg │ │ │ ├── 093.png │ │ │ ├── 137.png │ │ │ ├── 163.png │ │ │ ├── 16cb503e1208e316f196190dcf6ea680.jpg │ │ │ ├── 16cb503e1208e316f196190dcf6ea680_002.jpg │ │ │ ├── 188.png │ │ │ ├── 18b44549b6ce9126e5e53e338f7997cb.png │ │ │ ├── 18f2224f46d8dfb146bb710740be7893.png │ │ │ ├── 18f2224f46d8dfb146bb710740be7893_002.png │ │ │ ├── 27e63a077bd00ae9bcd96468509c9c8b.jpg │ │ │ ├── 27e63a077bd00ae9bcd96468509c9c8b_002.jpg │ │ │ ├── 2895bbbed63de8e9e7272d6dd1abd138.png │ │ │ ├── 30740f20326ada3442aa381a7ff6cf86.png │ │ │ ├── 30740f20326ada3442aa381a7ff6cf86_002.png │ │ │ ├── 3373d5ddf7fb82fefefd52fca81f8b83.png │ │ │ ├── 3373d5ddf7fb82fefefd52fca81f8b83_002.png │ │ │ ├── 33c8e1a48197cd41190ebb390692900c.png │ │ │ ├── 33c8e1a48197cd41190ebb390692900c_002.png │ │ │ ├── 47ce9f1140457750d3d18016cb9e680b.jpg │ │ │ ├── 4f2c4a484d75ea71f553ed2b1c9bdcf6.jpeg │ │ │ ├── 539945433c1cac2ca3fea6e22231ecc2.png │ │ │ ├── 539945433c1cac2ca3fea6e22231ecc2_002.png │ │ │ ├── 58ac9883cc6ec618a7dc30622619850d.jpeg │ │ │ ├── 5c809baa06da360b39de9ca3699831eb.png │ │ │ ├── 665419cdedf47fb3887073707fab7bdb.jpeg │ │ │ ├── 66fa41d50fa133a98650686ff66aef4c.jpeg │ │ │ ├── 66fa41d50fa133a98650686ff66aef4c_002.jpeg │ │ │ ├── 77d7a37b50fd455ccc308a28777f7429.png │ │ │ ├── 77d7a37b50fd455ccc308a28777f7429_002.png │ │ │ ├── 85cebfccd0913cfebbe93467b9983d2a.png │ │ │ ├── 85cebfccd0913cfebbe93467b9983d2a_002.png │ │ │ ├── 85e4f413b4d83b31654870ea96a91e8c.jpg │ │ │ ├── 8afbddf241977379a738fd3b26455d1d.jpg │ │ │ ├── 8afbddf241977379a738fd3b26455d1d_002.jpg │ │ │ ├── 8d8a1df2fa7d74aeee1589f520edda32.png │ │ │ ├── 8d8a1df2fa7d74aeee1589f520edda32_002.png │ │ │ ├── 924d2c4b5df11e7b9c3f6174f29d49f5.png │ │ │ ├── 9686e66f8dbb84a0824b2a8f9e2748ed.jpg │ │ │ ├── ab1c5d462ca04d2c0ecc8b48590601db.jpg │ │ │ ├── app.331cf048.css │ │ │ ├── app.ef0b5e7b.js │ │ │ ├── b10688abb86bacfb58fab5c3b5850a52.jpg │ │ │ ├── b3c0d8bfd14d52e06c481f7178014cb1.jpg │ │ │ ├── b71804e6dcbec22ada05c488b7ee4c1b.png │ │ │ ├── b71804e6dcbec22ada05c488b7ee4c1b_002.png │ │ │ ├── ba581878ac80afc689524b1d3a9d039f.png │ │ │ ├── bd8578c227d3536a285d9752c14026f3.png │ │ │ ├── ce2dc3d3fb0b93e0f266de937bfbfcb4.jpg │ │ │ ├── ce2dc3d3fb0b93e0f266de937bfbfcb4_002.jpg │ │ │ ├── ce4af90dc6550f81be17c02083875090.jpg │ │ │ ├── chunk-vendors.04465f7c.css │ │ │ ├── chunk-vendors.648199bb.js │ │ │ ├── css2.css │ │ │ ├── dark-v2.css │ │ │ ├── db44cb402063cd1b9f0d6a1e6996b50b.jpg │ │ │ ├── db44cb402063cd1b9f0d6a1e6996b50b_002.jpg │ │ │ ├── dba3821ff6f22fdbf0ccb516700d3eba.png │ │ │ ├── dba3821ff6f22fdbf0ccb516700d3eba_002.png │ │ │ ├── e093a816eacb004e01182d57057b07de.jpg │ │ │ ├── e093a816eacb004e01182d57057b07de_002.jpg │ │ │ ├── e13282ee9089f0b06bff1c0e81e3abdb.png │ │ │ ├── e13282ee9089f0b06bff1c0e81e3abdb_002.png │ │ │ ├── e14b636952972cf6b59e081e7032840f.png │ │ │ ├── e14b636952972cf6b59e081e7032840f_002.png │ │ │ ├── e6215bba235de40d65026865ae66537f.png │ │ │ ├── eab419de72a5564a5195468d9f3cc89c.jpg │ │ │ ├── eab419de72a5564a5195468d9f3cc89c_002.jpg │ │ │ ├── ef94e70feded73b45d181a33e7e1cc1f.jpg │ │ │ ├── ef94e70feded73b45d181a33e7e1cc1f_002.jpg │ │ │ ├── fbaabdc3e3fb72d23ada9ac5c270a992.jpg │ │ │ ├── fbaabdc3e3fb72d23ada9ac5c270a992_002.jpg │ │ │ ├── fbf02cc1b469e864fdc778c3072fda7c.jpeg │ │ │ ├── light-v2.css │ │ │ ├── pwacompat.min.js │ │ │ └── qqeypn-py71suynxbusbakjdfjw.png │ ├── ginterf.asm │ ├── makefile │ └── notes.txt ├── kernel16.asm ├── krnl286 │ ├── 2ginterf.asm │ ├── _wcc.cmd │ ├── _wcc.sh │ └── makefile ├── krnl386 │ ├── 3ginterf.asm │ ├── _makefile │ ├── _wcc.cmd │ ├── _wcc.sh │ └── makefile ├── ldboot.asm ├── licence.txt ├── local.c ├── main.c ├── makefile ├── mthread.c ├── mthread.h ├── nls.asm ├── notes.txt ├── pdb.inc ├── printf.c ├── profile.c ├── protect.c ├── pusha.inc ├── resource.c ├── rom.c ├── selector.c ├── smallcode.asm ├── strings.c ├── struct.inc ├── task.asm ├── taskc.c ├── tdb.inc ├── thhook.c ├── trace.inc ├── version.c ├── win_private.h └── winexec.c ├── libs ├── cardlib │ ├── CMakeLists.txt │ ├── ReadMe.txt │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── card.h │ ├── cardbitmaps.cpp │ ├── cardbutton.cpp │ ├── cardbutton.h │ ├── cardcolor.cpp │ ├── cardcolor.h │ ├── cardcount.cpp │ ├── cardcount.h │ ├── cardlib.cpp │ ├── cardlib.h │ ├── cardregion.cpp │ ├── cardregion.h │ ├── cardrgndraw.cpp │ ├── cardrgnmouse.cpp │ ├── cardstack.cpp │ ├── cardstack.h │ ├── cardwindow.cpp │ ├── cardwindow.h │ ├── dropzone.cpp │ ├── dropzone.h │ ├── globals.h │ └── makefile └── mfc │ ├── Include │ ├── CArchive.h │ ├── CArchive_inline.h │ ├── CCmdTarget.h │ ├── CCmdTarget_inline.h │ ├── CCmdUI.h │ ├── CDocTemplate.h │ ├── CDocTemplate_inline.h │ ├── CDocument.h │ ├── CDocument_inline.h │ ├── CException.h │ ├── CFile.h │ ├── CFrameWnd.h │ ├── CFrameWnd_inline.h │ ├── CGdiObject.h │ ├── CGdiObject_inline.h │ ├── CObjFromHandle.h │ ├── CObject.h │ ├── CPoint.h │ ├── CRect.h │ ├── CSize.h │ ├── CString.h │ ├── CString_inline.h │ ├── CView.h │ ├── CView_inline.h │ ├── CWinApp.h │ ├── CWinApp_inline.h │ ├── CWnd.h │ ├── CWnd_inline.h │ ├── afxres.h │ ├── afxres.rc │ ├── afxwin.h │ ├── ofcglobals.h │ └── stdafx.h │ ├── libofcdll.def │ ├── ofcdll.dev │ ├── ofcstat.dev │ ├── samples │ ├── MFHello │ │ ├── MFHello.cpp │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ └── makefile │ └── MFStart │ │ ├── MFStart.cpp │ │ ├── MFStartApp.cpp │ │ ├── MFStartApp.h │ │ ├── MFStartWindow.cpp │ │ ├── MFStartWindow.h │ │ ├── _wcc.cmd │ │ ├── _wcc.sh │ │ └── makefile │ ├── src │ ├── CArchive.cpp │ ├── CCmdTarget.cpp │ ├── CCmdUI.cpp │ ├── CDocTemplate.cpp │ ├── CDocument.cpp │ ├── CException.cpp │ ├── CFile.cpp │ ├── CFrameWnd.cpp │ ├── CGdiObject.cpp │ ├── CObjFromHandle.cpp │ ├── CObject.cpp │ ├── CPoint.cpp │ ├── CRect.cpp │ ├── CSize.cpp │ ├── CString.cpp │ ├── CView.cpp │ ├── CWinApp.cpp │ ├── CWnd.cpp │ ├── Debug.cpp │ ├── dllmain.cpp │ └── ofcglobals.cpp │ └── test │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── OfcTest.cpp │ ├── OfcTest.dev │ ├── OfcTest.h │ ├── OfcTest.layout │ ├── OfcTest.rc │ ├── OfcTestDoc.cpp │ ├── OfcTestDoc.h │ ├── OfcTestView.cpp │ ├── OfcTestView.h │ ├── OfcTest_private.h │ ├── OfcTest_private.rc │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TestCCmdTarget.cpp │ ├── TestCFile.cpp │ ├── TestCGdiObject.cpp │ ├── TestCPoint.cpp │ ├── TestCRect.cpp │ ├── TestCSize.cpp │ ├── TestCString.cpp │ ├── TestCWnd.cpp │ └── resource.h ├── licence.txt ├── makefile ├── notes ├── 30en │ ├── comm.txt │ ├── gdi.txt │ ├── kernel.txt │ ├── keyboard.txt │ ├── krnl286.txt │ ├── krnl386.txt │ ├── lzexpand.txt │ ├── mouse.txt │ ├── msnet.txt │ ├── sound.txt │ ├── system.txt │ ├── user.txt │ ├── vga.txt │ └── win87em.txt ├── 9002a.htm ├── 9003e.htm ├── dpmild16.txt ├── exports.txt ├── q81524.txt ├── win30en.txt ├── winexec.txt └── winos2.txt ├── pal └── x11 │ ├── COPYING.LIB │ ├── DrvColors.c │ ├── DrvColors.h │ ├── DrvCommon.h │ ├── DrvConfig.c │ ├── DrvCursor.c │ ├── DrvDC.c │ ├── DrvDC.h │ ├── DrvDP.h │ ├── DrvEvents.c │ ├── DrvFiles.c │ ├── DrvFloodFill.c │ ├── DrvGraphics.c │ ├── DrvGraphics.h │ ├── DrvHook.c │ ├── DrvHook.h │ ├── DrvIPC.c │ ├── DrvIPC.h │ ├── DrvImages.c │ ├── DrvImages.h │ ├── DrvInit.c │ ├── DrvInit.h │ ├── DrvKeyboard.c │ ├── DrvKeyboard.h │ ├── DrvMemory.c │ ├── DrvPrinting.c │ ├── DrvROPCodes.h │ ├── DrvRegions.c │ ├── DrvRegions.h │ ├── DrvSystem.c │ ├── DrvSystem_hppa.s │ ├── DrvSystem_mips.s │ ├── DrvSystem_ppc.s │ ├── DrvSystem_sparc.s │ ├── DrvText.c │ ├── DrvText.h │ ├── DrvThreads.h │ ├── DrvThreads_X386.c │ ├── DrvThreads_generic.c │ ├── DrvThreads_nothreads.c │ ├── DrvTime.c │ ├── DrvUtils.c │ ├── DrvWinSock.c │ ├── DrvWinSock.h │ ├── DrvWindows.c │ ├── Makedepend.linux.bak │ ├── Makefile │ ├── RopCodes.c │ ├── XEvents.c │ └── XICCCM.c ├── resources ├── bitmaps │ ├── COPYING.LIB │ ├── basic_color.bmp │ ├── hlpdemo.hlp │ ├── hs_bdiag.bmp │ ├── hs_cross.bmp │ ├── hs_dcros.bmp │ ├── hs_fdiag.bmp │ ├── hs_horz.bmp │ ├── hs_vert.bmp │ ├── obmbtncn.bmp │ ├── obmbtsiz.bmp │ ├── obmchbxs.bmp │ ├── obmcheck.bmp │ ├── obmclose.bmp │ ├── obmcombo.bmp │ ├── obmcombo.bmp.color │ ├── obmdnard.bmp │ ├── obmdnari.bmp │ ├── obmdnarn.bmp │ ├── obmlfard.bmp │ ├── obmlfari.bmp │ ├── obmlfarn.bmp │ ├── obmmnar.bmp │ ├── obmredud.bmp │ ├── obmredun.bmp │ ├── obmrestd.bmp │ ├── obmrestn.bmp │ ├── obmrgard.bmp │ ├── obmrgari.bmp │ ├── obmrgarn.bmp │ ├── obmsize.bmp │ ├── obmupard.bmp │ ├── obmupari.bmp │ ├── obmuparn.bmp │ ├── obmzoomd.bmp │ ├── obmzoomn.bmp │ ├── oldclose.bmp │ ├── olddnar.bmp │ ├── oldlfar.bmp │ ├── oldredu.bmp │ ├── oldrest.bmp │ ├── oldrgar.bmp │ ├── oldupar.bmp │ ├── oldzoom.bmp │ ├── opencurr.bmp │ ├── splash-b.bmp │ ├── splash-n.bmp │ ├── splash-o.bmp │ ├── splash.bmp │ ├── splash2.bmp │ ├── splash24.bmp │ ├── splash28.bmp │ ├── splash_8.bmp │ ├── stdlarge.bmp │ ├── stdsmall.bmp │ ├── viewlarg.bmp │ ├── viewsmll.bmp │ ├── willows.bmp │ └── wsi_logo.bmp ├── cursors │ ├── COPYING.LIB │ ├── dividor.cur │ ├── divopen.cur │ ├── handdrag.cur │ ├── idcarrow_mac.cur │ ├── idcibeam_mac.cur │ ├── idcnull_mac.cur │ └── idcwait_mac.cur ├── fonts │ ├── COPYING.LIB │ ├── Makefile.in │ ├── courier.sfd │ ├── courier.ttf │ ├── fixedsys.sfd │ ├── fixedsys.ttf │ ├── fixedsys_jp.sfd │ ├── fixedsys_jp.ttf │ ├── genttf.ff │ ├── marlett.sfd │ ├── marlett.ttf │ ├── ms_sans_serif.sfd │ ├── ms_sans_serif.ttf │ ├── small_fonts.sfd │ ├── small_fonts.ttf │ ├── small_fonts_jp.sfd │ ├── small_fonts_jp.ttf │ ├── symbol.sfd │ ├── symbol.ttf │ ├── system.sfd │ ├── system.ttf │ ├── tahoma.sfd │ ├── tahoma.ttf │ ├── tahomabd.sfd │ ├── tahomabd.ttf │ ├── webdings.sfd │ ├── webdings.ttf │ ├── wingding.sfd │ └── wingding.ttf └── icons │ ├── COPYING.LIB │ ├── applictn.ico │ ├── asterisk.ico │ ├── dragarrw.ico │ ├── exclamtn.ico │ ├── icon2.ico │ ├── idiapp.ico │ ├── idihand.ico │ └── question.ico ├── samples ├── _wcc.cmd ├── _wcc.sh ├── apidemo │ ├── MsgCode.c │ ├── MsgCode.h │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ ├── willows.ico │ ├── windemo.c │ ├── windemo.def │ ├── windemo.h │ └── windemo.rc ├── bindemo │ ├── Makefile │ ├── bindemo.c │ ├── bindemo.def │ ├── bindemo.h │ ├── bindemo.rc │ └── willows.ico ├── bindemo2 │ ├── Makefile │ ├── bindemo2.c │ ├── bindemo2.def │ ├── bindemo2.h │ ├── bindemo2.rc │ ├── binlib2.c │ ├── binlib2.def │ ├── binlib2.h │ ├── binlib2.rc │ └── willows.ico ├── bn2demo │ ├── Makefile │ ├── bindemo.c │ ├── bindemo.def │ ├── bindemo.h │ ├── bindemo.rc │ ├── binlib.c │ ├── binlib.def │ ├── binlib.h │ ├── binlib.rc │ └── willows.ico ├── cdsdemo │ ├── Makefile │ ├── cdsdemo.c │ ├── cdsdemo.def │ ├── cdsdemo.h │ ├── cdsdemo.rc │ └── willows.ico ├── cliptext │ ├── Makefile │ ├── cliptext.c │ ├── cliptext.def │ ├── cliptext.h │ ├── cliptext.h.orig │ ├── cliptext.mak │ ├── cliptext.rc │ ├── mk │ └── resource.h ├── ctrldemo │ ├── Makefile │ ├── ctrldemo.c │ ├── ctrldemo.def │ ├── ctrldemo.rc │ ├── proppage.c │ ├── resource.h │ ├── toolbar.bmp │ └── willows.ico ├── dlgdemo │ ├── Makefile │ ├── dlgdemo.c │ ├── dlgdemo.def │ ├── dlgdemo.h │ ├── dlgdemo.rc │ └── willows.ico ├── dlldemo │ ├── Makefile │ ├── bitmaps.c │ ├── bitmaps.def │ ├── bitmaps.h │ ├── bitmaps.rc │ ├── dlldemo.c │ ├── dlldemo.def │ ├── dlldemo.h │ ├── dlldemo.rc │ ├── dllres.c │ ├── dllres.def │ ├── dllres.h │ ├── dllres.rc │ ├── willows.bmp │ └── willows.ico ├── hlpdemo │ ├── Makefile │ ├── hlpalias.h │ ├── hlpdemo.c │ ├── hlpdemo.def │ ├── hlpdemo.h │ ├── hlpdemo.hlp │ ├── hlpdemo.hpj │ ├── hlpdemo.rc │ ├── hlpdemo.rtf │ ├── mjb1.hlp │ └── willows.ico ├── hyperoid │ ├── HYPEROID.INI │ ├── Makefile │ ├── blank.bmp │ ├── bomb.bmp │ ├── copying.txt │ ├── hyperoid.c │ ├── hyperoid.h │ ├── hyperoid.ico │ ├── hyperoid.rc │ ├── level.bmp │ ├── life.bmp │ ├── num0.bmp │ ├── num1.bmp │ ├── num2.bmp │ ├── num3.bmp │ ├── num4.bmp │ ├── num5.bmp │ ├── num6.bmp │ ├── num7.bmp │ ├── num8.bmp │ ├── num9.bmp │ ├── panic.ico │ ├── plus.bmp │ ├── read.me │ ├── roidsupp.c │ ├── score.bmp │ ├── shield.bmp │ └── winext.h ├── listview │ ├── Makefile │ ├── bel.ico │ ├── listview.c │ ├── listview.h │ ├── listview.ico │ ├── listview.rc │ ├── red.ico │ ├── red2.ico │ ├── resource.h │ └── sea.ico ├── makefile ├── mdidemo │ ├── Makefile │ ├── mdidemo.c │ ├── mdidemo.def │ ├── mdidemo.h │ ├── mdidemo.rc │ └── willows.ico ├── msgdemo │ ├── Makefile │ ├── msg.c │ ├── msgcode.c │ ├── msgcode.h │ ├── msgdemo.c │ ├── msgdemo.def │ ├── msgdemo.h │ ├── msgdemo.rc │ └── willows.ico ├── progbar │ ├── Makefile │ ├── progress.c │ ├── progress.h │ ├── progress.ico │ ├── progress.rc │ └── resource.h ├── prtdemo │ ├── Makefile │ ├── prtdemo.c │ ├── prtdemo.def │ ├── prtdemo.h │ ├── prtdemo.rc │ └── willows.ico ├── treeview │ ├── Makefile │ ├── TVDialog.c │ ├── TViewApp.c │ ├── TViewApp.h │ ├── TViewApp.rc │ ├── itemstat.bmp │ ├── resource.h │ ├── trview.bmp │ └── willows.ico ├── vbdemo │ ├── Makefile │ └── windemo.c ├── windemo │ ├── Makefile │ ├── willows.ico │ ├── windemo.c │ ├── windemo.def │ ├── windemo.h │ └── windemo.rc ├── windry │ ├── Makefile │ ├── windry.c │ └── windry.rc └── wmfdemo │ ├── Makefile │ ├── willows.ico │ ├── wmfdemo.c │ ├── wmfdemo.def │ ├── wmfdemo.h │ └── wmfdemo.rc ├── test ├── _wcc.cmd ├── _wcc.sh ├── alloc │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── alloc.c │ └── makefile ├── atom │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── atom.c │ └── makefile ├── bitmap │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── bitmap.c │ └── makefile ├── class │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── class.c │ └── makefile ├── clipboard │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── clipboard.c │ └── makefile ├── combo │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── combo.c │ └── makefile ├── comm16 │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── comm16.c │ └── makefile ├── dce │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── dce.c │ └── makefile ├── dialog │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── dialog.c │ └── makefile ├── dosmem │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── dosmem.c │ └── makefile ├── file │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── file.c │ └── makefile ├── filedlg │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── filedlg.c │ └── makefile ├── infosize │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── infosize.c │ └── makefile ├── listbox │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── listbox.c │ └── makefile ├── makefile ├── mapping │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── mapping.c ├── msg │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── msg.c ├── oem2ansi.c ├── oem2ansi.def ├── printdlg │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── printdlg.c ├── profile │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── profile.c ├── socket16 │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── socket16.c ├── str │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── str.c ├── sys │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── sys.c ├── sysdir │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── sysdir.c ├── test.h ├── text │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── text.c └── timer │ ├── _wcc.cmd │ ├── _wcc.sh │ ├── makefile │ └── timer.c ├── user ├── Accelerators.c ├── Atoms.c ├── Caret.c ├── Classes.c ├── Controls.c ├── DrawText.c ├── Events.c ├── GlobalData1.c ├── Icon.c ├── InitApp.c ├── Listbox.c ├── Listbox.h ├── Menu.c ├── Menu.h ├── Misc.c ├── Rect.c ├── Resources.c ├── StringFunc.asm ├── Strings.c ├── SysMetrics.c ├── Time.c ├── WinInit.c ├── Windows.c ├── _wcc.cmd ├── _wcc.sh ├── comm.c ├── dialog.c ├── hook.c ├── langenv.inc ├── libentry.asm ├── libmain.c ├── licence.txt ├── list.h ├── makefile ├── network.c ├── notes.txt ├── res │ ├── idcappst.cur │ ├── idcarrow.cur │ ├── idccross.cur │ ├── idcdrag.cur │ ├── idchelp.cur │ ├── idcibeam.cur │ ├── idcicon.cur │ ├── idcno.cur │ ├── idcnull.cur │ ├── idcsize.cur │ ├── idcszne.cur │ ├── idcszns.cur │ ├── idcsznw.cur │ ├── idcszwe.cur │ ├── idcuparr.cur │ └── idcwait.cur ├── smallcode.asm ├── user.h ├── user.rc └── winnet.h ├── utilities ├── COPYING.LIB ├── Makefile ├── Utilities.def ├── Utilities.rc ├── Utilities_Init.cpp ├── WABlock.h ├── WAChunk.h ├── WAHandle.h ├── WArray.cpp ├── WArray.h ├── WBlock.cpp ├── WBlock.h ├── WChunk.cpp ├── WChunk.h ├── WElement.cpp ├── WElement.h ├── WErr.h ├── WGlobalHeap.cpp ├── WGlobalHeap.h ├── WHandle.cpp ├── WHandle.h ├── WHeap.cpp ├── WHeap.h ├── WHeapFuncs.cpp ├── WHeapFuncs.h ├── WMemory.cpp ├── WMemory.h ├── WSharedLib.cpp ├── WSharedLib.h ├── WString.cpp ├── WString.h ├── WUtilities.cpp ├── WUtilities.h └── Willows.h ├── win.cnf ├── README.MD ├── Screenshot from 2022-09-11 20-47-47.png ├── _wcc.cmd ├── _wcc.sh ├── boot.png ├── dev.img ├── execlogo.asm ├── licence.txt ├── logo.png ├── makefile ├── win100.png └── win31.png └── winkrnl ├── 1 ├── .version ├── About.h ├── Beep.c ├── BinTypes.h ├── BitmapBin.c ├── Button.c ├── Button.h ├── ButtonDraw.c ├── COPYING.LIB ├── Callback.c ├── Caret.c ├── Classes.c ├── Classes.h ├── Clipboard.c ├── Clipboard.h ├── ComboBox.c ├── Comm.c ├── Comm.h ├── CommIF.c ├── ConvertArray.c ├── ConvertMsg.c ├── ConvertRes.c ├── ConvertRes.h ├── CreateProcess.c ├── Critical.c ├── DPMI.c ├── DPMI.h ├── DPMInotify.c ├── DefWnd.c ├── DeviceData.c ├── DeviceData.h ├── Dialog.c ├── Dialog.h ├── Display.h ├── DisplayClipping.c ├── DisplayDC.c ├── DisplayGraphics.c ├── DisplayObjects.c ├── DisplayText.c ├── Dither.c ├── Driver.c ├── Driver.h ├── Edit.c ├── Edit.h ├── EditDraw.c ├── EditKey.c ├── EditMem.c ├── EditMemBin.c ├── EditMisc.c ├── Editx.h ├── Endian.h ├── Events.c ├── Exec.c ├── Exec.h ├── ExecSysV.c ├── ExecUtl.S ├── Execlinux.c ├── FancyRgn.c ├── File32.c ├── FileSys.c ├── FileSys.h ├── FormatMessage.c ├── Frame.c ├── Frame.h ├── Gdi.h ├── GdiBitmaps.c ├── GdiBoundsRect.c ├── GdiBrute.c ├── GdiClipping.c ├── GdiDC.c ├── GdiDC.h ├── GdiDCAttr.c ├── GdiDCAttr.h ├── GdiDDK.h ├── GdiGraphics.c ├── GdiImages.c ├── GdiImages.c.old ├── GdiImages.c.orig ├── GdiMath.c ├── GdiObjects.c ├── GdiObjects.h ├── GdiPrinter.c ├── GdiRegions.c ├── GdiRegions.h ├── GdiTTEngine.c ├── GdiText.c ├── GdiText.h ├── GenericIF.c ├── Hook.c ├── Hook.h ├── HookIF.c ├── Hotkey.c ├── Hotkey.h ├── IOEmu.c ├── Interlock.c ├── Intp.h ├── IsBinary.c ├── Kernel.c ├── Kernel.h ├── Keyboard.c ├── KrnAtoms.c ├── KrnAtoms.h ├── KrnCatch.c ├── KrnFileIO.c ├── KrnTask.c ├── KrnTask.h ├── LSDevices.c ├── LZExpand.h ├── Listbox.c ├── Listbox.h ├── LoadDLL.c ├── LoadDLL.h ├── LoadEXE.h ├── LoadLibrary.c ├── LocalMem.c ├── MDI.c ├── MSWinSock.h ├── Makedepend.linux.bak ├── Makefile ├── MapMode.c ├── MemoryIF.c ├── MenuAPI.c ├── MenuProc.c ├── Menus.h ├── MessageBox.c ├── Messages.c ├── Messages.h ├── Meta.h ├── MetaGraphics.c ├── MetaGraphics.h ├── MetaObjects.c ├── Metafile.c ├── Metaplay.c ├── ModTable.c ├── ModTable.h ├── MsgCode.c ├── MsgCode.h ├── Net.c ├── O2CompObj.c ├── O2GUID.c ├── OEMRoutines.c ├── OEMTab.c ├── ObjEngine.c ├── ObjEngine.h ├── Objects.h ├── OleCli.c ├── OleIF.c ├── OleSvr.c ├── Palette.c ├── PrintIF.c ├── PrintManager.c ├── PrinterBin.c ├── PrinterBin.h ├── PrinterDC.c ├── PrinterDC.h ├── PrinterGraphics.c ├── Profile.c ├── Resources.c ├── RscData.def ├── RscData.h ├── RscData.rc ├── RscTable.c ├── RscTemplate.c ├── Scroll.c ├── Scroll.h ├── ScrollPaint.c ├── Segment.h ├── SpecialIF.c ├── Static.c ├── Static.h ├── Strings.c ├── SysMetrics.c ├── SysMetrics.h ├── SysMisc.c ├── TWINPrint.h ├── Threads.c ├── Time.c ├── TwinDeflib.c ├── TwinRT.def ├── TwinRT.rc ├── TwinSock.h ├── TwinXWin.c~ ├── UsrCursor.c ├── Validate.h ├── ValidateModule.c ├── WBmp.c ├── WBmp.h ├── WCursor.h ├── WIcon.h ├── WImageIO.c ├── WImageIO.h ├── WSysMenu.c ├── Willows.h ├── WinConfig.c ├── WinConfig.h ├── WinData.h ├── WinDefs.h ├── WinHelp.c ├── WinHelp.h ├── WinInit.c ├── WinMalloc.h ├── WinSockUtil.c ├── WindowBytes.c ├── WindowBytes.h ├── WindowCreate.c ├── WindowCreate.h ├── WindowDC.c ├── WindowDC.h ├── WindowPos.c ├── WindowProps.c ├── WindowRedraw.c ├── commctrlCompileFlags.h ├── compat.h ├── invoke_binary.c ├── invoke_binary.h ├── kerndef.h ├── libtwin.exports ├── libtwin32.exports ├── make_thunk.c ├── make_thunk.h ├── makever.sh ├── mfs_config.h ├── mfs_dir.h ├── mfs_fileio.h ├── neexe.h ├── peexe.h ├── scode.h ├── utils.c └── utils.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/.gitmodules -------------------------------------------------------------------------------- /MME/mmsystem.dll/MCI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem.dll/MCI.c -------------------------------------------------------------------------------- /MME/mmsystem.dll/MMBin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem.dll/MMBin.c -------------------------------------------------------------------------------- /MME/mmsystem.dll/MMIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem.dll/MMIF.c -------------------------------------------------------------------------------- /MME/mmsystem.dll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem.dll/Makefile -------------------------------------------------------------------------------- /MME/mmsystem.dll/MultiMedia.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MME/mmsystem/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem/COPYING.LIB -------------------------------------------------------------------------------- /MME/mmsystem/Makedepend.linux.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MME/mmsystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem/Makefile -------------------------------------------------------------------------------- /MME/mmsystem/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem/midi.c -------------------------------------------------------------------------------- /MME/mmsystem/mmaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem/mmaux.c -------------------------------------------------------------------------------- /MME/mmsystem/mmddk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem/mmddk.h -------------------------------------------------------------------------------- /MME/mmsystem/mmdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem/mmdrv.c -------------------------------------------------------------------------------- /MME/mmsystem/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/mmsystem/wave.c -------------------------------------------------------------------------------- /MME/system.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/system.ini -------------------------------------------------------------------------------- /MME/win.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/MME/win.ini -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/README.MD -------------------------------------------------------------------------------- /_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/_wcc.cmd -------------------------------------------------------------------------------- /_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/_wcc.sh -------------------------------------------------------------------------------- /applications/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/_wcc.cmd -------------------------------------------------------------------------------- /applications/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/_wcc.sh -------------------------------------------------------------------------------- /applications/calc/En.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/En.rc -------------------------------------------------------------------------------- /applications/calc/Es.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/Es.rc -------------------------------------------------------------------------------- /applications/calc/Fr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/Fr.rc -------------------------------------------------------------------------------- /applications/calc/It.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/It.rc -------------------------------------------------------------------------------- /applications/calc/Nl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/Nl.rc -------------------------------------------------------------------------------- /applications/calc/Pt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/Pt.rc -------------------------------------------------------------------------------- /applications/calc/Ru.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/Ru.rc -------------------------------------------------------------------------------- /applications/calc/Si.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/Si.rc -------------------------------------------------------------------------------- /applications/calc/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/_wcc.cmd -------------------------------------------------------------------------------- /applications/calc/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/_wcc.sh -------------------------------------------------------------------------------- /applications/calc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/makefile -------------------------------------------------------------------------------- /applications/calc/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/rsrc.rc -------------------------------------------------------------------------------- /applications/calc/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/stats.c -------------------------------------------------------------------------------- /applications/calc/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/calc/stats.h -------------------------------------------------------------------------------- /applications/calendar/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/cardfile/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/charmap/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/charmap/map.c -------------------------------------------------------------------------------- /applications/drwatson/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/drwatson/note.txt: -------------------------------------------------------------------------------- 1 | May be use Dr. Watcom as base for clone? 2 | -------------------------------------------------------------------------------- /applications/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/makefile -------------------------------------------------------------------------------- /applications/mplayer/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/msd/ALPHA.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/msd/ALPHA.DOC -------------------------------------------------------------------------------- /applications/msd/LICENSE: -------------------------------------------------------------------------------- 1 | Public Domain 2 | -------------------------------------------------------------------------------- /applications/msd/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/msd/_wcc.cmd -------------------------------------------------------------------------------- /applications/msd/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/msd/_wcc.sh -------------------------------------------------------------------------------- /applications/msd/ifprun.ic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/msd/ifprun.ic -------------------------------------------------------------------------------- /applications/msd/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/msd/makefile -------------------------------------------------------------------------------- /applications/packager/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/pbrush/dib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/pbrush/dib.h -------------------------------------------------------------------------------- /applications/printman/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/progman/Cs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Cs.rc -------------------------------------------------------------------------------- /applications/progman/Da.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Da.rc -------------------------------------------------------------------------------- /applications/progman/De.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/De.rc -------------------------------------------------------------------------------- /applications/progman/En.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/En.rc -------------------------------------------------------------------------------- /applications/progman/Es.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Es.rc -------------------------------------------------------------------------------- /applications/progman/Fr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Fr.rc -------------------------------------------------------------------------------- /applications/progman/Hu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Hu.rc -------------------------------------------------------------------------------- /applications/progman/It.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/It.rc -------------------------------------------------------------------------------- /applications/progman/Ko.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Ko.rc -------------------------------------------------------------------------------- /applications/progman/Nl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Nl.rc -------------------------------------------------------------------------------- /applications/progman/No.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/No.rc -------------------------------------------------------------------------------- /applications/progman/Pl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Pl.rc -------------------------------------------------------------------------------- /applications/progman/Pt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Pt.rc -------------------------------------------------------------------------------- /applications/progman/Ru.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Ru.rc -------------------------------------------------------------------------------- /applications/progman/Si.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Si.rc -------------------------------------------------------------------------------- /applications/progman/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/TODO -------------------------------------------------------------------------------- /applications/progman/Tr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Tr.rc -------------------------------------------------------------------------------- /applications/progman/Zh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/progman/Zh.rc -------------------------------------------------------------------------------- /applications/regedit/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/setup/stage2/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/soundrec/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/winhelp/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | hlp2sgml 3 | lex.yy.c 4 | rsrc.res 5 | winhelp.exe.dbg.c 6 | -------------------------------------------------------------------------------- /applications/winhelp/Cs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Cs.rc -------------------------------------------------------------------------------- /applications/winhelp/Da.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Da.rc -------------------------------------------------------------------------------- /applications/winhelp/De.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/De.rc -------------------------------------------------------------------------------- /applications/winhelp/En.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/En.rc -------------------------------------------------------------------------------- /applications/winhelp/Es.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Es.rc -------------------------------------------------------------------------------- /applications/winhelp/Fi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Fi.rc -------------------------------------------------------------------------------- /applications/winhelp/Fr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Fr.rc -------------------------------------------------------------------------------- /applications/winhelp/Hu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Hu.rc -------------------------------------------------------------------------------- /applications/winhelp/It.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/It.rc -------------------------------------------------------------------------------- /applications/winhelp/Ko.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Ko.rc -------------------------------------------------------------------------------- /applications/winhelp/Nl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Nl.rc -------------------------------------------------------------------------------- /applications/winhelp/Pl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Pl.rc -------------------------------------------------------------------------------- /applications/winhelp/Pt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Pt.rc -------------------------------------------------------------------------------- /applications/winhelp/Ru.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Ru.rc -------------------------------------------------------------------------------- /applications/winhelp/Si.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Si.rc -------------------------------------------------------------------------------- /applications/winhelp/Sk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Sk.rc -------------------------------------------------------------------------------- /applications/winhelp/Sw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Sw.rc -------------------------------------------------------------------------------- /applications/winhelp/Va.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Va.rc -------------------------------------------------------------------------------- /applications/winhelp/Wa.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Wa.rc -------------------------------------------------------------------------------- /applications/winhelp/Zh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/winhelp/Zh.rc -------------------------------------------------------------------------------- /applications/winsheld/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/write/De.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/De.rc -------------------------------------------------------------------------------- /applications/write/En.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/En.rc -------------------------------------------------------------------------------- /applications/write/Fr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/Fr.rc -------------------------------------------------------------------------------- /applications/write/Ko.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/Ko.rc -------------------------------------------------------------------------------- /applications/write/Nl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/Nl.rc -------------------------------------------------------------------------------- /applications/write/No.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/No.rc -------------------------------------------------------------------------------- /applications/write/Pl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/Pl.rc -------------------------------------------------------------------------------- /applications/write/Ro.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/Ro.rc -------------------------------------------------------------------------------- /applications/write/Ru.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/Ru.rc -------------------------------------------------------------------------------- /applications/write/Si.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/Si.rc -------------------------------------------------------------------------------- /applications/write/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/rsrc.rc -------------------------------------------------------------------------------- /applications/write/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/applications/write/write.c -------------------------------------------------------------------------------- /dlls/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/_wcc.cmd -------------------------------------------------------------------------------- /dlls/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/_wcc.sh -------------------------------------------------------------------------------- /dlls/cards/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/COPYING -------------------------------------------------------------------------------- /dlls/cards/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/COPYING.LIB -------------------------------------------------------------------------------- /dlls/cards/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/_wcc.cmd -------------------------------------------------------------------------------- /dlls/cards/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/_wcc.sh -------------------------------------------------------------------------------- /dlls/cards/cards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/cards.c -------------------------------------------------------------------------------- /dlls/cards/cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/cards.h -------------------------------------------------------------------------------- /dlls/cards/cards.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/cards.rc -------------------------------------------------------------------------------- /dlls/cards/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/cards/makefile -------------------------------------------------------------------------------- /dlls/commctrl/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/COPYING.LIB -------------------------------------------------------------------------------- /dlls/commctrl/CommCtrlRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/CommCtrlRC.h -------------------------------------------------------------------------------- /dlls/commctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/Makefile -------------------------------------------------------------------------------- /dlls/commctrl/WAHDItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WAHDItem.h -------------------------------------------------------------------------------- /dlls/commctrl/WALVItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WALVItems.h -------------------------------------------------------------------------------- /dlls/commctrl/WCommCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WCommCtrl.h -------------------------------------------------------------------------------- /dlls/commctrl/WCommCtrl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WCommCtrl.rc -------------------------------------------------------------------------------- /dlls/commctrl/WCommctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WCommctl.c -------------------------------------------------------------------------------- /dlls/commctrl/WCommctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WCommctl.h -------------------------------------------------------------------------------- /dlls/commctrl/WControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WControl.h -------------------------------------------------------------------------------- /dlls/commctrl/WDragLbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WDragLbx.c -------------------------------------------------------------------------------- /dlls/commctrl/WDragLbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WDragLbx.h -------------------------------------------------------------------------------- /dlls/commctrl/WHDItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WHDItem.h -------------------------------------------------------------------------------- /dlls/commctrl/WHdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WHdr.c -------------------------------------------------------------------------------- /dlls/commctrl/WHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WHdr.h -------------------------------------------------------------------------------- /dlls/commctrl/WHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WHeader.h -------------------------------------------------------------------------------- /dlls/commctrl/WImgList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WImgList.c -------------------------------------------------------------------------------- /dlls/commctrl/WImgList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WImgList.h -------------------------------------------------------------------------------- /dlls/commctrl/WLVColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLVColumn.h -------------------------------------------------------------------------------- /dlls/commctrl/WLVHelpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLVHelpr.c -------------------------------------------------------------------------------- /dlls/commctrl/WLVHelpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLVHelpr.h -------------------------------------------------------------------------------- /dlls/commctrl/WLVItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLVItem.h -------------------------------------------------------------------------------- /dlls/commctrl/WLVLBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLVLBox.c -------------------------------------------------------------------------------- /dlls/commctrl/WLVLBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLVLBox.h -------------------------------------------------------------------------------- /dlls/commctrl/WLView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLView.c -------------------------------------------------------------------------------- /dlls/commctrl/WLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLView.h -------------------------------------------------------------------------------- /dlls/commctrl/WListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WListView.h -------------------------------------------------------------------------------- /dlls/commctrl/WLists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLists.c -------------------------------------------------------------------------------- /dlls/commctrl/WLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WLists.h -------------------------------------------------------------------------------- /dlls/commctrl/WProgBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WProgBar.c -------------------------------------------------------------------------------- /dlls/commctrl/WProgBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WProgBar.h -------------------------------------------------------------------------------- /dlls/commctrl/WPropsht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WPropsht.c -------------------------------------------------------------------------------- /dlls/commctrl/WPropsht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WPropsht.h -------------------------------------------------------------------------------- /dlls/commctrl/WResourc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WResourc.h -------------------------------------------------------------------------------- /dlls/commctrl/WStatusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WStatusb.c -------------------------------------------------------------------------------- /dlls/commctrl/WStatusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WStatusb.h -------------------------------------------------------------------------------- /dlls/commctrl/WTVLBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTVLBox.c -------------------------------------------------------------------------------- /dlls/commctrl/WTVLBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTVLBox.h -------------------------------------------------------------------------------- /dlls/commctrl/WTView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTView.c -------------------------------------------------------------------------------- /dlls/commctrl/WTView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTView.h -------------------------------------------------------------------------------- /dlls/commctrl/WTab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTab.c -------------------------------------------------------------------------------- /dlls/commctrl/WTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTab.h -------------------------------------------------------------------------------- /dlls/commctrl/WTlbCust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTlbCust.c -------------------------------------------------------------------------------- /dlls/commctrl/WTlbCust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTlbCust.h -------------------------------------------------------------------------------- /dlls/commctrl/WToolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WToolbar.c -------------------------------------------------------------------------------- /dlls/commctrl/WToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WToolbar.h -------------------------------------------------------------------------------- /dlls/commctrl/WTooltip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTooltip.c -------------------------------------------------------------------------------- /dlls/commctrl/WTooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTooltip.h -------------------------------------------------------------------------------- /dlls/commctrl/WTrackbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTrackbr.c -------------------------------------------------------------------------------- /dlls/commctrl/WTrackbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WTrackbr.h -------------------------------------------------------------------------------- /dlls/commctrl/WUpdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WUpdown.c -------------------------------------------------------------------------------- /dlls/commctrl/WUpdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WUpdown.h -------------------------------------------------------------------------------- /dlls/commctrl/WWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/WWindow.h -------------------------------------------------------------------------------- /dlls/commctrl/custcntl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/custcntl.rc -------------------------------------------------------------------------------- /dlls/commctrl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commctrl/resource.h -------------------------------------------------------------------------------- /dlls/commdlg/ChooseColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/ChooseColor.c -------------------------------------------------------------------------------- /dlls/commdlg/ChooseFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/ChooseFont.c -------------------------------------------------------------------------------- /dlls/commdlg/Commdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/Commdlg.c -------------------------------------------------------------------------------- /dlls/commdlg/Commdlg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/Commdlg.def -------------------------------------------------------------------------------- /dlls/commdlg/Commdlg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/Commdlg.rc -------------------------------------------------------------------------------- /dlls/commdlg/CommdlgIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/CommdlgIF.c -------------------------------------------------------------------------------- /dlls/commdlg/CommdlgIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/CommdlgIT.c -------------------------------------------------------------------------------- /dlls/commdlg/CommdlgRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/CommdlgRC.h -------------------------------------------------------------------------------- /dlls/commdlg/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/Dialog.h -------------------------------------------------------------------------------- /dlls/commdlg/FindReplDlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/FindReplDlg.c -------------------------------------------------------------------------------- /dlls/commdlg/GdiDDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/GdiDDK.h -------------------------------------------------------------------------------- /dlls/commdlg/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/Log.h -------------------------------------------------------------------------------- /dlls/commdlg/PrintDlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/PrintDlg.c -------------------------------------------------------------------------------- /dlls/commdlg/PrinterDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/PrinterDC.h -------------------------------------------------------------------------------- /dlls/commdlg/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/System.h -------------------------------------------------------------------------------- /dlls/commdlg/WinConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/WinConfig.c -------------------------------------------------------------------------------- /dlls/commdlg/WinConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/WinConfig.h -------------------------------------------------------------------------------- /dlls/commdlg/_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/_Makefile -------------------------------------------------------------------------------- /dlls/commdlg/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/_wcc.cmd -------------------------------------------------------------------------------- /dlls/commdlg/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/_wcc.sh -------------------------------------------------------------------------------- /dlls/commdlg/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/api.txt -------------------------------------------------------------------------------- /dlls/commdlg/colordlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/colordlg.h -------------------------------------------------------------------------------- /dlls/commdlg/libmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/libmain.c -------------------------------------------------------------------------------- /dlls/commdlg/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/licence.txt -------------------------------------------------------------------------------- /dlls/commdlg/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/makefile -------------------------------------------------------------------------------- /dlls/commdlg/mfs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/mfs_config.h -------------------------------------------------------------------------------- /dlls/commdlg/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/platform.h -------------------------------------------------------------------------------- /dlls/commdlg/porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/porting.h -------------------------------------------------------------------------------- /dlls/commdlg/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/print.h -------------------------------------------------------------------------------- /dlls/commdlg/res/cdrom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/res/cdrom.bmp -------------------------------------------------------------------------------- /dlls/commdlg/res/dir.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/commdlg/res/dir.bmp -------------------------------------------------------------------------------- /dlls/ddeml/DdeML.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ddeml/DdeML.c -------------------------------------------------------------------------------- /dlls/ddeml/DdeML.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ddeml/DdeML.def -------------------------------------------------------------------------------- /dlls/ddeml/DdeMLDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ddeml/DdeMLDefs.h -------------------------------------------------------------------------------- /dlls/ddeml/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ddeml/_wcc.cmd -------------------------------------------------------------------------------- /dlls/ddeml/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ddeml/_wcc.sh -------------------------------------------------------------------------------- /dlls/ddeml/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ddeml/licence.txt -------------------------------------------------------------------------------- /dlls/ddeml/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ddeml/makefile -------------------------------------------------------------------------------- /dlls/lzexpand/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/lzexpand/COPYING.LIB -------------------------------------------------------------------------------- /dlls/lzexpand/LZExpand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/lzexpand/LZExpand.c -------------------------------------------------------------------------------- /dlls/lzexpand/LZExpand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/lzexpand/LZExpand.h -------------------------------------------------------------------------------- /dlls/lzexpand/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/lzexpand/_wcc.cmd -------------------------------------------------------------------------------- /dlls/lzexpand/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/lzexpand/_wcc.sh -------------------------------------------------------------------------------- /dlls/lzexpand/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/lzexpand/makefile -------------------------------------------------------------------------------- /dlls/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/makefile -------------------------------------------------------------------------------- /dlls/shell/About.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/About.c -------------------------------------------------------------------------------- /dlls/shell/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/COPYING.LIB -------------------------------------------------------------------------------- /dlls/shell/DragDrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/DragDrop.c -------------------------------------------------------------------------------- /dlls/shell/Environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Environment.c -------------------------------------------------------------------------------- /dlls/shell/Exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Exec.c -------------------------------------------------------------------------------- /dlls/shell/GlobalData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/GlobalData.c -------------------------------------------------------------------------------- /dlls/shell/Hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Hook.c -------------------------------------------------------------------------------- /dlls/shell/Icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Icon.c -------------------------------------------------------------------------------- /dlls/shell/REG.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/REG.DAT -------------------------------------------------------------------------------- /dlls/shell/Registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Registry.c -------------------------------------------------------------------------------- /dlls/shell/Restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Restart.c -------------------------------------------------------------------------------- /dlls/shell/Shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Shell.c -------------------------------------------------------------------------------- /dlls/shell/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Shell.h -------------------------------------------------------------------------------- /dlls/shell/Shell.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Shell.rc -------------------------------------------------------------------------------- /dlls/shell/Strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/Strings.c -------------------------------------------------------------------------------- /dlls/shell/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/_wcc.cmd -------------------------------------------------------------------------------- /dlls/shell/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/_wcc.sh -------------------------------------------------------------------------------- /dlls/shell/atomex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/atomex.c -------------------------------------------------------------------------------- /dlls/shell/hashtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/hashtest.c -------------------------------------------------------------------------------- /dlls/shell/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/makefile -------------------------------------------------------------------------------- /dlls/shell/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/note.txt -------------------------------------------------------------------------------- /dlls/shell/regtst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/regtst.c -------------------------------------------------------------------------------- /dlls/shell/shelltests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/shelltests.c -------------------------------------------------------------------------------- /dlls/shell/willows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/shell/willows.ico -------------------------------------------------------------------------------- /dlls/toolhelp/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/toolhelp/_wcc.cmd -------------------------------------------------------------------------------- /dlls/toolhelp/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/toolhelp/_wcc.sh -------------------------------------------------------------------------------- /dlls/toolhelp/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/toolhelp/licence.txt -------------------------------------------------------------------------------- /dlls/toolhelp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/toolhelp/makefile -------------------------------------------------------------------------------- /dlls/toolhelp/toolhelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/toolhelp/toolhelp.c -------------------------------------------------------------------------------- /dlls/toolhelp/toolhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/toolhelp/toolhelp.h -------------------------------------------------------------------------------- /dlls/ver/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ver/Makefile.in -------------------------------------------------------------------------------- /dlls/ver/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ver/_wcc.cmd -------------------------------------------------------------------------------- /dlls/ver/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ver/_wcc.sh -------------------------------------------------------------------------------- /dlls/ver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ver/makefile -------------------------------------------------------------------------------- /dlls/ver/movefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ver/movefile.c -------------------------------------------------------------------------------- /dlls/ver/ver.dll16.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ver/ver.dll16.spec -------------------------------------------------------------------------------- /dlls/ver/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/ver/version.c -------------------------------------------------------------------------------- /dlls/winsock/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/winsock/COPYING.LIB -------------------------------------------------------------------------------- /dlls/winsock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/winsock/Makefile -------------------------------------------------------------------------------- /dlls/winsock/WinSock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/winsock/WinSock.c -------------------------------------------------------------------------------- /dlls/winsock/WinSock.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/winsock/WinSock.def -------------------------------------------------------------------------------- /dlls/winsock/WinSock.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dlls/winsock/WinSockBin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/winsock/WinSockBin.c -------------------------------------------------------------------------------- /dlls/winsock/WinSockBin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/winsock/WinSockBin.h -------------------------------------------------------------------------------- /dlls/winsock/WinSockIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dlls/winsock/WinSockIF.c -------------------------------------------------------------------------------- /docs/3270.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/3270.txt -------------------------------------------------------------------------------- /docs/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/_wcc.cmd -------------------------------------------------------------------------------- /docs/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/_wcc.sh -------------------------------------------------------------------------------- /docs/networks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/networks.txt -------------------------------------------------------------------------------- /docs/printers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/printers.txt -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /docs/sysini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/sysini.txt -------------------------------------------------------------------------------- /docs/sysini2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/sysini2.txt -------------------------------------------------------------------------------- /docs/sysini3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/sysini3.txt -------------------------------------------------------------------------------- /docs/winini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/winini.txt -------------------------------------------------------------------------------- /docs/winini2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/docs/winini2.txt -------------------------------------------------------------------------------- /dosx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/README.md -------------------------------------------------------------------------------- /dosx/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/_wcc.cmd -------------------------------------------------------------------------------- /dosx/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/_wcc.sh -------------------------------------------------------------------------------- /dosx/dosx-orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/dosx-orig.txt -------------------------------------------------------------------------------- /dosx/dosx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/dosx.asm -------------------------------------------------------------------------------- /dosx/hdpmi/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/hdpmi/_wcc.cmd -------------------------------------------------------------------------------- /dosx/hdpmi/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/hdpmi/_wcc.sh -------------------------------------------------------------------------------- /dosx/hdpmi/hdpmi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/hdpmi/hdpmi.mk -------------------------------------------------------------------------------- /dosx/hdpmi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/hdpmi/makefile -------------------------------------------------------------------------------- /dosx/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/licence.txt -------------------------------------------------------------------------------- /dosx/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/dosx/makefile -------------------------------------------------------------------------------- /drivers/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/_wcc.cmd -------------------------------------------------------------------------------- /drivers/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/_wcc.sh -------------------------------------------------------------------------------- /drivers/comm/modtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/comm/modtable.h -------------------------------------------------------------------------------- /drivers/display/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/display/_wcc.sh -------------------------------------------------------------------------------- /drivers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/makefile -------------------------------------------------------------------------------- /drivers/mousec/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/mousec/_wcc.cmd -------------------------------------------------------------------------------- /drivers/mousec/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/mousec/_wcc.sh -------------------------------------------------------------------------------- /drivers/mousec/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/mousec/makefile -------------------------------------------------------------------------------- /drivers/mousec/mouse.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/mousec/mouse.mk -------------------------------------------------------------------------------- /drivers/sound/Sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/sound/Sound.c -------------------------------------------------------------------------------- /drivers/sound/Sound.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/sound/Sound.def -------------------------------------------------------------------------------- /drivers/sound/Sound.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/sound/Sound.doc -------------------------------------------------------------------------------- /drivers/sound/Sound.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/sound/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/sound/_wcc.cmd -------------------------------------------------------------------------------- /drivers/sound/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/sound/_wcc.sh -------------------------------------------------------------------------------- /drivers/sound/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/sound/makefile -------------------------------------------------------------------------------- /drivers/system/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/system/_wcc.cmd -------------------------------------------------------------------------------- /drivers/system/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/system/_wcc.sh -------------------------------------------------------------------------------- /drivers/system/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/system/makefile -------------------------------------------------------------------------------- /drivers/system/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/drivers/system/system.c -------------------------------------------------------------------------------- /include/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Log.h -------------------------------------------------------------------------------- /include/ModTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/ModTable.h -------------------------------------------------------------------------------- /include/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Module.h -------------------------------------------------------------------------------- /include/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Net.h -------------------------------------------------------------------------------- /include/OEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/OEM.h -------------------------------------------------------------------------------- /include/ObjEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/ObjEngine.h -------------------------------------------------------------------------------- /include/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Printer.h -------------------------------------------------------------------------------- /include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Resources.h -------------------------------------------------------------------------------- /include/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/System.h -------------------------------------------------------------------------------- /include/WSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/WSA.h -------------------------------------------------------------------------------- /include/WinMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/WinMalloc.h -------------------------------------------------------------------------------- /include/WinSockUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/WinSockUtil.h -------------------------------------------------------------------------------- /include/WinSocktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/WinSocktypes.h -------------------------------------------------------------------------------- /include/Win_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_Base.h -------------------------------------------------------------------------------- /include/Win_Clib.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_Clib.h~ -------------------------------------------------------------------------------- /include/Win_Gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_Gdi.h -------------------------------------------------------------------------------- /include/Win_Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_Kernel.h -------------------------------------------------------------------------------- /include/Win_MS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_MS.h -------------------------------------------------------------------------------- /include/Win_NT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_NT.h -------------------------------------------------------------------------------- /include/Win_Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_Reg.h -------------------------------------------------------------------------------- /include/Win_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_Thread.h -------------------------------------------------------------------------------- /include/Win_User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Win_User.h -------------------------------------------------------------------------------- /include/Winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/Winver.h -------------------------------------------------------------------------------- /include/cderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/cderr.h -------------------------------------------------------------------------------- /include/coguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/coguid.h -------------------------------------------------------------------------------- /include/colordlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/colordlg.h -------------------------------------------------------------------------------- /include/commctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/commctrl.h -------------------------------------------------------------------------------- /include/commdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/commdlg.h -------------------------------------------------------------------------------- /include/compobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/compobj.h -------------------------------------------------------------------------------- /include/dde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/dde.h -------------------------------------------------------------------------------- /include/ddeml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/ddeml.h -------------------------------------------------------------------------------- /include/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/dir.h -------------------------------------------------------------------------------- /include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/dlfcn.h -------------------------------------------------------------------------------- /include/dlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/dlgs.h -------------------------------------------------------------------------------- /include/initguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/initguid.h -------------------------------------------------------------------------------- /include/kerndef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/kerndef.h -------------------------------------------------------------------------------- /include/mmsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/mmsystem.h -------------------------------------------------------------------------------- /include/ole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/ole.h -------------------------------------------------------------------------------- /include/ole2ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/ole2ver.h -------------------------------------------------------------------------------- /include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/platform.h -------------------------------------------------------------------------------- /include/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/print.h -------------------------------------------------------------------------------- /include/prsht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/prsht.h -------------------------------------------------------------------------------- /include/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/share.h -------------------------------------------------------------------------------- /include/shellapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/shellapi.h -------------------------------------------------------------------------------- /include/toolhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/toolhelp.h -------------------------------------------------------------------------------- /include/twindll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/twindll.h -------------------------------------------------------------------------------- /include/win_con.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/win_con.h -------------------------------------------------------------------------------- /include/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/windows.h -------------------------------------------------------------------------------- /include/windowsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/windowsx.h -------------------------------------------------------------------------------- /include/windowsx16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/windowsx16.h -------------------------------------------------------------------------------- /include/windowsx32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/windowsx32.h -------------------------------------------------------------------------------- /include/winsock.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/include/winsock.h~ -------------------------------------------------------------------------------- /kernel/_profstrg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/_profstrg.asm -------------------------------------------------------------------------------- /kernel/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/_wcc.cmd -------------------------------------------------------------------------------- /kernel/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/_wcc.sh -------------------------------------------------------------------------------- /kernel/ascii.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/ascii.inc -------------------------------------------------------------------------------- /kernel/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/atom.c -------------------------------------------------------------------------------- /kernel/catch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/catch.c -------------------------------------------------------------------------------- /kernel/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/debug.inc -------------------------------------------------------------------------------- /kernel/div.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/div.asm -------------------------------------------------------------------------------- /kernel/dos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/dos.txt -------------------------------------------------------------------------------- /kernel/dosbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/dosbox.c -------------------------------------------------------------------------------- /kernel/dosh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/dosh.txt -------------------------------------------------------------------------------- /kernel/dpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/dpmi.h -------------------------------------------------------------------------------- /kernel/enable.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/enable.asm -------------------------------------------------------------------------------- /kernel/enablec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/enablec.c -------------------------------------------------------------------------------- /kernel/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/error.c -------------------------------------------------------------------------------- /kernel/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/file.c -------------------------------------------------------------------------------- /kernel/fixups.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/fixups.inc -------------------------------------------------------------------------------- /kernel/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/global.c -------------------------------------------------------------------------------- /kernel/hmemset.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/hmemset.asm -------------------------------------------------------------------------------- /kernel/kernel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/kernel.inc -------------------------------------------------------------------------------- /kernel/kernel/_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/kernel/_makefile -------------------------------------------------------------------------------- /kernel/kernel/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/kernel/_wcc.cmd -------------------------------------------------------------------------------- /kernel/kernel/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/kernel/_wcc.sh -------------------------------------------------------------------------------- /kernel/kernel/docs/undocwin_files/ads.js: -------------------------------------------------------------------------------- 1 | try{ 2 | var adsloaded=1; 3 | }catch(e){}; 4 | -------------------------------------------------------------------------------- /kernel/kernel/docs/undocwin_files/uutils_002.fcg: -------------------------------------------------------------------------------- 1 | var uPreroll_showed = ''; -------------------------------------------------------------------------------- /kernel/kernel/docs/undocwin_files/Без имени: -------------------------------------------------------------------------------- 1 | //error102 -------------------------------------------------------------------------------- /kernel/kernel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/kernel/makefile -------------------------------------------------------------------------------- /kernel/kernel/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/kernel/notes.txt -------------------------------------------------------------------------------- /kernel/kernel16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/kernel16.asm -------------------------------------------------------------------------------- /kernel/krnl286/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/krnl286/_wcc.cmd -------------------------------------------------------------------------------- /kernel/krnl286/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/krnl286/_wcc.sh -------------------------------------------------------------------------------- /kernel/krnl286/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/krnl286/makefile -------------------------------------------------------------------------------- /kernel/krnl386/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/krnl386/_wcc.cmd -------------------------------------------------------------------------------- /kernel/krnl386/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/krnl386/_wcc.sh -------------------------------------------------------------------------------- /kernel/krnl386/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/krnl386/makefile -------------------------------------------------------------------------------- /kernel/ldboot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/ldboot.asm -------------------------------------------------------------------------------- /kernel/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/licence.txt -------------------------------------------------------------------------------- /kernel/local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/local.c -------------------------------------------------------------------------------- /kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/main.c -------------------------------------------------------------------------------- /kernel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/makefile -------------------------------------------------------------------------------- /kernel/mthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/mthread.c -------------------------------------------------------------------------------- /kernel/mthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/mthread.h -------------------------------------------------------------------------------- /kernel/nls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/nls.asm -------------------------------------------------------------------------------- /kernel/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/notes.txt -------------------------------------------------------------------------------- /kernel/pdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/pdb.inc -------------------------------------------------------------------------------- /kernel/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/printf.c -------------------------------------------------------------------------------- /kernel/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/profile.c -------------------------------------------------------------------------------- /kernel/protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/protect.c -------------------------------------------------------------------------------- /kernel/pusha.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/pusha.inc -------------------------------------------------------------------------------- /kernel/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/resource.c -------------------------------------------------------------------------------- /kernel/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/rom.c -------------------------------------------------------------------------------- /kernel/selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/selector.c -------------------------------------------------------------------------------- /kernel/smallcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/smallcode.asm -------------------------------------------------------------------------------- /kernel/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/strings.c -------------------------------------------------------------------------------- /kernel/struct.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/struct.inc -------------------------------------------------------------------------------- /kernel/task.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/task.asm -------------------------------------------------------------------------------- /kernel/taskc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/taskc.c -------------------------------------------------------------------------------- /kernel/tdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/tdb.inc -------------------------------------------------------------------------------- /kernel/thhook.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernel/trace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/trace.inc -------------------------------------------------------------------------------- /kernel/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/version.c -------------------------------------------------------------------------------- /kernel/win_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/win_private.h -------------------------------------------------------------------------------- /kernel/winexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/kernel/winexec.c -------------------------------------------------------------------------------- /libs/cardlib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/ReadMe.txt -------------------------------------------------------------------------------- /libs/cardlib/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/_wcc.cmd -------------------------------------------------------------------------------- /libs/cardlib/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/_wcc.sh -------------------------------------------------------------------------------- /libs/cardlib/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/card.h -------------------------------------------------------------------------------- /libs/cardlib/cardlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/cardlib.h -------------------------------------------------------------------------------- /libs/cardlib/dropzone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/dropzone.h -------------------------------------------------------------------------------- /libs/cardlib/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/globals.h -------------------------------------------------------------------------------- /libs/cardlib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/cardlib/makefile -------------------------------------------------------------------------------- /libs/mfc/Include/CWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/Include/CWnd.h -------------------------------------------------------------------------------- /libs/mfc/libofcdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/libofcdll.def -------------------------------------------------------------------------------- /libs/mfc/ofcdll.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/ofcdll.dev -------------------------------------------------------------------------------- /libs/mfc/ofcstat.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/ofcstat.dev -------------------------------------------------------------------------------- /libs/mfc/src/CCmdUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/CCmdUI.cpp -------------------------------------------------------------------------------- /libs/mfc/src/CFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/CFile.cpp -------------------------------------------------------------------------------- /libs/mfc/src/CPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/CPoint.cpp -------------------------------------------------------------------------------- /libs/mfc/src/CRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/CRect.cpp -------------------------------------------------------------------------------- /libs/mfc/src/CSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/CSize.cpp -------------------------------------------------------------------------------- /libs/mfc/src/CView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/CView.cpp -------------------------------------------------------------------------------- /libs/mfc/src/CWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/CWnd.cpp -------------------------------------------------------------------------------- /libs/mfc/src/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/src/Debug.cpp -------------------------------------------------------------------------------- /libs/mfc/test/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/test/MainFrm.h -------------------------------------------------------------------------------- /libs/mfc/test/OfcTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/test/OfcTest.h -------------------------------------------------------------------------------- /libs/mfc/test/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/libs/mfc/test/StdAfx.h -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/licence.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/makefile -------------------------------------------------------------------------------- /notes/30en/comm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/comm.txt -------------------------------------------------------------------------------- /notes/30en/gdi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/gdi.txt -------------------------------------------------------------------------------- /notes/30en/kernel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/kernel.txt -------------------------------------------------------------------------------- /notes/30en/keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/keyboard.txt -------------------------------------------------------------------------------- /notes/30en/krnl286.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/krnl286.txt -------------------------------------------------------------------------------- /notes/30en/krnl386.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/krnl386.txt -------------------------------------------------------------------------------- /notes/30en/lzexpand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/lzexpand.txt -------------------------------------------------------------------------------- /notes/30en/mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/mouse.txt -------------------------------------------------------------------------------- /notes/30en/msnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/msnet.txt -------------------------------------------------------------------------------- /notes/30en/sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/sound.txt -------------------------------------------------------------------------------- /notes/30en/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/system.txt -------------------------------------------------------------------------------- /notes/30en/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/user.txt -------------------------------------------------------------------------------- /notes/30en/vga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/vga.txt -------------------------------------------------------------------------------- /notes/30en/win87em.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/30en/win87em.txt -------------------------------------------------------------------------------- /notes/9002a.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/9002a.htm -------------------------------------------------------------------------------- /notes/9003e.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/9003e.htm -------------------------------------------------------------------------------- /notes/dpmild16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/dpmild16.txt -------------------------------------------------------------------------------- /notes/exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/exports.txt -------------------------------------------------------------------------------- /notes/q81524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/q81524.txt -------------------------------------------------------------------------------- /notes/win30en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/win30en.txt -------------------------------------------------------------------------------- /notes/winexec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/winexec.txt -------------------------------------------------------------------------------- /notes/winos2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/notes/winos2.txt -------------------------------------------------------------------------------- /pal/x11/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/COPYING.LIB -------------------------------------------------------------------------------- /pal/x11/DrvColors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvColors.c -------------------------------------------------------------------------------- /pal/x11/DrvColors.h: -------------------------------------------------------------------------------- 1 | 2 | DWORD DrvMakePixel(COLORREF, LPDRIVERDC); 3 | 4 | -------------------------------------------------------------------------------- /pal/x11/DrvCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvCommon.h -------------------------------------------------------------------------------- /pal/x11/DrvConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvConfig.c -------------------------------------------------------------------------------- /pal/x11/DrvCursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvCursor.c -------------------------------------------------------------------------------- /pal/x11/DrvDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvDC.c -------------------------------------------------------------------------------- /pal/x11/DrvDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvDC.h -------------------------------------------------------------------------------- /pal/x11/DrvDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvDP.h -------------------------------------------------------------------------------- /pal/x11/DrvEvents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvEvents.c -------------------------------------------------------------------------------- /pal/x11/DrvFiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvFiles.c -------------------------------------------------------------------------------- /pal/x11/DrvFloodFill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvFloodFill.c -------------------------------------------------------------------------------- /pal/x11/DrvGraphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvGraphics.c -------------------------------------------------------------------------------- /pal/x11/DrvGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvGraphics.h -------------------------------------------------------------------------------- /pal/x11/DrvHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvHook.c -------------------------------------------------------------------------------- /pal/x11/DrvHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvHook.h -------------------------------------------------------------------------------- /pal/x11/DrvIPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvIPC.c -------------------------------------------------------------------------------- /pal/x11/DrvIPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvIPC.h -------------------------------------------------------------------------------- /pal/x11/DrvImages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvImages.c -------------------------------------------------------------------------------- /pal/x11/DrvImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvImages.h -------------------------------------------------------------------------------- /pal/x11/DrvInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvInit.c -------------------------------------------------------------------------------- /pal/x11/DrvInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvInit.h -------------------------------------------------------------------------------- /pal/x11/DrvKeyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvKeyboard.c -------------------------------------------------------------------------------- /pal/x11/DrvKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvKeyboard.h -------------------------------------------------------------------------------- /pal/x11/DrvMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvMemory.c -------------------------------------------------------------------------------- /pal/x11/DrvPrinting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvPrinting.c -------------------------------------------------------------------------------- /pal/x11/DrvROPCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvROPCodes.h -------------------------------------------------------------------------------- /pal/x11/DrvRegions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvRegions.c -------------------------------------------------------------------------------- /pal/x11/DrvRegions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvRegions.h -------------------------------------------------------------------------------- /pal/x11/DrvSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvSystem.c -------------------------------------------------------------------------------- /pal/x11/DrvSystem_ppc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvSystem_ppc.s -------------------------------------------------------------------------------- /pal/x11/DrvText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvText.c -------------------------------------------------------------------------------- /pal/x11/DrvText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvText.h -------------------------------------------------------------------------------- /pal/x11/DrvThreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvThreads.h -------------------------------------------------------------------------------- /pal/x11/DrvTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvTime.c -------------------------------------------------------------------------------- /pal/x11/DrvUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvUtils.c -------------------------------------------------------------------------------- /pal/x11/DrvWinSock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvWinSock.c -------------------------------------------------------------------------------- /pal/x11/DrvWinSock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvWinSock.h -------------------------------------------------------------------------------- /pal/x11/DrvWindows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/DrvWindows.c -------------------------------------------------------------------------------- /pal/x11/Makedepend.linux.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pal/x11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/Makefile -------------------------------------------------------------------------------- /pal/x11/RopCodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/RopCodes.c -------------------------------------------------------------------------------- /pal/x11/XEvents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/XEvents.c -------------------------------------------------------------------------------- /pal/x11/XICCCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/pal/x11/XICCCM.c -------------------------------------------------------------------------------- /samples/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/_wcc.cmd -------------------------------------------------------------------------------- /samples/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/_wcc.sh -------------------------------------------------------------------------------- /samples/apidemo/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/apidemo/_wcc.sh -------------------------------------------------------------------------------- /samples/bindemo2/binlib2.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/bn2demo/binlib.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/cliptext/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/cliptext/mk -------------------------------------------------------------------------------- /samples/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/makefile -------------------------------------------------------------------------------- /samples/msgdemo/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/msgdemo/msg.c -------------------------------------------------------------------------------- /samples/vbdemo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/vbdemo/Makefile -------------------------------------------------------------------------------- /samples/windry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/windry/Makefile -------------------------------------------------------------------------------- /samples/windry/windry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/samples/windry/windry.c -------------------------------------------------------------------------------- /samples/windry/windry.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/_wcc.cmd -------------------------------------------------------------------------------- /test/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/_wcc.sh -------------------------------------------------------------------------------- /test/alloc/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/alloc/_wcc.cmd -------------------------------------------------------------------------------- /test/alloc/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/alloc/_wcc.sh -------------------------------------------------------------------------------- /test/alloc/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/alloc/alloc.c -------------------------------------------------------------------------------- /test/alloc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/alloc/makefile -------------------------------------------------------------------------------- /test/atom/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/atom/_wcc.cmd -------------------------------------------------------------------------------- /test/atom/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/atom/_wcc.sh -------------------------------------------------------------------------------- /test/atom/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/atom/atom.c -------------------------------------------------------------------------------- /test/atom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/atom/makefile -------------------------------------------------------------------------------- /test/bitmap/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/bitmap/_wcc.cmd -------------------------------------------------------------------------------- /test/bitmap/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/bitmap/_wcc.sh -------------------------------------------------------------------------------- /test/bitmap/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/bitmap/bitmap.c -------------------------------------------------------------------------------- /test/bitmap/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/bitmap/makefile -------------------------------------------------------------------------------- /test/class/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/class/_wcc.cmd -------------------------------------------------------------------------------- /test/class/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/class/_wcc.sh -------------------------------------------------------------------------------- /test/class/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/class/class.c -------------------------------------------------------------------------------- /test/class/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/class/makefile -------------------------------------------------------------------------------- /test/clipboard/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/clipboard/_wcc.cmd -------------------------------------------------------------------------------- /test/clipboard/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/clipboard/_wcc.sh -------------------------------------------------------------------------------- /test/clipboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/clipboard/makefile -------------------------------------------------------------------------------- /test/combo/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/combo/_wcc.cmd -------------------------------------------------------------------------------- /test/combo/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/combo/_wcc.sh -------------------------------------------------------------------------------- /test/combo/combo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/combo/combo.c -------------------------------------------------------------------------------- /test/combo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/combo/makefile -------------------------------------------------------------------------------- /test/comm16/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/comm16/_wcc.cmd -------------------------------------------------------------------------------- /test/comm16/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/comm16/_wcc.sh -------------------------------------------------------------------------------- /test/comm16/comm16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/comm16/comm16.c -------------------------------------------------------------------------------- /test/comm16/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/comm16/makefile -------------------------------------------------------------------------------- /test/dce/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dce/_wcc.cmd -------------------------------------------------------------------------------- /test/dce/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dce/_wcc.sh -------------------------------------------------------------------------------- /test/dce/dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dce/dce.c -------------------------------------------------------------------------------- /test/dce/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dce/makefile -------------------------------------------------------------------------------- /test/dialog/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dialog/_wcc.cmd -------------------------------------------------------------------------------- /test/dialog/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dialog/_wcc.sh -------------------------------------------------------------------------------- /test/dialog/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dialog/dialog.c -------------------------------------------------------------------------------- /test/dialog/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dialog/makefile -------------------------------------------------------------------------------- /test/dosmem/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dosmem/_wcc.cmd -------------------------------------------------------------------------------- /test/dosmem/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dosmem/_wcc.sh -------------------------------------------------------------------------------- /test/dosmem/dosmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dosmem/dosmem.c -------------------------------------------------------------------------------- /test/dosmem/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/dosmem/makefile -------------------------------------------------------------------------------- /test/file/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/file/_wcc.cmd -------------------------------------------------------------------------------- /test/file/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/file/_wcc.sh -------------------------------------------------------------------------------- /test/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/file/file.c -------------------------------------------------------------------------------- /test/file/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/file/makefile -------------------------------------------------------------------------------- /test/filedlg/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/filedlg/_wcc.cmd -------------------------------------------------------------------------------- /test/filedlg/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/filedlg/_wcc.sh -------------------------------------------------------------------------------- /test/filedlg/filedlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/filedlg/filedlg.c -------------------------------------------------------------------------------- /test/filedlg/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/filedlg/makefile -------------------------------------------------------------------------------- /test/infosize/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/infosize/_wcc.cmd -------------------------------------------------------------------------------- /test/infosize/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/infosize/_wcc.sh -------------------------------------------------------------------------------- /test/infosize/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/infosize/makefile -------------------------------------------------------------------------------- /test/listbox/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/listbox/_wcc.cmd -------------------------------------------------------------------------------- /test/listbox/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/listbox/_wcc.sh -------------------------------------------------------------------------------- /test/listbox/listbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/listbox/listbox.c -------------------------------------------------------------------------------- /test/listbox/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/listbox/makefile -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/makefile -------------------------------------------------------------------------------- /test/mapping/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/mapping/_wcc.cmd -------------------------------------------------------------------------------- /test/mapping/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/mapping/_wcc.sh -------------------------------------------------------------------------------- /test/mapping/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/mapping/makefile -------------------------------------------------------------------------------- /test/mapping/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/mapping/mapping.c -------------------------------------------------------------------------------- /test/msg/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/msg/_wcc.cmd -------------------------------------------------------------------------------- /test/msg/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/msg/_wcc.sh -------------------------------------------------------------------------------- /test/msg/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/msg/makefile -------------------------------------------------------------------------------- /test/msg/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/msg/msg.c -------------------------------------------------------------------------------- /test/oem2ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/oem2ansi.c -------------------------------------------------------------------------------- /test/oem2ansi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/oem2ansi.def -------------------------------------------------------------------------------- /test/printdlg/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/printdlg/_wcc.cmd -------------------------------------------------------------------------------- /test/printdlg/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/printdlg/_wcc.sh -------------------------------------------------------------------------------- /test/printdlg/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/printdlg/makefile -------------------------------------------------------------------------------- /test/profile/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/profile/_wcc.cmd -------------------------------------------------------------------------------- /test/profile/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/profile/_wcc.sh -------------------------------------------------------------------------------- /test/profile/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/profile/makefile -------------------------------------------------------------------------------- /test/profile/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/profile/profile.c -------------------------------------------------------------------------------- /test/socket16/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/socket16/_wcc.cmd -------------------------------------------------------------------------------- /test/socket16/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/socket16/_wcc.sh -------------------------------------------------------------------------------- /test/socket16/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/socket16/makefile -------------------------------------------------------------------------------- /test/str/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/str/_wcc.cmd -------------------------------------------------------------------------------- /test/str/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/str/_wcc.sh -------------------------------------------------------------------------------- /test/str/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/str/makefile -------------------------------------------------------------------------------- /test/str/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/str/str.c -------------------------------------------------------------------------------- /test/sys/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sys/_wcc.cmd -------------------------------------------------------------------------------- /test/sys/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sys/_wcc.sh -------------------------------------------------------------------------------- /test/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sys/makefile -------------------------------------------------------------------------------- /test/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sys/sys.c -------------------------------------------------------------------------------- /test/sysdir/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sysdir/_wcc.cmd -------------------------------------------------------------------------------- /test/sysdir/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sysdir/_wcc.sh -------------------------------------------------------------------------------- /test/sysdir/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sysdir/makefile -------------------------------------------------------------------------------- /test/sysdir/sysdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/sysdir/sysdir.c -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/test.h -------------------------------------------------------------------------------- /test/text/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/text/_wcc.cmd -------------------------------------------------------------------------------- /test/text/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/text/_wcc.sh -------------------------------------------------------------------------------- /test/text/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/text/makefile -------------------------------------------------------------------------------- /test/text/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/text/text.c -------------------------------------------------------------------------------- /test/timer/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/timer/_wcc.cmd -------------------------------------------------------------------------------- /test/timer/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/timer/_wcc.sh -------------------------------------------------------------------------------- /test/timer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/timer/makefile -------------------------------------------------------------------------------- /test/timer/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/test/timer/timer.c -------------------------------------------------------------------------------- /user/Accelerators.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /user/Atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Atoms.c -------------------------------------------------------------------------------- /user/Caret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Caret.c -------------------------------------------------------------------------------- /user/Classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Classes.c -------------------------------------------------------------------------------- /user/Controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Controls.c -------------------------------------------------------------------------------- /user/DrawText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/DrawText.c -------------------------------------------------------------------------------- /user/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Events.c -------------------------------------------------------------------------------- /user/GlobalData1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/GlobalData1.c -------------------------------------------------------------------------------- /user/Icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Icon.c -------------------------------------------------------------------------------- /user/InitApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/InitApp.c -------------------------------------------------------------------------------- /user/Listbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Listbox.c -------------------------------------------------------------------------------- /user/Listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Listbox.h -------------------------------------------------------------------------------- /user/Menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Menu.c -------------------------------------------------------------------------------- /user/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Menu.h -------------------------------------------------------------------------------- /user/Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Misc.c -------------------------------------------------------------------------------- /user/Rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Rect.c -------------------------------------------------------------------------------- /user/Resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Resources.c -------------------------------------------------------------------------------- /user/StringFunc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/StringFunc.asm -------------------------------------------------------------------------------- /user/Strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Strings.c -------------------------------------------------------------------------------- /user/SysMetrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/SysMetrics.c -------------------------------------------------------------------------------- /user/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Time.c -------------------------------------------------------------------------------- /user/WinInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/WinInit.c -------------------------------------------------------------------------------- /user/Windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/Windows.c -------------------------------------------------------------------------------- /user/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/_wcc.cmd -------------------------------------------------------------------------------- /user/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/_wcc.sh -------------------------------------------------------------------------------- /user/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/comm.c -------------------------------------------------------------------------------- /user/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/dialog.c -------------------------------------------------------------------------------- /user/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/hook.c -------------------------------------------------------------------------------- /user/langenv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/langenv.inc -------------------------------------------------------------------------------- /user/libentry.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/libentry.asm -------------------------------------------------------------------------------- /user/libmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/libmain.c -------------------------------------------------------------------------------- /user/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/licence.txt -------------------------------------------------------------------------------- /user/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/list.h -------------------------------------------------------------------------------- /user/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/makefile -------------------------------------------------------------------------------- /user/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/network.c -------------------------------------------------------------------------------- /user/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/notes.txt -------------------------------------------------------------------------------- /user/res/idcappst.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcappst.cur -------------------------------------------------------------------------------- /user/res/idcarrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcarrow.cur -------------------------------------------------------------------------------- /user/res/idccross.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idccross.cur -------------------------------------------------------------------------------- /user/res/idcdrag.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcdrag.cur -------------------------------------------------------------------------------- /user/res/idchelp.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idchelp.cur -------------------------------------------------------------------------------- /user/res/idcibeam.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcibeam.cur -------------------------------------------------------------------------------- /user/res/idcicon.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcicon.cur -------------------------------------------------------------------------------- /user/res/idcno.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcno.cur -------------------------------------------------------------------------------- /user/res/idcnull.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcnull.cur -------------------------------------------------------------------------------- /user/res/idcsize.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcsize.cur -------------------------------------------------------------------------------- /user/res/idcszne.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcszne.cur -------------------------------------------------------------------------------- /user/res/idcszns.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcszns.cur -------------------------------------------------------------------------------- /user/res/idcsznw.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcsznw.cur -------------------------------------------------------------------------------- /user/res/idcszwe.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcszwe.cur -------------------------------------------------------------------------------- /user/res/idcuparr.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcuparr.cur -------------------------------------------------------------------------------- /user/res/idcwait.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/res/idcwait.cur -------------------------------------------------------------------------------- /user/smallcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/smallcode.asm -------------------------------------------------------------------------------- /user/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/user.h -------------------------------------------------------------------------------- /user/user.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/user.rc -------------------------------------------------------------------------------- /user/winnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/user/winnet.h -------------------------------------------------------------------------------- /utilities/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/COPYING.LIB -------------------------------------------------------------------------------- /utilities/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/Makefile -------------------------------------------------------------------------------- /utilities/Utilities.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/Utilities.def -------------------------------------------------------------------------------- /utilities/Utilities.rc: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /utilities/WABlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WABlock.h -------------------------------------------------------------------------------- /utilities/WAChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WAChunk.h -------------------------------------------------------------------------------- /utilities/WAHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WAHandle.h -------------------------------------------------------------------------------- /utilities/WArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WArray.cpp -------------------------------------------------------------------------------- /utilities/WArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WArray.h -------------------------------------------------------------------------------- /utilities/WBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WBlock.cpp -------------------------------------------------------------------------------- /utilities/WBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WBlock.h -------------------------------------------------------------------------------- /utilities/WChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WChunk.cpp -------------------------------------------------------------------------------- /utilities/WChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WChunk.h -------------------------------------------------------------------------------- /utilities/WElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WElement.cpp -------------------------------------------------------------------------------- /utilities/WElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WElement.h -------------------------------------------------------------------------------- /utilities/WErr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WErr.h -------------------------------------------------------------------------------- /utilities/WGlobalHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WGlobalHeap.h -------------------------------------------------------------------------------- /utilities/WHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WHandle.cpp -------------------------------------------------------------------------------- /utilities/WHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WHandle.h -------------------------------------------------------------------------------- /utilities/WHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WHeap.cpp -------------------------------------------------------------------------------- /utilities/WHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WHeap.h -------------------------------------------------------------------------------- /utilities/WHeapFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WHeapFuncs.h -------------------------------------------------------------------------------- /utilities/WMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WMemory.cpp -------------------------------------------------------------------------------- /utilities/WMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WMemory.h -------------------------------------------------------------------------------- /utilities/WSharedLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WSharedLib.h -------------------------------------------------------------------------------- /utilities/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WString.cpp -------------------------------------------------------------------------------- /utilities/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WString.h -------------------------------------------------------------------------------- /utilities/WUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/WUtilities.h -------------------------------------------------------------------------------- /utilities/Willows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/utilities/Willows.h -------------------------------------------------------------------------------- /win.cnf/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/README.MD -------------------------------------------------------------------------------- /win.cnf/_wcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/_wcc.cmd -------------------------------------------------------------------------------- /win.cnf/_wcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/_wcc.sh -------------------------------------------------------------------------------- /win.cnf/boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/boot.png -------------------------------------------------------------------------------- /win.cnf/dev.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/dev.img -------------------------------------------------------------------------------- /win.cnf/execlogo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/execlogo.asm -------------------------------------------------------------------------------- /win.cnf/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/licence.txt -------------------------------------------------------------------------------- /win.cnf/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/logo.png -------------------------------------------------------------------------------- /win.cnf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/makefile -------------------------------------------------------------------------------- /win.cnf/win100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/win100.png -------------------------------------------------------------------------------- /win.cnf/win31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/win.cnf/win31.png -------------------------------------------------------------------------------- /winkrnl/.version: -------------------------------------------------------------------------------- 1 | 83 2 | -------------------------------------------------------------------------------- /winkrnl/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/1 -------------------------------------------------------------------------------- /winkrnl/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/About.h -------------------------------------------------------------------------------- /winkrnl/Beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Beep.c -------------------------------------------------------------------------------- /winkrnl/BinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/BinTypes.h -------------------------------------------------------------------------------- /winkrnl/BitmapBin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/BitmapBin.c -------------------------------------------------------------------------------- /winkrnl/Button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Button.c -------------------------------------------------------------------------------- /winkrnl/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Button.h -------------------------------------------------------------------------------- /winkrnl/ButtonDraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ButtonDraw.c -------------------------------------------------------------------------------- /winkrnl/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/COPYING.LIB -------------------------------------------------------------------------------- /winkrnl/Callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Callback.c -------------------------------------------------------------------------------- /winkrnl/Caret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Caret.c -------------------------------------------------------------------------------- /winkrnl/Classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Classes.c -------------------------------------------------------------------------------- /winkrnl/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Classes.h -------------------------------------------------------------------------------- /winkrnl/Clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Clipboard.c -------------------------------------------------------------------------------- /winkrnl/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Clipboard.h -------------------------------------------------------------------------------- /winkrnl/ComboBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ComboBox.c -------------------------------------------------------------------------------- /winkrnl/Comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Comm.c -------------------------------------------------------------------------------- /winkrnl/Comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Comm.h -------------------------------------------------------------------------------- /winkrnl/CommIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/CommIF.c -------------------------------------------------------------------------------- /winkrnl/ConvertArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ConvertArray.c -------------------------------------------------------------------------------- /winkrnl/ConvertMsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ConvertMsg.c -------------------------------------------------------------------------------- /winkrnl/ConvertRes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ConvertRes.c -------------------------------------------------------------------------------- /winkrnl/ConvertRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ConvertRes.h -------------------------------------------------------------------------------- /winkrnl/CreateProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/CreateProcess.c -------------------------------------------------------------------------------- /winkrnl/Critical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Critical.c -------------------------------------------------------------------------------- /winkrnl/DPMI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DPMI.c -------------------------------------------------------------------------------- /winkrnl/DPMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DPMI.h -------------------------------------------------------------------------------- /winkrnl/DPMInotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DPMInotify.c -------------------------------------------------------------------------------- /winkrnl/DefWnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DefWnd.c -------------------------------------------------------------------------------- /winkrnl/DeviceData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DeviceData.c -------------------------------------------------------------------------------- /winkrnl/DeviceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DeviceData.h -------------------------------------------------------------------------------- /winkrnl/Dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Dialog.c -------------------------------------------------------------------------------- /winkrnl/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Dialog.h -------------------------------------------------------------------------------- /winkrnl/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Display.h -------------------------------------------------------------------------------- /winkrnl/DisplayDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DisplayDC.c -------------------------------------------------------------------------------- /winkrnl/DisplayText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/DisplayText.c -------------------------------------------------------------------------------- /winkrnl/Dither.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Dither.c -------------------------------------------------------------------------------- /winkrnl/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Driver.c -------------------------------------------------------------------------------- /winkrnl/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Driver.h -------------------------------------------------------------------------------- /winkrnl/Edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Edit.c -------------------------------------------------------------------------------- /winkrnl/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Edit.h -------------------------------------------------------------------------------- /winkrnl/EditDraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/EditDraw.c -------------------------------------------------------------------------------- /winkrnl/EditKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/EditKey.c -------------------------------------------------------------------------------- /winkrnl/EditMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/EditMem.c -------------------------------------------------------------------------------- /winkrnl/EditMemBin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/EditMemBin.c -------------------------------------------------------------------------------- /winkrnl/EditMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/EditMisc.c -------------------------------------------------------------------------------- /winkrnl/Editx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Editx.h -------------------------------------------------------------------------------- /winkrnl/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Endian.h -------------------------------------------------------------------------------- /winkrnl/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Events.c -------------------------------------------------------------------------------- /winkrnl/Exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Exec.c -------------------------------------------------------------------------------- /winkrnl/Exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Exec.h -------------------------------------------------------------------------------- /winkrnl/ExecSysV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ExecSysV.c -------------------------------------------------------------------------------- /winkrnl/ExecUtl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ExecUtl.S -------------------------------------------------------------------------------- /winkrnl/Execlinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Execlinux.c -------------------------------------------------------------------------------- /winkrnl/FancyRgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/FancyRgn.c -------------------------------------------------------------------------------- /winkrnl/File32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/File32.c -------------------------------------------------------------------------------- /winkrnl/FileSys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/FileSys.c -------------------------------------------------------------------------------- /winkrnl/FileSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/FileSys.h -------------------------------------------------------------------------------- /winkrnl/FormatMessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/FormatMessage.c -------------------------------------------------------------------------------- /winkrnl/Frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Frame.c -------------------------------------------------------------------------------- /winkrnl/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Frame.h -------------------------------------------------------------------------------- /winkrnl/Gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Gdi.h -------------------------------------------------------------------------------- /winkrnl/GdiBitmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiBitmaps.c -------------------------------------------------------------------------------- /winkrnl/GdiBoundsRect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiBoundsRect.c -------------------------------------------------------------------------------- /winkrnl/GdiBrute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiBrute.c -------------------------------------------------------------------------------- /winkrnl/GdiClipping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiClipping.c -------------------------------------------------------------------------------- /winkrnl/GdiDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiDC.c -------------------------------------------------------------------------------- /winkrnl/GdiDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiDC.h -------------------------------------------------------------------------------- /winkrnl/GdiDCAttr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiDCAttr.c -------------------------------------------------------------------------------- /winkrnl/GdiDCAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiDCAttr.h -------------------------------------------------------------------------------- /winkrnl/GdiDDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiDDK.h -------------------------------------------------------------------------------- /winkrnl/GdiGraphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiGraphics.c -------------------------------------------------------------------------------- /winkrnl/GdiImages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiImages.c -------------------------------------------------------------------------------- /winkrnl/GdiImages.c.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiImages.c.old -------------------------------------------------------------------------------- /winkrnl/GdiMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiMath.c -------------------------------------------------------------------------------- /winkrnl/GdiObjects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiObjects.c -------------------------------------------------------------------------------- /winkrnl/GdiObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiObjects.h -------------------------------------------------------------------------------- /winkrnl/GdiPrinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiPrinter.c -------------------------------------------------------------------------------- /winkrnl/GdiRegions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiRegions.c -------------------------------------------------------------------------------- /winkrnl/GdiRegions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiRegions.h -------------------------------------------------------------------------------- /winkrnl/GdiTTEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiTTEngine.c -------------------------------------------------------------------------------- /winkrnl/GdiText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiText.c -------------------------------------------------------------------------------- /winkrnl/GdiText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GdiText.h -------------------------------------------------------------------------------- /winkrnl/GenericIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/GenericIF.c -------------------------------------------------------------------------------- /winkrnl/Hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Hook.c -------------------------------------------------------------------------------- /winkrnl/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Hook.h -------------------------------------------------------------------------------- /winkrnl/HookIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/HookIF.c -------------------------------------------------------------------------------- /winkrnl/Hotkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Hotkey.c -------------------------------------------------------------------------------- /winkrnl/Hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Hotkey.h -------------------------------------------------------------------------------- /winkrnl/IOEmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/IOEmu.c -------------------------------------------------------------------------------- /winkrnl/Interlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Interlock.c -------------------------------------------------------------------------------- /winkrnl/Intp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Intp.h -------------------------------------------------------------------------------- /winkrnl/IsBinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/IsBinary.c -------------------------------------------------------------------------------- /winkrnl/Kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Kernel.c -------------------------------------------------------------------------------- /winkrnl/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Kernel.h -------------------------------------------------------------------------------- /winkrnl/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Keyboard.c -------------------------------------------------------------------------------- /winkrnl/KrnAtoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/KrnAtoms.c -------------------------------------------------------------------------------- /winkrnl/KrnAtoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/KrnAtoms.h -------------------------------------------------------------------------------- /winkrnl/KrnCatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/KrnCatch.c -------------------------------------------------------------------------------- /winkrnl/KrnFileIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/KrnFileIO.c -------------------------------------------------------------------------------- /winkrnl/KrnTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/KrnTask.c -------------------------------------------------------------------------------- /winkrnl/KrnTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/KrnTask.h -------------------------------------------------------------------------------- /winkrnl/LSDevices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/LSDevices.c -------------------------------------------------------------------------------- /winkrnl/LZExpand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/LZExpand.h -------------------------------------------------------------------------------- /winkrnl/Listbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Listbox.c -------------------------------------------------------------------------------- /winkrnl/Listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Listbox.h -------------------------------------------------------------------------------- /winkrnl/LoadDLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/LoadDLL.c -------------------------------------------------------------------------------- /winkrnl/LoadDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/LoadDLL.h -------------------------------------------------------------------------------- /winkrnl/LoadEXE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/LoadEXE.h -------------------------------------------------------------------------------- /winkrnl/LoadLibrary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/LoadLibrary.c -------------------------------------------------------------------------------- /winkrnl/LocalMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/LocalMem.c -------------------------------------------------------------------------------- /winkrnl/MDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MDI.c -------------------------------------------------------------------------------- /winkrnl/MSWinSock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MSWinSock.h -------------------------------------------------------------------------------- /winkrnl/Makedepend.linux.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /winkrnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Makefile -------------------------------------------------------------------------------- /winkrnl/MapMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MapMode.c -------------------------------------------------------------------------------- /winkrnl/MemoryIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MemoryIF.c -------------------------------------------------------------------------------- /winkrnl/MenuAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MenuAPI.c -------------------------------------------------------------------------------- /winkrnl/MenuProc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MenuProc.c -------------------------------------------------------------------------------- /winkrnl/Menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Menus.h -------------------------------------------------------------------------------- /winkrnl/MessageBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MessageBox.c -------------------------------------------------------------------------------- /winkrnl/Messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Messages.c -------------------------------------------------------------------------------- /winkrnl/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Messages.h -------------------------------------------------------------------------------- /winkrnl/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Meta.h -------------------------------------------------------------------------------- /winkrnl/MetaGraphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MetaGraphics.c -------------------------------------------------------------------------------- /winkrnl/MetaGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MetaGraphics.h -------------------------------------------------------------------------------- /winkrnl/MetaObjects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MetaObjects.c -------------------------------------------------------------------------------- /winkrnl/Metafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Metafile.c -------------------------------------------------------------------------------- /winkrnl/Metaplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Metaplay.c -------------------------------------------------------------------------------- /winkrnl/ModTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ModTable.c -------------------------------------------------------------------------------- /winkrnl/ModTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ModTable.h -------------------------------------------------------------------------------- /winkrnl/MsgCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MsgCode.c -------------------------------------------------------------------------------- /winkrnl/MsgCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/MsgCode.h -------------------------------------------------------------------------------- /winkrnl/Net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Net.c -------------------------------------------------------------------------------- /winkrnl/O2CompObj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/O2CompObj.c -------------------------------------------------------------------------------- /winkrnl/O2GUID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/O2GUID.c -------------------------------------------------------------------------------- /winkrnl/OEMRoutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/OEMRoutines.c -------------------------------------------------------------------------------- /winkrnl/OEMTab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/OEMTab.c -------------------------------------------------------------------------------- /winkrnl/ObjEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ObjEngine.c -------------------------------------------------------------------------------- /winkrnl/ObjEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ObjEngine.h -------------------------------------------------------------------------------- /winkrnl/Objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Objects.h -------------------------------------------------------------------------------- /winkrnl/OleCli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/OleCli.c -------------------------------------------------------------------------------- /winkrnl/OleIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/OleIF.c -------------------------------------------------------------------------------- /winkrnl/OleSvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/OleSvr.c -------------------------------------------------------------------------------- /winkrnl/Palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Palette.c -------------------------------------------------------------------------------- /winkrnl/PrintIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/PrintIF.c -------------------------------------------------------------------------------- /winkrnl/PrintManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/PrintManager.c -------------------------------------------------------------------------------- /winkrnl/PrinterBin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/PrinterBin.c -------------------------------------------------------------------------------- /winkrnl/PrinterBin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/PrinterBin.h -------------------------------------------------------------------------------- /winkrnl/PrinterDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/PrinterDC.c -------------------------------------------------------------------------------- /winkrnl/PrinterDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/PrinterDC.h -------------------------------------------------------------------------------- /winkrnl/Profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Profile.c -------------------------------------------------------------------------------- /winkrnl/Resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Resources.c -------------------------------------------------------------------------------- /winkrnl/RscData.def: -------------------------------------------------------------------------------- 1 | RESOURCE USER 2 | -------------------------------------------------------------------------------- /winkrnl/RscData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/RscData.h -------------------------------------------------------------------------------- /winkrnl/RscData.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/RscData.rc -------------------------------------------------------------------------------- /winkrnl/RscTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/RscTable.c -------------------------------------------------------------------------------- /winkrnl/RscTemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/RscTemplate.c -------------------------------------------------------------------------------- /winkrnl/Scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Scroll.c -------------------------------------------------------------------------------- /winkrnl/Scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Scroll.h -------------------------------------------------------------------------------- /winkrnl/ScrollPaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/ScrollPaint.c -------------------------------------------------------------------------------- /winkrnl/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Segment.h -------------------------------------------------------------------------------- /winkrnl/SpecialIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/SpecialIF.c -------------------------------------------------------------------------------- /winkrnl/Static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Static.c -------------------------------------------------------------------------------- /winkrnl/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Static.h -------------------------------------------------------------------------------- /winkrnl/Strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Strings.c -------------------------------------------------------------------------------- /winkrnl/SysMetrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/SysMetrics.c -------------------------------------------------------------------------------- /winkrnl/SysMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/SysMetrics.h -------------------------------------------------------------------------------- /winkrnl/SysMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/SysMisc.c -------------------------------------------------------------------------------- /winkrnl/TWINPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/TWINPrint.h -------------------------------------------------------------------------------- /winkrnl/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Threads.c -------------------------------------------------------------------------------- /winkrnl/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Time.c -------------------------------------------------------------------------------- /winkrnl/TwinDeflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/TwinDeflib.c -------------------------------------------------------------------------------- /winkrnl/TwinRT.def: -------------------------------------------------------------------------------- 1 | 2 | NAME Windows Emulator 3 | -------------------------------------------------------------------------------- /winkrnl/TwinRT.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/TwinRT.rc -------------------------------------------------------------------------------- /winkrnl/TwinSock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/TwinSock.h -------------------------------------------------------------------------------- /winkrnl/TwinXWin.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/TwinXWin.c~ -------------------------------------------------------------------------------- /winkrnl/UsrCursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/UsrCursor.c -------------------------------------------------------------------------------- /winkrnl/Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Validate.h -------------------------------------------------------------------------------- /winkrnl/WBmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WBmp.c -------------------------------------------------------------------------------- /winkrnl/WBmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WBmp.h -------------------------------------------------------------------------------- /winkrnl/WCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WCursor.h -------------------------------------------------------------------------------- /winkrnl/WIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WIcon.h -------------------------------------------------------------------------------- /winkrnl/WImageIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WImageIO.c -------------------------------------------------------------------------------- /winkrnl/WImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WImageIO.h -------------------------------------------------------------------------------- /winkrnl/WSysMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WSysMenu.c -------------------------------------------------------------------------------- /winkrnl/Willows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/Willows.h -------------------------------------------------------------------------------- /winkrnl/WinConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinConfig.c -------------------------------------------------------------------------------- /winkrnl/WinConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinConfig.h -------------------------------------------------------------------------------- /winkrnl/WinData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinData.h -------------------------------------------------------------------------------- /winkrnl/WinDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinDefs.h -------------------------------------------------------------------------------- /winkrnl/WinHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinHelp.c -------------------------------------------------------------------------------- /winkrnl/WinHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinHelp.h -------------------------------------------------------------------------------- /winkrnl/WinInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinInit.c -------------------------------------------------------------------------------- /winkrnl/WinMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinMalloc.h -------------------------------------------------------------------------------- /winkrnl/WinSockUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WinSockUtil.c -------------------------------------------------------------------------------- /winkrnl/WindowBytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowBytes.c -------------------------------------------------------------------------------- /winkrnl/WindowBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowBytes.h -------------------------------------------------------------------------------- /winkrnl/WindowCreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowCreate.c -------------------------------------------------------------------------------- /winkrnl/WindowCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowCreate.h -------------------------------------------------------------------------------- /winkrnl/WindowDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowDC.c -------------------------------------------------------------------------------- /winkrnl/WindowDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowDC.h -------------------------------------------------------------------------------- /winkrnl/WindowPos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowPos.c -------------------------------------------------------------------------------- /winkrnl/WindowProps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowProps.c -------------------------------------------------------------------------------- /winkrnl/WindowRedraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/WindowRedraw.c -------------------------------------------------------------------------------- /winkrnl/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/compat.h -------------------------------------------------------------------------------- /winkrnl/invoke_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/invoke_binary.c -------------------------------------------------------------------------------- /winkrnl/invoke_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/invoke_binary.h -------------------------------------------------------------------------------- /winkrnl/kerndef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/kerndef.h -------------------------------------------------------------------------------- /winkrnl/libtwin.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/libtwin.exports -------------------------------------------------------------------------------- /winkrnl/make_thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/make_thunk.c -------------------------------------------------------------------------------- /winkrnl/make_thunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/make_thunk.h -------------------------------------------------------------------------------- /winkrnl/makever.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/makever.sh -------------------------------------------------------------------------------- /winkrnl/mfs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/mfs_config.h -------------------------------------------------------------------------------- /winkrnl/mfs_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/mfs_dir.h -------------------------------------------------------------------------------- /winkrnl/mfs_fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/mfs_fileio.h -------------------------------------------------------------------------------- /winkrnl/neexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/neexe.h -------------------------------------------------------------------------------- /winkrnl/peexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/peexe.h -------------------------------------------------------------------------------- /winkrnl/scode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/scode.h -------------------------------------------------------------------------------- /winkrnl/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/utils.c -------------------------------------------------------------------------------- /winkrnl/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osfree-project/WIN16/HEAD/winkrnl/utils.h --------------------------------------------------------------------------------