├── .gitignore ├── CHANGES.md ├── GNUmakefile ├── LICENSE ├── Package ├── Images │ ├── SplashScreen.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-200.png │ └── StoreLogo.scale-400.png ├── Package.StoreAssociation.xml ├── Package.appxmanifest └── Package.wapproj ├── README.md ├── SECURITY.md ├── SignConfig.xml ├── Winfile.sln ├── help ├── WINFILE.CHM ├── ini │ ├── confirm.png │ ├── edit.gif │ ├── goto.png │ ├── index.html │ ├── rtl.png │ ├── styles.png │ └── toolbar.png └── winfile.hlp ├── nuget ├── LICENSE.txt ├── VERIFICATION.txt └── winfile.nuspec ├── samples └── addon │ ├── AddOnSample.vcxproj.filters │ ├── AddonSample.bmp │ ├── AddonSample.ico │ ├── AddonSample.vcxproj │ ├── dllmain.cpp │ ├── extproc.cpp │ ├── resource.h │ ├── resources.rc │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── wfext.h ├── src ├── BagOValues.h ├── Resize.c ├── Resize.h ├── Winfile.vcxproj ├── Winfile.vcxproj.filters ├── bitmap.bmp ├── bullet.bmp ├── dbg.c ├── dbg.h ├── fmifs.h ├── lang │ ├── res_de-DE.rc │ ├── res_en-US.rc │ ├── res_he-IL.rc │ ├── res_ja-JP.rc │ ├── res_ko-KR.rc │ ├── res_pl-PL.rc │ ├── res_pt-PT.rc │ ├── res_tr-TR.rc │ ├── res_zh-CN.rc │ ├── suggest_de-DE.db │ ├── suggest_en-US.db │ ├── suggest_he-IL.db │ ├── suggest_ja-JP.db │ ├── suggest_ko-KR.db │ ├── suggest_pl-PL.db │ ├── suggest_pt-PT.db │ ├── suggest_tr-TR.db │ ├── suggest_zh-CN.db │ ├── winfile_de-DE.dlg │ ├── winfile_en-US.dlg │ ├── winfile_he-IL.dlg │ ├── winfile_ja-JP.dlg │ ├── winfile_ko-KR.dlg │ ├── winfile_pl-PL.dlg │ ├── winfile_pt-PT.dlg │ ├── winfile_tr-TR.dlg │ └── winfile_zh-CN.dlg ├── lfn.c ├── lfn.h ├── lfnmisc.c ├── mcopy.cur ├── mhard.cur ├── mlink.cur ├── mmove.cur ├── mpr.h ├── numfmt.c ├── numfmt.h ├── origrc │ ├── winfile.cs-CZ.rc │ ├── winfile.da-DK.rc │ ├── winfile.de-DE.rc │ ├── winfile.en-US.rc │ ├── winfile.es-ES.rc │ ├── winfile.fi-FI.rc │ ├── winfile.fr-FR.rc │ ├── winfile.hu-HU.rc │ ├── winfile.it-IT.rc │ ├── winfile.ja-JP.rc │ ├── winfile.ko-KR.rc │ ├── winfile.nb-NO.rc │ ├── winfile.nl-NL.rc │ ├── winfile.pl-PL.rc │ ├── winfile.pt-BR.rc │ ├── winfile.ru-RU.rc │ ├── winfile.sv-SE.rc │ ├── winfile.zh-CN.rc │ └── winfile.zh-TW.rc ├── res.h ├── res.rc ├── scopy.cur ├── shard.cur ├── slink.cur ├── smove.cur ├── spinlock.h ├── split.cur ├── suggest.c ├── suggest.h ├── tbar.c ├── toolbar.bmp ├── treectl.c ├── treectl.h ├── w31rc │ ├── winfile.Brazil.rc │ ├── winfile.Catalan.rc │ ├── winfile.Czech.rc │ ├── winfile.Danish.rc │ ├── winfile.Dutch.rc │ ├── winfile.Finnish.rc │ ├── winfile.French.Int.rc │ ├── winfile.French.rc │ ├── winfile.German.rc │ ├── winfile.Hungary.rc │ ├── winfile.Italian.rc │ ├── winfile.Japanese.rc │ ├── winfile.Korean.rc │ ├── winfile.Norway.rc │ ├── winfile.Polish.rc │ ├── winfile.Portuguese.rc │ ├── winfile.SimChin.rc │ ├── winfile.Spanish.rc │ ├── winfile.Swedish.rc │ ├── winfile.TradChin.rc │ ├── winfile.Turkish.rc │ └── winfile.USEnglish.rc ├── 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 ├── wfdocb.h ├── wfdos.c ├── wfdrives.c ├── wfdrop.c ├── wfdrop.h ├── wfext.c ├── wfext.h ├── wfexti.h ├── wffile.c ├── wfgoto.cpp ├── wfgwl.h ├── wfhelp.h ├── wfinfo.c ├── wfinfo.h ├── wfinit.c ├── wfloc.c ├── wfmem.c ├── wfmem.h ├── wfprint.c ├── wfsearch.c ├── wftrdir.ico ├── wftree.c ├── wftree.ico ├── wfutil.c ├── winexp.h ├── winfile.c ├── winfile.exe.manifest ├── winfile.h ├── winfile.ico ├── wnetcaps.c ├── wnetcaps.h └── xtratool.bmp ├── tools ├── ExeView │ ├── ExeView.vcxproj │ ├── ExeView.vcxproj.filters │ ├── abstract.txt │ ├── bmp.cpp │ ├── exehdr.cpp │ ├── exehdr.h │ ├── exeview.txt │ ├── filllb.cpp │ ├── global.h │ ├── iconcur.cpp │ ├── init.cpp │ ├── main.cpp │ ├── main.def │ ├── main.ico │ ├── main.rc │ ├── makefile │ ├── menudlg.cpp │ ├── res.cpp │ ├── res.h │ ├── save.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── FileSignatureInfo │ ├── FileSignatureInfo.cpp │ ├── FileSignatureInfo.vcxproj │ ├── FileSignatureInfo.vcxproj.filters │ ├── VerifySignature.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── VerifyResources │ ├── Resources.h │ ├── VerifyResources.cpp │ ├── VerifyResources.vcxproj │ ├── VerifyResources.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── winfile.png ├── winfile256.png └── winfilescreenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/CHANGES.md -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/LICENSE -------------------------------------------------------------------------------- /Package/Images/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/SplashScreen.png -------------------------------------------------------------------------------- /Package/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Package/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Package/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Package/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Package/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Package/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Package/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Package/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Package.appxmanifest -------------------------------------------------------------------------------- /Package/Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Package/Package.wapproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SignConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/SignConfig.xml -------------------------------------------------------------------------------- /Winfile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/Winfile.sln -------------------------------------------------------------------------------- /help/WINFILE.CHM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/WINFILE.CHM -------------------------------------------------------------------------------- /help/ini/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/ini/confirm.png -------------------------------------------------------------------------------- /help/ini/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/ini/edit.gif -------------------------------------------------------------------------------- /help/ini/goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/ini/goto.png -------------------------------------------------------------------------------- /help/ini/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/ini/index.html -------------------------------------------------------------------------------- /help/ini/rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/ini/rtl.png -------------------------------------------------------------------------------- /help/ini/styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/ini/styles.png -------------------------------------------------------------------------------- /help/ini/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/ini/toolbar.png -------------------------------------------------------------------------------- /help/winfile.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/help/winfile.hlp -------------------------------------------------------------------------------- /nuget/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/nuget/LICENSE.txt -------------------------------------------------------------------------------- /nuget/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/nuget/VERIFICATION.txt -------------------------------------------------------------------------------- /nuget/winfile.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/nuget/winfile.nuspec -------------------------------------------------------------------------------- /samples/addon/AddOnSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/AddOnSample.vcxproj.filters -------------------------------------------------------------------------------- /samples/addon/AddonSample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/AddonSample.bmp -------------------------------------------------------------------------------- /samples/addon/AddonSample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/AddonSample.ico -------------------------------------------------------------------------------- /samples/addon/AddonSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/AddonSample.vcxproj -------------------------------------------------------------------------------- /samples/addon/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/dllmain.cpp -------------------------------------------------------------------------------- /samples/addon/extproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/extproc.cpp -------------------------------------------------------------------------------- /samples/addon/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/resource.h -------------------------------------------------------------------------------- /samples/addon/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/resources.rc -------------------------------------------------------------------------------- /samples/addon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/stdafx.cpp -------------------------------------------------------------------------------- /samples/addon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/stdafx.h -------------------------------------------------------------------------------- /samples/addon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/targetver.h -------------------------------------------------------------------------------- /samples/addon/wfext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/samples/addon/wfext.h -------------------------------------------------------------------------------- /src/BagOValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/BagOValues.h -------------------------------------------------------------------------------- /src/Resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/Resize.c -------------------------------------------------------------------------------- /src/Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/Resize.h -------------------------------------------------------------------------------- /src/Winfile.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/Winfile.vcxproj -------------------------------------------------------------------------------- /src/Winfile.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/Winfile.vcxproj.filters -------------------------------------------------------------------------------- /src/bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/bitmap.bmp -------------------------------------------------------------------------------- /src/bullet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/bullet.bmp -------------------------------------------------------------------------------- /src/dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/dbg.c -------------------------------------------------------------------------------- /src/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/dbg.h -------------------------------------------------------------------------------- /src/fmifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/fmifs.h -------------------------------------------------------------------------------- /src/lang/res_de-DE.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_de-DE.rc -------------------------------------------------------------------------------- /src/lang/res_en-US.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_en-US.rc -------------------------------------------------------------------------------- /src/lang/res_he-IL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_he-IL.rc -------------------------------------------------------------------------------- /src/lang/res_ja-JP.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_ja-JP.rc -------------------------------------------------------------------------------- /src/lang/res_ko-KR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_ko-KR.rc -------------------------------------------------------------------------------- /src/lang/res_pl-PL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_pl-PL.rc -------------------------------------------------------------------------------- /src/lang/res_pt-PT.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_pt-PT.rc -------------------------------------------------------------------------------- /src/lang/res_tr-TR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_tr-TR.rc -------------------------------------------------------------------------------- /src/lang/res_zh-CN.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/res_zh-CN.rc -------------------------------------------------------------------------------- /src/lang/suggest_de-DE.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_de-DE.db -------------------------------------------------------------------------------- /src/lang/suggest_en-US.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_en-US.db -------------------------------------------------------------------------------- /src/lang/suggest_he-IL.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_he-IL.db -------------------------------------------------------------------------------- /src/lang/suggest_ja-JP.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_ja-JP.db -------------------------------------------------------------------------------- /src/lang/suggest_ko-KR.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_ko-KR.db -------------------------------------------------------------------------------- /src/lang/suggest_pl-PL.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_pl-PL.db -------------------------------------------------------------------------------- /src/lang/suggest_pt-PT.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_pt-PT.db -------------------------------------------------------------------------------- /src/lang/suggest_tr-TR.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_tr-TR.db -------------------------------------------------------------------------------- /src/lang/suggest_zh-CN.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/suggest_zh-CN.db -------------------------------------------------------------------------------- /src/lang/winfile_de-DE.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_de-DE.dlg -------------------------------------------------------------------------------- /src/lang/winfile_en-US.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_en-US.dlg -------------------------------------------------------------------------------- /src/lang/winfile_he-IL.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_he-IL.dlg -------------------------------------------------------------------------------- /src/lang/winfile_ja-JP.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_ja-JP.dlg -------------------------------------------------------------------------------- /src/lang/winfile_ko-KR.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_ko-KR.dlg -------------------------------------------------------------------------------- /src/lang/winfile_pl-PL.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_pl-PL.dlg -------------------------------------------------------------------------------- /src/lang/winfile_pt-PT.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_pt-PT.dlg -------------------------------------------------------------------------------- /src/lang/winfile_tr-TR.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_tr-TR.dlg -------------------------------------------------------------------------------- /src/lang/winfile_zh-CN.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lang/winfile_zh-CN.dlg -------------------------------------------------------------------------------- /src/lfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lfn.c -------------------------------------------------------------------------------- /src/lfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lfn.h -------------------------------------------------------------------------------- /src/lfnmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/lfnmisc.c -------------------------------------------------------------------------------- /src/mcopy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/mcopy.cur -------------------------------------------------------------------------------- /src/mhard.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/mhard.cur -------------------------------------------------------------------------------- /src/mlink.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/mlink.cur -------------------------------------------------------------------------------- /src/mmove.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/mmove.cur -------------------------------------------------------------------------------- /src/mpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/mpr.h -------------------------------------------------------------------------------- /src/numfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/numfmt.c -------------------------------------------------------------------------------- /src/numfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/numfmt.h -------------------------------------------------------------------------------- /src/origrc/winfile.cs-CZ.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.cs-CZ.rc -------------------------------------------------------------------------------- /src/origrc/winfile.da-DK.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.da-DK.rc -------------------------------------------------------------------------------- /src/origrc/winfile.de-DE.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.de-DE.rc -------------------------------------------------------------------------------- /src/origrc/winfile.en-US.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.en-US.rc -------------------------------------------------------------------------------- /src/origrc/winfile.es-ES.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.es-ES.rc -------------------------------------------------------------------------------- /src/origrc/winfile.fi-FI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.fi-FI.rc -------------------------------------------------------------------------------- /src/origrc/winfile.fr-FR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.fr-FR.rc -------------------------------------------------------------------------------- /src/origrc/winfile.hu-HU.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.hu-HU.rc -------------------------------------------------------------------------------- /src/origrc/winfile.it-IT.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.it-IT.rc -------------------------------------------------------------------------------- /src/origrc/winfile.ja-JP.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.ja-JP.rc -------------------------------------------------------------------------------- /src/origrc/winfile.ko-KR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.ko-KR.rc -------------------------------------------------------------------------------- /src/origrc/winfile.nb-NO.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.nb-NO.rc -------------------------------------------------------------------------------- /src/origrc/winfile.nl-NL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.nl-NL.rc -------------------------------------------------------------------------------- /src/origrc/winfile.pl-PL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.pl-PL.rc -------------------------------------------------------------------------------- /src/origrc/winfile.pt-BR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.pt-BR.rc -------------------------------------------------------------------------------- /src/origrc/winfile.ru-RU.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.ru-RU.rc -------------------------------------------------------------------------------- /src/origrc/winfile.sv-SE.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.sv-SE.rc -------------------------------------------------------------------------------- /src/origrc/winfile.zh-CN.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.zh-CN.rc -------------------------------------------------------------------------------- /src/origrc/winfile.zh-TW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/origrc/winfile.zh-TW.rc -------------------------------------------------------------------------------- /src/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/res.h -------------------------------------------------------------------------------- /src/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/res.rc -------------------------------------------------------------------------------- /src/scopy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/scopy.cur -------------------------------------------------------------------------------- /src/shard.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/shard.cur -------------------------------------------------------------------------------- /src/slink.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/slink.cur -------------------------------------------------------------------------------- /src/smove.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/smove.cur -------------------------------------------------------------------------------- /src/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/spinlock.h -------------------------------------------------------------------------------- /src/split.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/split.cur -------------------------------------------------------------------------------- /src/suggest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/suggest.c -------------------------------------------------------------------------------- /src/suggest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/suggest.h -------------------------------------------------------------------------------- /src/tbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/tbar.c -------------------------------------------------------------------------------- /src/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/toolbar.bmp -------------------------------------------------------------------------------- /src/treectl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/treectl.c -------------------------------------------------------------------------------- /src/treectl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/treectl.h -------------------------------------------------------------------------------- /src/w31rc/winfile.Brazil.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Brazil.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Catalan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Catalan.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Czech.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Czech.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Danish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Danish.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Dutch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Dutch.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Finnish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Finnish.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.French.Int.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.French.Int.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.French.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.French.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.German.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.German.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Hungary.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Hungary.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Italian.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Italian.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Japanese.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Japanese.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Korean.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Korean.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Norway.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Norway.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Polish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Polish.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Portuguese.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Portuguese.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.SimChin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.SimChin.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Spanish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Spanish.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Swedish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Swedish.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.TradChin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.TradChin.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.Turkish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.Turkish.rc -------------------------------------------------------------------------------- /src/w31rc/winfile.USEnglish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/w31rc/winfile.USEnglish.rc -------------------------------------------------------------------------------- /src/wbbitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wbbitmap.bmp -------------------------------------------------------------------------------- /src/wfassoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfassoc.c -------------------------------------------------------------------------------- /src/wfchgnot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfchgnot.c -------------------------------------------------------------------------------- /src/wfcomman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfcomman.c -------------------------------------------------------------------------------- /src/wfcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfcopy.c -------------------------------------------------------------------------------- /src/wfcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfcopy.h -------------------------------------------------------------------------------- /src/wfdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdir.c -------------------------------------------------------------------------------- /src/wfdir.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdir.ico -------------------------------------------------------------------------------- /src/wfdirrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdirrd.c -------------------------------------------------------------------------------- /src/wfdirsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdirsrc.c -------------------------------------------------------------------------------- /src/wfdlgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdlgs.c -------------------------------------------------------------------------------- /src/wfdlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdlgs.h -------------------------------------------------------------------------------- /src/wfdlgs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdlgs2.c -------------------------------------------------------------------------------- /src/wfdlgs3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdlgs3.c -------------------------------------------------------------------------------- /src/wfdoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdoc.txt -------------------------------------------------------------------------------- /src/wfdocb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdocb.h -------------------------------------------------------------------------------- /src/wfdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdos.c -------------------------------------------------------------------------------- /src/wfdrives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdrives.c -------------------------------------------------------------------------------- /src/wfdrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdrop.c -------------------------------------------------------------------------------- /src/wfdrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfdrop.h -------------------------------------------------------------------------------- /src/wfext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfext.c -------------------------------------------------------------------------------- /src/wfext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfext.h -------------------------------------------------------------------------------- /src/wfexti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfexti.h -------------------------------------------------------------------------------- /src/wffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wffile.c -------------------------------------------------------------------------------- /src/wfgoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfgoto.cpp -------------------------------------------------------------------------------- /src/wfgwl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfgwl.h -------------------------------------------------------------------------------- /src/wfhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfhelp.h -------------------------------------------------------------------------------- /src/wfinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfinfo.c -------------------------------------------------------------------------------- /src/wfinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfinfo.h -------------------------------------------------------------------------------- /src/wfinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfinit.c -------------------------------------------------------------------------------- /src/wfloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfloc.c -------------------------------------------------------------------------------- /src/wfmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfmem.c -------------------------------------------------------------------------------- /src/wfmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfmem.h -------------------------------------------------------------------------------- /src/wfprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfprint.c -------------------------------------------------------------------------------- /src/wfsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfsearch.c -------------------------------------------------------------------------------- /src/wftrdir.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wftrdir.ico -------------------------------------------------------------------------------- /src/wftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wftree.c -------------------------------------------------------------------------------- /src/wftree.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wftree.ico -------------------------------------------------------------------------------- /src/wfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wfutil.c -------------------------------------------------------------------------------- /src/winexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/winexp.h -------------------------------------------------------------------------------- /src/winfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/winfile.c -------------------------------------------------------------------------------- /src/winfile.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/winfile.exe.manifest -------------------------------------------------------------------------------- /src/winfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/winfile.h -------------------------------------------------------------------------------- /src/winfile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/winfile.ico -------------------------------------------------------------------------------- /src/wnetcaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wnetcaps.c -------------------------------------------------------------------------------- /src/wnetcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/wnetcaps.h -------------------------------------------------------------------------------- /src/xtratool.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/src/xtratool.bmp -------------------------------------------------------------------------------- /tools/ExeView/ExeView.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/ExeView.vcxproj -------------------------------------------------------------------------------- /tools/ExeView/ExeView.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/ExeView.vcxproj.filters -------------------------------------------------------------------------------- /tools/ExeView/abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/abstract.txt -------------------------------------------------------------------------------- /tools/ExeView/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/bmp.cpp -------------------------------------------------------------------------------- /tools/ExeView/exehdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/exehdr.cpp -------------------------------------------------------------------------------- /tools/ExeView/exehdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/exehdr.h -------------------------------------------------------------------------------- /tools/ExeView/exeview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/exeview.txt -------------------------------------------------------------------------------- /tools/ExeView/filllb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/filllb.cpp -------------------------------------------------------------------------------- /tools/ExeView/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/global.h -------------------------------------------------------------------------------- /tools/ExeView/iconcur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/iconcur.cpp -------------------------------------------------------------------------------- /tools/ExeView/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/init.cpp -------------------------------------------------------------------------------- /tools/ExeView/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/main.cpp -------------------------------------------------------------------------------- /tools/ExeView/main.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/main.def -------------------------------------------------------------------------------- /tools/ExeView/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/main.ico -------------------------------------------------------------------------------- /tools/ExeView/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/main.rc -------------------------------------------------------------------------------- /tools/ExeView/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/makefile -------------------------------------------------------------------------------- /tools/ExeView/menudlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/menudlg.cpp -------------------------------------------------------------------------------- /tools/ExeView/res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/res.cpp -------------------------------------------------------------------------------- /tools/ExeView/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/res.h -------------------------------------------------------------------------------- /tools/ExeView/save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/save.cpp -------------------------------------------------------------------------------- /tools/ExeView/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/stdafx.cpp -------------------------------------------------------------------------------- /tools/ExeView/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/stdafx.h -------------------------------------------------------------------------------- /tools/ExeView/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/ExeView/targetver.h -------------------------------------------------------------------------------- /tools/FileSignatureInfo/FileSignatureInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/FileSignatureInfo/FileSignatureInfo.cpp -------------------------------------------------------------------------------- /tools/FileSignatureInfo/FileSignatureInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/FileSignatureInfo/FileSignatureInfo.vcxproj -------------------------------------------------------------------------------- /tools/FileSignatureInfo/FileSignatureInfo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/FileSignatureInfo/FileSignatureInfo.vcxproj.filters -------------------------------------------------------------------------------- /tools/FileSignatureInfo/VerifySignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/FileSignatureInfo/VerifySignature.cpp -------------------------------------------------------------------------------- /tools/FileSignatureInfo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/FileSignatureInfo/stdafx.cpp -------------------------------------------------------------------------------- /tools/FileSignatureInfo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/FileSignatureInfo/stdafx.h -------------------------------------------------------------------------------- /tools/FileSignatureInfo/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/FileSignatureInfo/targetver.h -------------------------------------------------------------------------------- /tools/VerifyResources/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/VerifyResources/Resources.h -------------------------------------------------------------------------------- /tools/VerifyResources/VerifyResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/VerifyResources/VerifyResources.cpp -------------------------------------------------------------------------------- /tools/VerifyResources/VerifyResources.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/VerifyResources/VerifyResources.vcxproj -------------------------------------------------------------------------------- /tools/VerifyResources/VerifyResources.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/VerifyResources/VerifyResources.vcxproj.filters -------------------------------------------------------------------------------- /tools/VerifyResources/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/VerifyResources/stdafx.cpp -------------------------------------------------------------------------------- /tools/VerifyResources/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/VerifyResources/stdafx.h -------------------------------------------------------------------------------- /tools/VerifyResources/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/tools/VerifyResources/targetver.h -------------------------------------------------------------------------------- /winfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/winfile.png -------------------------------------------------------------------------------- /winfile256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/winfile256.png -------------------------------------------------------------------------------- /winfilescreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winfile/HEAD/winfilescreenshot.png --------------------------------------------------------------------------------