├── NT ├── Barnabas.nfo ├── WelcometoOpen11.txt ├── arcdkrnl.exe ├── cpxxupd.cmd ├── makefil0 ├── mincore │ └── kernelbase │ │ ├── kernelbase.def │ │ ├── pathapis │ │ ├── makefile │ │ └── sources │ │ └── pathcch.c ├── minio │ └── netio │ │ └── nsi │ │ ├── nsisvc │ │ ├── client │ │ │ ├── init.c │ │ │ ├── makefile │ │ │ ├── midluser.c │ │ │ ├── nsi_c_stub.c │ │ │ ├── nsiclient.c │ │ │ ├── sources │ │ │ ├── winnsi.def │ │ │ └── winnsi.rc │ │ ├── dirs │ │ └── server │ │ │ ├── init.c │ │ │ ├── makefile │ │ │ ├── midluser.c │ │ │ ├── nsi_s_stub.c │ │ │ ├── nsiserver.c │ │ │ ├── nsiserverp.h │ │ │ ├── nsisvc.def │ │ │ ├── nsisvc.rc │ │ │ ├── resource.h │ │ │ └── sources │ │ └── user │ │ ├── dllmain.c │ │ ├── makefile │ │ ├── nsi.c │ │ ├── nsi.def │ │ ├── nsi.rc │ │ └── sources ├── minkernel │ ├── Example1.1.doc │ ├── Example1.2.doc │ ├── Example1.3.doc │ ├── Example1.4.doc │ ├── Example11.1.doc │ ├── Example12.1.doc │ ├── Example13.1.doc │ ├── Example2.1.doc │ ├── Example6.1.doc │ ├── Example6.2.doc │ ├── Example6.3.doc │ ├── Example8.1.doc │ ├── ExampleA.1.doc │ ├── ExampleA.2.doc │ ├── ExampleC.1.doc │ ├── ExampleC.2.doc │ ├── ExampleC.3.doc │ ├── ExampleC.4.doc │ ├── ExampleD.1.doc │ ├── ExampleD.2.doc │ ├── boot │ │ ├── service │ │ │ ├── dirs │ │ │ ├── exe │ │ │ │ ├── bfsvc.c │ │ │ │ ├── bfsvc.manifest │ │ │ │ ├── bfsvc.rc │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ └── lib │ │ │ │ ├── bfsvc_types.h │ │ │ │ ├── checksum.c │ │ │ │ ├── environ.c │ │ │ │ ├── filever.c │ │ │ │ ├── log.c │ │ │ │ ├── makefile │ │ │ │ ├── security.c │ │ │ │ ├── service.c │ │ │ │ ├── sources │ │ │ │ └── utils.c │ │ ├── startrom │ │ │ ├── daytona.n12 │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── daytona.nui │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── daytona │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── dirs │ │ │ ├── hdlscom1.n12 │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── hdlscom1 │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── hdlscom2.n12 │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── hdlscom2 │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── hdlstst1.n12 │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── hdlstst2.n12 │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── sources │ │ │ │ └── startrom.map │ │ │ ├── i386 │ │ │ │ ├── a20.asm │ │ │ │ ├── constant.h │ │ │ │ ├── display.c │ │ │ │ ├── eisa.h │ │ │ │ ├── eisa.inc │ │ │ │ ├── eisaa.asm │ │ │ │ ├── eisac.c │ │ │ │ ├── exp.asm │ │ │ │ ├── global.h │ │ │ │ ├── macro.inc │ │ │ │ ├── main.c │ │ │ │ ├── memmap.h │ │ │ │ ├── memmap.inc │ │ │ │ ├── mtftp.c │ │ │ │ ├── ntmisc.h │ │ │ │ ├── pxe_api.inc │ │ │ │ ├── pxe_cmn.inc │ │ │ │ ├── su.asm │ │ │ │ ├── su.h │ │ │ │ ├── su.inc │ │ │ │ ├── sudata.asm │ │ │ │ ├── trap.asm │ │ │ │ ├── trapdump.c │ │ │ │ ├── types.h │ │ │ │ └── usa │ │ │ │ │ └── strings.h │ │ │ ├── makefile.inc │ │ │ └── sources.inc │ │ └── syspart │ │ │ ├── bios.c │ │ │ ├── dirs │ │ │ ├── efi.c │ │ │ ├── guiddef.c │ │ │ ├── priv.c │ │ │ ├── sysboot.h │ │ │ ├── syspart.c │ │ │ ├── um │ │ │ ├── makefile │ │ │ └── sources │ │ │ └── utility.c │ ├── lzx │ │ ├── common │ │ │ ├── compdefs.h │ │ │ └── typedefs.h │ │ ├── decoder │ │ │ ├── d16align.c │ │ │ ├── d16out.c │ │ │ ├── d16uncmp.c │ │ │ ├── d16verb.c │ │ │ ├── decalign.c │ │ │ ├── decapi.c │ │ │ ├── decapi.h │ │ │ ├── decblk.c │ │ │ ├── decdefs.h │ │ │ ├── decin.c │ │ │ ├── decinit.c │ │ │ ├── decmacro.h │ │ │ ├── decoder.h │ │ │ ├── decout.c │ │ │ ├── decproto.h │ │ │ ├── dectree.c │ │ │ ├── decuncmp.c │ │ │ ├── decvars.h │ │ │ ├── decverb.c │ │ │ ├── decxlat.c │ │ │ ├── dv.asm │ │ │ ├── ldi.c │ │ │ ├── makefile │ │ │ ├── maketbl.c │ │ │ ├── offsets.c │ │ │ ├── ring16.c │ │ │ ├── ring16.h │ │ │ ├── sources │ │ │ ├── tableasm.asm │ │ │ └── xlatasm.asm │ │ ├── dirs │ │ └── encoder │ │ │ ├── blkinit.c │ │ │ ├── block.c │ │ │ ├── bsearch.c │ │ │ ├── encapi.c │ │ │ ├── encapi.h │ │ │ ├── encdata.c │ │ │ ├── encdefs.h │ │ │ ├── encmacro.h │ │ │ ├── encoder.h │ │ │ ├── encproto.h │ │ │ ├── encstats.c │ │ │ ├── enctree.c │ │ │ ├── encvars.h │ │ │ ├── init.c │ │ │ ├── io.c │ │ │ ├── lci.c │ │ │ ├── makefile │ │ │ ├── offsets.c │ │ │ ├── optenc.c │ │ │ ├── search.asm │ │ │ ├── sources │ │ │ └── tree.c │ ├── ntos │ │ └── init │ │ │ ├── boot.bmp │ │ │ ├── bottom.bmp │ │ │ ├── embtext.bmp │ │ │ ├── fstltext.bmp │ │ │ ├── hibrnate.bmp │ │ │ ├── homebar.bmp │ │ │ ├── hometext.bmp │ │ │ ├── logo.bmp │ │ │ ├── ntoskrnl.rc │ │ │ ├── probar.bmp │ │ │ ├── protext.bmp │ │ │ ├── protext64.bmp │ │ │ ├── shutdown.bmp │ │ │ ├── srvbar.bmp │ │ │ ├── srvbott.bmp │ │ │ ├── srvlogo.bmp │ │ │ ├── srvtop.bmp │ │ │ ├── top.bmp │ │ │ └── tpctext.bmp │ ├── strsafe │ │ ├── dirs │ │ ├── ntstrsafe │ │ │ ├── makefile │ │ │ ├── ntstrsafe.c │ │ │ └── sources │ │ └── strsafe │ │ │ ├── makefile │ │ │ ├── sources │ │ │ └── strsafe.c │ └── tm │ │ └── ktmw32 │ │ ├── ktmw32.c │ │ ├── ktmw32.def │ │ ├── ktmw32.rc │ │ ├── makefile │ │ ├── msg.bin │ │ ├── msg.mc │ │ ├── mui.bin │ │ ├── sources │ │ └── wevttmpl.bin ├── onecore │ ├── admin │ │ ├── admt │ │ │ └── upgrade │ │ │ │ ├── admtv3check.cpp │ │ │ │ ├── admtv3check.def │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ └── ver.rc │ │ ├── dm │ │ │ └── dmiso8601utils │ │ │ │ ├── dmiso8601utils.cpp │ │ │ │ ├── dmiso8601utils.def │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ └── version.rc │ │ ├── netui │ │ │ └── acledit │ │ │ │ ├── acledit.cxx │ │ │ │ ├── acledit.def │ │ │ │ ├── acledit.rc │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ └── sources │ │ └── rmt │ │ │ └── compmgmtlauncher │ │ │ ├── compmgmtlauncher.cpp │ │ │ ├── compmgmtlauncher.ico │ │ │ ├── compmgmtlauncher.manifest │ │ │ ├── compmgmtlauncher.rc │ │ │ ├── makefile │ │ │ ├── precomp.h │ │ │ ├── resource.h │ │ │ └── sources │ ├── base │ │ ├── appcompat │ │ │ ├── appraiser │ │ │ │ ├── dll │ │ │ │ │ ├── appraiser.def │ │ │ │ │ ├── appraiser.rc │ │ │ │ │ ├── msg.bin │ │ │ │ │ └── wevttmpl.bin │ │ │ │ ├── gated │ │ │ │ │ ├── dirs │ │ │ │ │ └── lib │ │ │ │ │ │ ├── gatedscenario.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── sources │ │ │ │ └── supplementalresourcedll │ │ │ │ │ ├── appraisersupplementalresources.rc │ │ │ │ │ ├── compatinfo.txt │ │ │ │ │ ├── makefile │ │ │ │ │ └── sources │ │ │ ├── compatwiz │ │ │ │ ├── acprgwiz.rc │ │ │ │ ├── acwizard.ico │ │ │ │ ├── behaviors.css │ │ │ │ ├── compatmode.hta │ │ │ │ ├── layout.css │ │ │ │ ├── makefile │ │ │ │ ├── shared.css │ │ │ │ └── sources │ │ │ ├── inventory │ │ │ │ ├── shared │ │ │ │ │ └── crypto │ │ │ │ │ │ ├── aecrypto.cpp │ │ │ │ │ │ ├── cryptobasic.cpp │ │ │ │ │ │ ├── dirs │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── stdafx.h │ │ │ │ │ │ ├── lib_downlevel │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── stdafx.h │ │ │ │ │ │ └── md5.cpp │ │ │ │ └── software │ │ │ │ │ └── cache │ │ │ │ │ ├── dirs │ │ │ │ │ └── lib │ │ │ │ │ ├── filemetadata.cpp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── regstore.cpp │ │ │ │ │ └── sources │ │ │ ├── shared │ │ │ │ └── unmanaged │ │ │ │ │ ├── appdeviceicon │ │ │ │ │ ├── dirs │ │ │ │ │ └── lib │ │ │ │ │ │ ├── appicon.cpp │ │ │ │ │ │ ├── deviceicon.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── precomp.h │ │ │ │ │ │ └── sources │ │ │ │ │ ├── avtracking │ │ │ │ │ ├── dirs │ │ │ │ │ └── lib │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── outofdateavtracker.cpp │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── utility.cpp │ │ │ │ │ ├── onesettingsquery │ │ │ │ │ ├── dirs │ │ │ │ │ └── lib │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── onesettingsquery.cpp │ │ │ │ │ │ └── sources │ │ │ │ │ └── upgradeexperienceindicators │ │ │ │ │ ├── dirs │ │ │ │ │ └── lib │ │ │ │ │ ├── hashprovider.cpp │ │ │ │ │ ├── indicatortelemetry.cpp │ │ │ │ │ ├── indicatortransaction.cpp │ │ │ │ │ ├── indicatorwriter.cpp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── registrychecksum.cpp │ │ │ │ │ ├── registrykey.cpp │ │ │ │ │ └── sources │ │ │ └── telemetry │ │ │ │ ├── ami │ │ │ │ ├── dirs │ │ │ │ └── lib │ │ │ │ │ ├── makefile │ │ │ │ │ ├── regstore.cpp │ │ │ │ │ ├── regutils.cpp │ │ │ │ │ ├── sources │ │ │ │ │ ├── utcthrottle.cpp │ │ │ │ │ └── utils.cpp │ │ │ │ └── dirs │ │ ├── busdrv │ │ │ └── sd │ │ │ │ └── setup │ │ │ │ ├── makefile │ │ │ │ ├── sdhcinst.c │ │ │ │ ├── sdhcinst.def │ │ │ │ ├── sdhcinst.rc │ │ │ │ ├── secdigmem.ico │ │ │ │ └── sources │ │ ├── devices │ │ │ └── defaultdevicemanager │ │ │ │ ├── comserver.cpp │ │ │ │ ├── defaultdevicemanager.def │ │ │ │ ├── defaultdevicemanager.rc │ │ │ │ ├── defaultsmanager.cpp │ │ │ │ ├── makefile │ │ │ │ ├── precomp.h │ │ │ │ └── sources │ │ ├── diagnosis │ │ │ ├── pdi │ │ │ │ └── pla │ │ │ │ │ └── src │ │ │ │ │ └── plaserver │ │ │ │ │ ├── makefile │ │ │ │ │ ├── plaserver.c │ │ │ │ │ ├── plaserver.manifest │ │ │ │ │ ├── plaserver.rc │ │ │ │ │ └── sources │ │ │ ├── pdui │ │ │ │ ├── atm │ │ │ │ │ ├── MSG00001.bin │ │ │ │ │ ├── app.ico │ │ │ │ │ ├── appwindowfluentdark.ico │ │ │ │ │ ├── appwindowfluentlight.ico │ │ │ │ │ ├── bit.bmp │ │ │ │ │ ├── briefcase.ico │ │ │ │ │ ├── briefcasedark.ico │ │ │ │ │ ├── browserdark.ico │ │ │ │ │ ├── browsertablight.ico │ │ │ │ │ ├── column1.png │ │ │ │ │ ├── column2.png │ │ │ │ │ ├── cpuperf.png │ │ │ │ │ ├── cpuperfdark.png │ │ │ │ │ ├── diskperf.png │ │ │ │ │ ├── diskperfdark.png │ │ │ │ │ ├── dottedgoodperf.png │ │ │ │ │ ├── excellentnetworkconnectivity.ico │ │ │ │ │ ├── fairnetworkconnectivity.ico │ │ │ │ │ ├── filelight.ico │ │ │ │ │ ├── filelight2.ico │ │ │ │ │ ├── goodnetworkconnectivity.ico │ │ │ │ │ ├── goodperf.png │ │ │ │ │ ├── gpuperf.png │ │ │ │ │ ├── gpuperfdark.png │ │ │ │ │ ├── main.ico │ │ │ │ │ ├── memperf.png │ │ │ │ │ ├── memperfdark.png │ │ │ │ │ ├── minigraphplaceholder.png │ │ │ │ │ ├── multitasking.ico │ │ │ │ │ ├── netperf.png │ │ │ │ │ ├── netperfdark.png │ │ │ │ │ ├── nonetworkconnectivity.ico │ │ │ │ │ ├── perfblack.png │ │ │ │ │ ├── perfblue.png │ │ │ │ │ ├── perfblueishviolet.png │ │ │ │ │ ├── perfdarkgreen.png │ │ │ │ │ ├── performancedark.ico │ │ │ │ │ ├── performancelight.ico │ │ │ │ │ ├── perfpink.png │ │ │ │ │ ├── perftabnetreceivecolorkey.png │ │ │ │ │ ├── perftabnetsendcolorkey.png │ │ │ │ │ ├── perfviolet.png │ │ │ │ │ ├── poornetworkconnectivity.ico │ │ │ │ │ ├── ramdark.ico │ │ │ │ │ ├── ramlight.ico │ │ │ │ │ ├── resmon.ico │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── separatorline.png │ │ │ │ │ ├── services.ico │ │ │ │ │ ├── servicesdark.ico │ │ │ │ │ ├── serviceslight.ico │ │ │ │ │ ├── startupappsdark.ico │ │ │ │ │ ├── startupappslight.ico │ │ │ │ │ ├── svchost.ico │ │ │ │ │ ├── taskdark.ico │ │ │ │ │ ├── tasklight.ico │ │ │ │ │ ├── taskmanager.rc │ │ │ │ │ ├── taskmgrdui1.bin │ │ │ │ │ ├── taskmgrdui2.bin │ │ │ │ │ ├── tray0.ico │ │ │ │ │ ├── tray1.ico │ │ │ │ │ ├── tray10.ico │ │ │ │ │ ├── tray11.ico │ │ │ │ │ ├── tray2.ico │ │ │ │ │ ├── tray3.ico │ │ │ │ │ ├── tray4.ico │ │ │ │ │ ├── tray5.ico │ │ │ │ │ ├── tray6.ico │ │ │ │ │ ├── tray7.ico │ │ │ │ │ ├── tray8.ico │ │ │ │ │ ├── tray9.ico │ │ │ │ │ ├── unknownperf.png │ │ │ │ │ ├── unknownperfdark.png │ │ │ │ │ ├── user.ico │ │ │ │ │ ├── verygoodnetworkconnectivity.ico │ │ │ │ │ ├── wevttempl.bin │ │ │ │ │ └── window.ico │ │ │ │ ├── launchtm │ │ │ │ │ ├── launchtm.ico │ │ │ │ │ ├── launchtm.manifest │ │ │ │ │ ├── launchtm.rc │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pch.h │ │ │ │ │ └── sources │ │ │ │ └── resmon │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resmon.cpp │ │ │ │ │ ├── resmon.ico │ │ │ │ │ ├── resmon.manifest │ │ │ │ │ ├── resmon.rc │ │ │ │ │ └── sources │ │ │ └── srt │ │ │ │ └── recenv │ │ │ │ ├── main.ico │ │ │ │ └── recenv.rc │ │ ├── eco │ │ │ └── wds │ │ │ │ └── setup │ │ │ │ ├── compliance │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── wdsupgcompl.cpp │ │ │ │ ├── wdsupgcompl.def │ │ │ │ └── wdsupgcompl.rc │ │ │ │ └── dirs │ │ ├── fs │ │ │ ├── fsrm │ │ │ │ └── utilities │ │ │ │ │ └── srm │ │ │ │ │ ├── fsrmbig.bmp │ │ │ │ │ ├── fsrmsml.bmp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── sources │ │ │ │ │ ├── srm.def │ │ │ │ │ ├── srm.ico │ │ │ │ │ ├── srm.rc │ │ │ │ │ ├── srm1.htm │ │ │ │ │ ├── srm2.htm │ │ │ │ │ ├── srmmsg.bin │ │ │ │ │ ├── typelib1.bin │ │ │ │ │ └── typelib2.bin │ │ │ └── utils │ │ │ │ └── svsvc │ │ │ │ ├── dirs │ │ │ │ └── src │ │ │ │ ├── fmifsutil.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ ├── service.cxx │ │ │ │ ├── sources │ │ │ │ ├── svsvc.def │ │ │ │ └── svsvc.rc │ │ ├── hals │ │ │ └── update │ │ │ │ └── service │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── ucsvc.c │ │ │ │ ├── ucsvc.manifest │ │ │ │ └── ucsvc.rc │ │ ├── mui │ │ │ └── muicallbackdlls │ │ │ │ └── timedatemuicallback │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── stdafx.h │ │ │ │ ├── timedatemuicallback.cpp │ │ │ │ ├── timedatemuicallback.def │ │ │ │ └── timedatemuicallback.rc │ │ ├── mvdm │ │ │ ├── ntvdmstub │ │ │ │ ├── csrstub.c │ │ │ │ ├── csrstub.manifest │ │ │ │ ├── csrstub.rc │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ └── vdmutils │ │ │ │ └── win │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── win.c │ │ │ │ └── win.rc │ │ ├── ngscb │ │ │ └── ui │ │ │ │ └── compchooser │ │ │ │ ├── chooser2.cpp │ │ │ │ ├── chooser2.ico │ │ │ │ ├── chooser2.rc │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ ├── sources │ │ │ │ ├── tpmbig.bmp │ │ │ │ ├── tpmcompc.def │ │ │ │ └── tpmsml.bmp │ │ ├── ntsetup │ │ │ ├── _winnt │ │ │ │ ├── _winnt.c │ │ │ │ ├── _winnt.rc │ │ │ │ ├── makefile │ │ │ │ ├── rc_ids.h │ │ │ │ └── sources │ │ │ ├── azure │ │ │ │ ├── dirs │ │ │ │ └── xlfs │ │ │ │ │ ├── makefile │ │ │ │ │ ├── objd │ │ │ │ │ └── i386 │ │ │ │ │ │ ├── _asmid.inc │ │ │ │ │ │ ├── _asmid.xml │ │ │ │ │ │ └── _objects.mac │ │ │ │ │ ├── placefil.txt │ │ │ │ │ ├── service.xml │ │ │ │ │ └── sources │ │ │ ├── basewin │ │ │ │ ├── basewin.c │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ ├── billbrd │ │ │ │ ├── addpath.c │ │ │ │ ├── animate.c │ │ │ │ ├── animate.h │ │ │ │ ├── ansi │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pch.h │ │ │ │ │ └── sources │ │ │ │ ├── billbrd.c │ │ │ │ ├── billbrd.h │ │ │ │ ├── bullet.bmp │ │ │ │ ├── coll0.bmp │ │ │ │ ├── coll1.bmp │ │ │ │ ├── coll10.bmp │ │ │ │ ├── coll11.bmp │ │ │ │ ├── coll2.bmp │ │ │ │ ├── coll3.bmp │ │ │ │ ├── coll4.bmp │ │ │ │ ├── coll5.bmp │ │ │ │ ├── coll6.bmp │ │ │ │ ├── coll7.bmp │ │ │ │ ├── coll8.bmp │ │ │ │ ├── coll9.bmp │ │ │ │ ├── dibutil.c │ │ │ │ ├── dibutil.h │ │ │ │ ├── dirs │ │ │ │ ├── dllinit.c │ │ │ │ ├── info.c │ │ │ │ ├── msft.bmp │ │ │ │ ├── msfthi.bmp │ │ │ │ ├── res │ │ │ │ │ ├── 16bitcolor │ │ │ │ │ │ ├── background.bmp │ │ │ │ │ │ ├── bbackground.bmp │ │ │ │ │ │ ├── bullet1.bmp │ │ │ │ │ │ ├── bulletinprogress1.bmp │ │ │ │ │ │ ├── bulletselect1.bmp │ │ │ │ │ │ ├── gbackground.bmp │ │ │ │ │ │ ├── intensity1.bmp │ │ │ │ │ │ ├── intensity2.bmp │ │ │ │ │ │ ├── intensity3.bmp │ │ │ │ │ │ ├── intensity4.bmp │ │ │ │ │ │ ├── rbackground.bmp │ │ │ │ │ │ ├── sbackground.bmp │ │ │ │ │ │ ├── sbullet.bmp │ │ │ │ │ │ ├── sbulletinprogress.bmp │ │ │ │ │ │ ├── sbulletselect.bmp │ │ │ │ │ │ ├── sintensity1.bmp │ │ │ │ │ │ ├── sintensity2.bmp │ │ │ │ │ │ ├── sintensity3.bmp │ │ │ │ │ │ ├── sintensity4.bmp │ │ │ │ │ │ ├── srvlogo10x7.bmp │ │ │ │ │ │ ├── srvlogo6x4.bmp │ │ │ │ │ │ ├── srvlogo8x6.bmp │ │ │ │ │ │ ├── winlogo10x7.bmp │ │ │ │ │ │ ├── winlogo6x4.bmp │ │ │ │ │ │ └── winlogo8x6.bmp │ │ │ │ │ └── 4bitcolor │ │ │ │ │ │ ├── background.bmp │ │ │ │ │ │ ├── bullet.bmp │ │ │ │ │ │ ├── bulletinprogress.bmp │ │ │ │ │ │ ├── bulletselect.bmp │ │ │ │ │ │ ├── intensity1.bmp │ │ │ │ │ │ ├── intensity2.bmp │ │ │ │ │ │ ├── intensity3.bmp │ │ │ │ │ │ ├── intensity4.bmp │ │ │ │ │ │ ├── sbackground.bmp │ │ │ │ │ │ ├── sbullet.bmp │ │ │ │ │ │ ├── sbulletinprogress.bmp │ │ │ │ │ │ ├── sbulletselect.bmp │ │ │ │ │ │ ├── sintensity1.bmp │ │ │ │ │ │ ├── sintensity2.bmp │ │ │ │ │ │ ├── sintensity3.bmp │ │ │ │ │ │ ├── sintensity4.bmp │ │ │ │ │ │ ├── srvlogo10x7.bmp │ │ │ │ │ │ ├── srvlogo6x4.bmp │ │ │ │ │ │ ├── srvlogo8x6.bmp │ │ │ │ │ │ ├── winlogo10x7.bmp │ │ │ │ │ │ ├── winlogo6x4.bmp │ │ │ │ │ │ └── winlogo8x6.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── setup.ico │ │ │ │ ├── sources.inc │ │ │ │ ├── step1.bmp │ │ │ │ ├── step2.bmp │ │ │ │ ├── step3.bmp │ │ │ │ ├── step4.bmp │ │ │ │ ├── step5.bmp │ │ │ │ ├── stephi1.bmp │ │ │ │ ├── stephi2.bmp │ │ │ │ ├── stephi3.bmp │ │ │ │ ├── stephi4.bmp │ │ │ │ ├── stephi5.bmp │ │ │ │ ├── unicode │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pch.h │ │ │ │ │ └── sources │ │ │ │ ├── w2k1024.bmp │ │ │ │ ├── w2k640.bmp │ │ │ │ ├── w2k800.bmp │ │ │ │ ├── w2kbb.bmp │ │ │ │ ├── w2kbb16.bmp │ │ │ │ ├── winntbb.def │ │ │ │ ├── winntbb.h │ │ │ │ ├── winntbb.rc │ │ │ │ └── winntbb.rcv │ │ │ ├── bmps │ │ │ │ ├── makefile │ │ │ │ ├── setup_b.bmp │ │ │ │ ├── setup_d.bmp │ │ │ │ ├── setup_e.bmp │ │ │ │ ├── setup_l.bmp │ │ │ │ ├── setup_s.bmp │ │ │ │ ├── setup_w.bmp │ │ │ │ └── sources │ │ │ ├── hwlog │ │ │ │ ├── hwlog.c │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ ├── hwlogexe │ │ │ │ ├── hwlogexe.c │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ ├── legacy │ │ │ │ └── exe │ │ │ │ │ ├── res.rc │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── setup.c │ │ │ │ │ └── setup.ico │ │ │ ├── lib │ │ │ │ ├── cleanup │ │ │ │ │ ├── dirs │ │ │ │ │ └── src │ │ │ │ │ │ ├── cleanup.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── sources │ │ │ │ ├── errors │ │ │ │ │ ├── dirs │ │ │ │ │ └── src │ │ │ │ │ │ ├── errors.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── pch.h │ │ │ │ │ │ └── sources │ │ │ │ ├── uilib │ │ │ │ │ ├── dirs │ │ │ │ │ ├── inc │ │ │ │ │ │ └── utlstring.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── adjustui.cpp │ │ │ │ │ │ ├── cdlginfo.cpp │ │ │ │ │ │ ├── debug.cpp │ │ │ │ │ │ ├── dpi.cpp │ │ │ │ │ │ ├── findresource.cpp │ │ │ │ │ │ ├── language.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── pch.h │ │ │ │ │ │ ├── sources │ │ │ │ │ │ ├── uilibutil.cpp │ │ │ │ │ │ └── utlstring.cpp │ │ │ │ └── unattendlog │ │ │ │ │ ├── dirs │ │ │ │ │ └── src │ │ │ │ │ ├── makefile │ │ │ │ │ ├── sources │ │ │ │ │ └── unattendlog.cpp │ │ │ ├── migshared │ │ │ │ ├── inc │ │ │ │ │ ├── cablib.h │ │ │ │ │ ├── chartype.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── coreutil.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── fileenum.h │ │ │ │ │ ├── fileops.h │ │ │ │ │ ├── growbuf.h │ │ │ │ │ ├── growlist.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── inf.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── linkpif.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── memdb.h │ │ │ │ │ ├── memdbdef.h │ │ │ │ │ ├── migshared.h │ │ │ │ │ ├── migutil.h │ │ │ │ │ ├── persist.h │ │ │ │ │ ├── poolmem.h │ │ │ │ │ ├── progbar.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── reg95.h │ │ │ │ │ ├── regapix.h │ │ │ │ │ ├── regops.h │ │ │ │ │ ├── safemode.h │ │ │ │ │ ├── snapshot.h │ │ │ │ │ ├── staticsz.h │ │ │ │ │ ├── strings.h │ │ │ │ │ ├── sysmig.h │ │ │ │ │ ├── unicode.h │ │ │ │ │ ├── win95reg.h │ │ │ │ │ └── winntreg.h │ │ │ │ ├── migutil │ │ │ │ │ ├── app.cpp │ │ │ │ │ ├── cablib.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── file.c │ │ │ │ │ ├── growbuf.c │ │ │ │ │ ├── growlist.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── icons.c │ │ │ │ │ ├── inf.c │ │ │ │ │ ├── infparse.c │ │ │ │ │ ├── ipc.c │ │ │ │ │ ├── linkpif.c │ │ │ │ │ ├── log.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── migutilp.h │ │ │ │ │ ├── movelist.c │ │ │ │ │ ├── ne.c │ │ │ │ │ ├── persist.c │ │ │ │ │ ├── poolmem.c │ │ │ │ │ ├── reg.c │ │ │ │ │ ├── regenum.c │ │ │ │ │ ├── regp.h │ │ │ │ │ ├── regtrack.c │ │ │ │ │ ├── safemode.c │ │ │ │ │ ├── shappmgrp.h │ │ │ │ │ ├── sources │ │ │ │ │ ├── strings.c │ │ │ │ │ ├── strmap.c │ │ │ │ │ ├── unicode.c │ │ │ │ │ └── version.c │ │ │ │ ├── pcha │ │ │ │ │ ├── empty.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pch.h │ │ │ │ │ └── sources │ │ │ │ └── pchw │ │ │ │ │ ├── empty.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pch.h │ │ │ │ │ └── sources │ │ │ ├── moricons │ │ │ │ ├── 123.ico │ │ │ │ ├── 123r23.ico │ │ │ │ ├── ab16a64.bmp │ │ │ │ ├── ab256a64.bmp │ │ │ │ ├── about16.bmp │ │ │ │ ├── about256.bmp │ │ │ │ ├── aboutblade16.bmp │ │ │ │ ├── aboutblade256.bmp │ │ │ │ ├── aboutdcs16.bmp │ │ │ │ ├── aboutdcs16a64.bmp │ │ │ │ ├── aboutdcs256.bmp │ │ │ │ ├── aboutdcs256a64.bmp │ │ │ │ ├── aboutembedded16.bmp │ │ │ │ ├── aboutembedded256.bmp │ │ │ │ ├── aboutent16.bmp │ │ │ │ ├── aboutent16a64.bmp │ │ │ │ ├── aboutent256.bmp │ │ │ │ ├── aboutent256a64.bmp │ │ │ │ ├── abouthome16.bmp │ │ │ │ ├── abouthome256.bmp │ │ │ │ ├── aboutsbs16.bmp │ │ │ │ ├── aboutsbs256.bmp │ │ │ │ ├── aboutsrv16.bmp │ │ │ │ ├── aboutsrv256.bmp │ │ │ │ ├── admin.ico │ │ │ │ ├── ados.ico │ │ │ │ ├── agenda.ico │ │ │ │ ├── ap2prog.ico │ │ │ │ ├── bbc.ico │ │ │ │ ├── bc.ico │ │ │ │ ├── bpi.ico │ │ │ │ ├── bq.ico │ │ │ │ ├── bturbo.ico │ │ │ │ ├── close-up.ico │ │ │ │ ├── de45w.ico │ │ │ │ ├── desktop.ico │ │ │ │ ├── dllinit.c │ │ │ │ ├── dm.ico │ │ │ │ ├── dmail.ico │ │ │ │ ├── dochtml.ico │ │ │ │ ├── dosc.ico │ │ │ │ ├── dosflt.ico │ │ │ │ ├── doslrn.ico │ │ │ │ ├── dosmulti.ico │ │ │ │ ├── dosprojt.ico │ │ │ │ ├── dossas.ico │ │ │ │ ├── dosvb.ico │ │ │ │ ├── dosword.ico │ │ │ │ ├── dosworks.ico │ │ │ │ ├── dwdos.ico │ │ │ │ ├── edit.ico │ │ │ │ ├── extra.ico │ │ │ │ ├── foxpro.ico │ │ │ │ ├── fpghtml.ico │ │ │ │ ├── freelanc.ico │ │ │ │ ├── fw.ico │ │ │ │ ├── gameshop.ico │ │ │ │ ├── hg20_21.ico │ │ │ │ ├── hg23.ico │ │ │ │ ├── hg3.ico │ │ │ │ ├── hgg.ico │ │ │ │ ├── hpm3.ico │ │ │ │ ├── htpm.ico │ │ │ │ ├── hw.ico │ │ │ │ ├── ileaf5.ico │ │ │ │ ├── iq.ico │ │ │ │ ├── ivbrush.ico │ │ │ │ ├── kidpix.ico │ │ │ │ ├── kpdos.ico │ │ │ │ ├── llpro.ico │ │ │ │ ├── lmail.ico │ │ │ │ ├── lworks.ico │ │ │ │ ├── magellan.ico │ │ │ │ ├── makefile │ │ │ │ ├── mdbhtml.ico │ │ │ │ ├── mft1.ico │ │ │ │ ├── moricons.def │ │ │ │ ├── moricons.rc │ │ │ │ ├── mscomsv.ico │ │ │ │ ├── msdoslgo.ico │ │ │ │ ├── msmail.ico │ │ │ │ ├── ncp.ico │ │ │ │ ├── now.ico │ │ │ │ ├── optune.ico │ │ │ │ ├── ow.ico │ │ │ │ ├── paradox3.ico │ │ │ │ ├── pc-tcp.ico │ │ │ │ ├── pcconfig.ico │ │ │ │ ├── pcp11b.ico │ │ │ │ ├── pcplus.ico │ │ │ │ ├── pcshell.ico │ │ │ │ ├── pdox35.ico │ │ │ │ ├── pdox40.ico │ │ │ │ ├── pdoxse.ico │ │ │ │ ├── pf.ico │ │ │ │ ├── plus.ico │ │ │ │ ├── ppthtml.ico │ │ │ │ ├── pwb.ico │ │ │ │ ├── qb.ico │ │ │ │ └── qbasic.ico │ │ │ ├── opktools │ │ │ │ ├── winpe │ │ │ │ │ └── lib │ │ │ │ │ │ ├── logging.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── msg.cpp │ │ │ │ │ │ └── sources │ │ │ │ └── wpebins │ │ │ │ │ ├── arm64 │ │ │ │ │ ├── efisys.bin │ │ │ │ │ ├── efisys_EX.bin │ │ │ │ │ ├── efisys_noprompt.bin │ │ │ │ │ ├── efisys_noprompt_EX.bin │ │ │ │ │ └── oscdimg.exe │ │ │ │ │ ├── x64 │ │ │ │ │ ├── efisys.bin │ │ │ │ │ ├── efisys_EX.bin │ │ │ │ │ ├── efisys_noprompt.bin │ │ │ │ │ ├── efisys_noprompt_EX.bin │ │ │ │ │ ├── etfsboot.com │ │ │ │ │ └── oscdimg.exe │ │ │ │ │ └── x86 │ │ │ │ │ ├── efisys.bin │ │ │ │ │ ├── efisys_EX.bin │ │ │ │ │ ├── efisys_noprompt.bin │ │ │ │ │ ├── efisys_noprompt_EX.bin │ │ │ │ │ ├── etfsboot.com │ │ │ │ │ └── oscdimg.exe │ │ │ ├── setuplog │ │ │ │ ├── ansi │ │ │ │ │ ├── makefile │ │ │ │ │ └── sources │ │ │ │ ├── dirs │ │ │ │ ├── setuplog.c │ │ │ │ ├── setuplog.rc │ │ │ │ ├── sources.inc │ │ │ │ ├── unicode │ │ │ │ │ ├── makefile │ │ │ │ │ └── sources │ │ │ │ └── x.c │ │ │ ├── setupmsi │ │ │ │ ├── blainfo.txt │ │ │ │ ├── buildno.txt │ │ │ │ ├── dtcinfo.txt │ │ │ │ ├── entinfo.txt │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── perinfo.txt │ │ │ │ ├── placefil.txt │ │ │ │ ├── proinfo.txt │ │ │ │ ├── sbsinfo.txt │ │ │ │ ├── sources │ │ │ │ ├── srvinfo.txt │ │ │ │ ├── tok_bldnum.cmd │ │ │ │ └── winnt32.msi │ │ │ ├── syssetup │ │ │ │ ├── INITNEP.BMP │ │ │ │ ├── _setup_browser.cxx │ │ │ │ ├── admin.ico │ │ │ │ ├── arrow.bmp │ │ │ │ ├── backgrou.bmp │ │ │ │ ├── backsrv.bmp │ │ │ │ ├── backwks.bmp │ │ │ │ ├── bitmap1.bmp │ │ │ │ ├── cddrive.ico │ │ │ │ ├── cdkey.bmp │ │ │ │ ├── check.bmp │ │ │ │ ├── compact.ico │ │ │ │ ├── computer.ico │ │ │ │ ├── ctape.ico │ │ │ │ ├── custom.ico │ │ │ │ ├── dynupdt.h │ │ │ │ ├── exchng01.ico │ │ │ │ ├── fax01.ico │ │ │ │ ├── filecopy.avi │ │ │ │ ├── flpdrive.ico │ │ │ │ ├── globe.ico │ │ │ │ ├── header.bmp │ │ │ │ ├── icon2.ico │ │ │ │ ├── init.avi │ │ │ │ ├── initserv.bmp │ │ │ │ ├── msg.mc │ │ │ │ ├── newdev.ico │ │ │ │ ├── oem.bmp │ │ │ │ ├── portable.ico │ │ │ │ ├── prepare.bmp │ │ │ │ ├── prepare_srv.bmp │ │ │ │ ├── reboot.bmp │ │ │ │ ├── res.h │ │ │ │ ├── res.rc │ │ │ │ ├── safe.ico │ │ │ │ ├── scroll.ico │ │ │ │ ├── setup.ico │ │ │ │ ├── syssetup.rc │ │ │ │ ├── welcome.bmp │ │ │ │ ├── wiz16.bmp │ │ │ │ ├── wiz256.bmp │ │ │ │ └── wizard1.bmp │ │ │ ├── ui │ │ │ │ ├── autorun │ │ │ │ │ ├── exe │ │ │ │ │ │ ├── autorun.cpp │ │ │ │ │ │ ├── autorun.ico │ │ │ │ │ │ ├── autorun.manifest │ │ │ │ │ │ ├── autorun.rc │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── placefil.txt │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ └── sources │ │ │ │ │ ├── img │ │ │ │ │ │ ├── azure │ │ │ │ │ │ │ ├── arunimg.rc │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── sources │ │ │ │ │ │ │ └── windows.png │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── arunimg.rc │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── sources │ │ │ │ │ │ │ └── windows.png │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── forward.png │ │ │ │ │ │ │ ├── forward2.png │ │ │ │ │ │ │ ├── forwarddisabled.png │ │ │ │ │ │ │ ├── forwardnew.png │ │ │ │ │ │ │ ├── forwardnew2.png │ │ │ │ │ │ │ ├── forwardnewhot.png │ │ │ │ │ │ │ ├── forwardolddisabled.png │ │ │ │ │ │ │ ├── forwardoldhot.png │ │ │ │ │ │ │ ├── forwardpress.png │ │ │ │ │ │ │ ├── forwardpressnew.png │ │ │ │ │ │ │ ├── pressrectangle.png │ │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ │ ├── select1.png │ │ │ │ │ │ │ ├── select2.png │ │ │ │ │ │ │ ├── selectionrectangle.png │ │ │ │ │ │ │ ├── selectpress.png │ │ │ │ │ │ │ ├── setup.ico │ │ │ │ │ │ │ ├── setup1.ico │ │ │ │ │ │ │ ├── setupclose.png │ │ │ │ │ │ │ ├── setupclose2.png │ │ │ │ │ │ │ ├── setupclosehot.png │ │ │ │ │ │ │ └── setupclosepress.png │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── arunimg.rc │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── sources │ │ │ │ │ │ │ └── windows.png │ │ │ │ │ └── res │ │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── arunres.rc │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── sources │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── arunres.rc │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── sources │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── resource.h │ │ │ │ │ │ ├── dirs │ │ │ │ │ │ └── server │ │ │ │ │ │ ├── arunres.rc │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── sources │ │ │ │ ├── sperr32 │ │ │ │ │ ├── makefile │ │ │ │ │ ├── placefil.txt │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sources │ │ │ │ │ ├── sperr32.cpp │ │ │ │ │ ├── sperr32.ico │ │ │ │ │ ├── sperr32.manifest │ │ │ │ │ └── sperr32.rc │ │ │ │ ├── spwizimg │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── mswinautorun.png │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── spwizimg.rc │ │ │ │ │ ├── client │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── mswin.png │ │ │ │ │ │ ├── mswinautorun.png │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── spwizimg.rc │ │ │ │ │ ├── common │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── backhot.png │ │ │ │ │ │ ├── backpress.png │ │ │ │ │ │ ├── blank.png │ │ │ │ │ │ ├── blank2.png │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── buttondisabled.png │ │ │ │ │ │ ├── buttonhlight.png │ │ │ │ │ │ ├── buttonhot.png │ │ │ │ │ │ ├── buttonpress.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── closehot.png │ │ │ │ │ │ ├── closepress.png │ │ │ │ │ │ ├── dialog.png │ │ │ │ │ │ ├── err.png │ │ │ │ │ │ ├── frame.png │ │ │ │ │ │ ├── help.png │ │ │ │ │ │ ├── info.png │ │ │ │ │ │ ├── infodlg.png │ │ │ │ │ │ ├── noback.png │ │ │ │ │ │ ├── noclose.png │ │ │ │ │ │ ├── olddlg.png │ │ │ │ │ │ ├── question.png │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── smhelp.png │ │ │ │ │ │ └── warning.png │ │ │ │ │ ├── dirs │ │ │ │ │ └── server │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── mswin.png │ │ │ │ │ │ ├── mswinautorun.png │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── spwizimg.rc │ │ │ │ ├── spwizres │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── spwizres.rc │ │ │ │ │ ├── client │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── spwizres.rc │ │ │ │ │ ├── common │ │ │ │ │ │ └── 2402000.bin │ │ │ │ │ ├── dirs │ │ │ │ │ └── server │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── spwizres.rc │ │ │ │ ├── uxlib │ │ │ │ │ └── res │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sources │ │ │ │ │ │ └── uxlibres.rc │ │ │ │ ├── w32uiimg │ │ │ │ │ ├── aerocmdlnk.png │ │ │ │ │ ├── aerosel.bmp │ │ │ │ │ ├── aeroselect.png │ │ │ │ │ ├── background.bmp │ │ │ │ │ ├── button.bmp │ │ │ │ │ ├── buttondisable.bmp │ │ │ │ │ ├── buttonhilight.bmp │ │ │ │ │ ├── buttonpress.bmp │ │ │ │ │ ├── classicdrv.ico │ │ │ │ │ ├── cmdlnk.bmp │ │ │ │ │ ├── commandlink1.bmp │ │ │ │ │ ├── commandlinkprs.bmp │ │ │ │ │ ├── custominstall.bmp │ │ │ │ │ ├── custominstall2.bmp │ │ │ │ │ ├── custominstall3.bmp │ │ │ │ │ ├── custominstall4.bmp │ │ │ │ │ ├── custominstalldisabled.bmp │ │ │ │ │ ├── disc.png │ │ │ │ │ ├── disc2.png │ │ │ │ │ ├── discdisabl.png │ │ │ │ │ ├── dischov.png │ │ │ │ │ ├── discprs.png │ │ │ │ │ ├── disk.ico │ │ │ │ │ ├── disk2.ico │ │ │ │ │ ├── done.png │ │ │ │ │ ├── erspart.png │ │ │ │ │ ├── erspart2.png │ │ │ │ │ ├── erspartdisabl.png │ │ │ │ │ ├── ersparthov.png │ │ │ │ │ ├── erspartprs.png │ │ │ │ │ ├── filchk.ico │ │ │ │ │ ├── filnochk.ico │ │ │ │ │ ├── fmrtpart.png │ │ │ │ │ ├── fmrtpart2.png │ │ │ │ │ ├── fmrtpartdisabl.png │ │ │ │ │ ├── fmrtparthov.png │ │ │ │ │ ├── fmrtpartprs.png │ │ │ │ │ ├── frwrd.bmp │ │ │ │ │ ├── frwrd2.bmp │ │ │ │ │ ├── frwrdhov.bmp │ │ │ │ │ ├── frwrdkill.bmp │ │ │ │ │ ├── frwrdprs.bmp │ │ │ │ │ ├── hoveredlistitem.png │ │ │ │ │ ├── itemselect.bmp │ │ │ │ │ ├── lhselect.png │ │ │ │ │ ├── loaddrv.png │ │ │ │ │ ├── loaddrv2.png │ │ │ │ │ ├── loaddrvdisabl.png │ │ │ │ │ ├── loaddrvhov.png │ │ │ │ │ ├── loaddrvprs.png │ │ │ │ │ ├── longhorn.bmp │ │ │ │ │ ├── longhornminilogo.png │ │ │ │ │ ├── makefile │ │ │ │ │ ├── migra2.bmp │ │ │ │ │ ├── migratdisable.bmp │ │ │ │ │ ├── migratefiles.bmp │ │ │ │ │ ├── migwiz3.bmp │ │ │ │ │ ├── newpart.png │ │ │ │ │ ├── newpart2.png │ │ │ │ │ ├── newpartdisabl.png │ │ │ │ │ ├── newparthov.png │ │ │ │ │ ├── newpartprs.png │ │ │ │ │ ├── osk.png │ │ │ │ │ ├── productkeyexmpl.bmp │ │ │ │ │ ├── prsarea.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── refresh2.png │ │ │ │ │ ├── refreshdisabl.png │ │ │ │ │ ├── refreshhov.png │ │ │ │ │ ├── refreshprs.png │ │ │ │ │ ├── renamepressed.bmp │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── selarea.png │ │ │ │ │ ├── selecteditem.png │ │ │ │ │ ├── selectrect.bmp │ │ │ │ │ ├── selectrecthint.png │ │ │ │ │ ├── sources │ │ │ │ │ ├── w32uiimg.rc │ │ │ │ │ ├── warning.png │ │ │ │ │ └── windows.ico │ │ │ │ └── w32uires │ │ │ │ │ ├── azure │ │ │ │ │ ├── makefile │ │ │ │ │ ├── sources │ │ │ │ │ └── w32uires.rc │ │ │ │ │ ├── client │ │ │ │ │ ├── makefile │ │ │ │ │ ├── sources │ │ │ │ │ └── w32uires.rc │ │ │ │ │ ├── common │ │ │ │ │ ├── appcompatfaq.html │ │ │ │ │ ├── appcompatxsl.xsl │ │ │ │ │ ├── installlocationcompname.rtf │ │ │ │ │ ├── longhornprivacystatement.rtf │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── rmcompname.rtf │ │ │ │ │ └── upgradeorclean.rtf │ │ │ │ │ ├── dirs │ │ │ │ │ └── server │ │ │ │ │ ├── makefile │ │ │ │ │ ├── sources │ │ │ │ │ └── w32uires.rc │ │ │ ├── unattend │ │ │ │ ├── dll │ │ │ │ │ ├── res.rc │ │ │ │ │ └── unattend.def │ │ │ │ └── lib │ │ │ │ │ └── api │ │ │ │ │ ├── filesearch.cpp │ │ │ │ │ ├── postprocessing.cpp │ │ │ │ │ ├── unattend_stream.cpp │ │ │ │ │ └── unattendinternal.cpp │ │ │ ├── unbcl │ │ │ │ ├── dirs │ │ │ │ └── src │ │ │ │ │ ├── abandonedmutexexception.cpp │ │ │ │ │ ├── allocator.cpp │ │ │ │ │ ├── applicationexception.cpp │ │ │ │ │ ├── argumentexception.cpp │ │ │ │ │ ├── argumentnullexception.cpp │ │ │ │ │ ├── argumentoutofrangeexception.cpp │ │ │ │ │ ├── arithmeticexception.cpp │ │ │ │ │ ├── array.cpp │ │ │ │ │ ├── asciiencoding.cpp │ │ │ │ │ ├── bufferedstream.cpp │ │ │ │ │ ├── char.cpp │ │ │ │ │ ├── collectionbase.cpp │ │ │ │ │ ├── consoleloghandler.cpp │ │ │ │ │ ├── datetime.cpp │ │ │ │ │ ├── directory.cpp │ │ │ │ │ ├── dirs │ │ │ │ │ ├── dll │ │ │ │ │ ├── makefile │ │ │ │ │ └── sources │ │ │ │ │ ├── dlldecl.h │ │ │ │ │ ├── dllentry.cpp │ │ │ │ │ ├── encoding.cpp │ │ │ │ │ ├── environment.cpp │ │ │ │ │ ├── exception.cpp │ │ │ │ │ ├── externalexception.cpp │ │ │ │ │ ├── file.cpp │ │ │ │ │ ├── fileenum.cpp │ │ │ │ │ ├── filestream.cpp │ │ │ │ │ ├── formatexception.cpp │ │ │ │ │ ├── heapmemorymanager.cpp │ │ │ │ │ ├── indexoutofrangeexception.cpp │ │ │ │ │ ├── int32ops.cpp │ │ │ │ │ ├── invalidcastexception.cpp │ │ │ │ │ ├── invalidoperationexception.cpp │ │ │ │ │ ├── logging.cpp │ │ │ │ │ ├── media │ │ │ │ │ ├── makefile │ │ │ │ │ ├── placefil.txt │ │ │ │ │ └── sources │ │ │ │ │ ├── memorystream.cpp │ │ │ │ │ ├── monitor.cpp │ │ │ │ │ ├── multisz.cpp │ │ │ │ │ ├── mutex.cpp │ │ │ │ │ ├── notsupportedexception.cpp │ │ │ │ │ ├── object.cpp │ │ │ │ │ ├── objectdisposedexception.cpp │ │ │ │ │ ├── operatingsystem.cpp │ │ │ │ │ ├── outofmemoryexception.cpp │ │ │ │ │ ├── overflowexception.cpp │ │ │ │ │ ├── path.cpp │ │ │ │ │ ├── pathtoolongexception.cpp │ │ │ │ │ ├── process.cpp │ │ │ │ │ ├── processstartinfo.cpp │ │ │ │ │ ├── reghandle.cpp │ │ │ │ │ ├── registry.cpp │ │ │ │ │ ├── registrykey.cpp │ │ │ │ │ ├── regsubkeyenum.cpp │ │ │ │ │ ├── securityexception.cpp │ │ │ │ │ ├── sehexception.cpp │ │ │ │ │ ├── serializablebase.cpp │ │ │ │ │ ├── serializationexception.cpp │ │ │ │ │ ├── serializationstream.cpp │ │ │ │ │ ├── stack.cpp │ │ │ │ │ ├── stream.cpp │ │ │ │ │ ├── streamreader.cpp │ │ │ │ │ ├── streamwriter.cpp │ │ │ │ │ ├── string.cpp │ │ │ │ │ ├── stringbuilder.cpp │ │ │ │ │ ├── stringptr.cpp │ │ │ │ │ ├── support │ │ │ │ │ ├── argumentexception.h │ │ │ │ │ ├── exception.h │ │ │ │ │ ├── globalops.h │ │ │ │ │ ├── path.h │ │ │ │ │ ├── smartptr.h │ │ │ │ │ └── win32exception.h │ │ │ │ │ ├── system │ │ │ │ │ ├── _string.h │ │ │ │ │ ├── array.h │ │ │ │ │ ├── collections │ │ │ │ │ │ ├── arraylist.h │ │ │ │ │ │ ├── collectionbase.h │ │ │ │ │ │ ├── hashtable.h │ │ │ │ │ │ └── stack.h │ │ │ │ │ ├── io │ │ │ │ │ │ ├── encoding.h │ │ │ │ │ │ ├── stream.h │ │ │ │ │ │ └── unbclbase.h │ │ │ │ │ ├── runtime │ │ │ │ │ │ └── serialization │ │ │ │ │ │ │ ├── serializablebase.h │ │ │ │ │ │ │ └── serializationstream.h │ │ │ │ │ └── xml │ │ │ │ │ │ └── xml.h │ │ │ │ │ ├── systemexception.cpp │ │ │ │ │ ├── textreader.cpp │ │ │ │ │ ├── textwriter.cpp │ │ │ │ │ ├── thread.cpp │ │ │ │ │ ├── threadstateexception.cpp │ │ │ │ │ ├── timespan.cpp │ │ │ │ │ ├── type.cpp │ │ │ │ │ ├── unbcl.cpp │ │ │ │ │ ├── unbcl.def │ │ │ │ │ ├── unicodeencoding.cpp │ │ │ │ │ ├── ver.rc │ │ │ │ │ ├── version.cpp │ │ │ │ │ ├── waithandle.cpp │ │ │ │ │ ├── win32exception.cpp │ │ │ │ │ ├── xml.cpp │ │ │ │ │ ├── xmlexception.cpp │ │ │ │ │ └── xpathexception.cpp │ │ │ ├── undostub │ │ │ │ ├── interface.c │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── undo.def │ │ │ │ └── undo.rc │ │ │ └── winnt32 │ │ │ │ ├── apmupgrd │ │ │ │ ├── apmdetct.cpp │ │ │ │ ├── apmrsrc.h │ │ │ │ ├── apmupgrd.cpp │ │ │ │ ├── apmupgrd.def │ │ │ │ ├── apmupgrd.h │ │ │ │ ├── apmupgrd.rc │ │ │ │ ├── apmutils.cpp │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── boscomp │ │ │ │ ├── boscomp.cpp │ │ │ │ ├── boscomp.def │ │ │ │ ├── boscomp.h │ │ │ │ ├── boscomp.rc │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ └── sources │ │ │ │ ├── exe │ │ │ │ ├── amd64 │ │ │ │ │ ├── download.c │ │ │ │ │ ├── download.h │ │ │ │ │ └── sources │ │ │ │ ├── i386 │ │ │ │ │ ├── download.c │ │ │ │ │ ├── download.h │ │ │ │ │ ├── initw2k.bmp │ │ │ │ │ └── sources │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── winnt32.c │ │ │ │ ├── winnt32.h │ │ │ │ └── winnt32.rc │ │ │ │ ├── faulth │ │ │ │ ├── except.inf │ │ │ │ ├── faulth.c │ │ │ │ ├── faulth.def │ │ │ │ ├── faulth.h │ │ │ │ ├── faulth.rc │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ └── util.h │ │ │ │ ├── fsfilter │ │ │ │ ├── fsfilter.c │ │ │ │ ├── fsfilter.def │ │ │ │ ├── fsfilter.h │ │ │ │ ├── fsfilter.htm │ │ │ │ ├── fsfilter.inf │ │ │ │ ├── fsfilter.txt │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── ftcomp │ │ │ │ ├── ftcomp.cpp │ │ │ │ ├── ftcomp.def │ │ │ │ ├── ftcomp.h │ │ │ │ ├── ftcomp.rc │ │ │ │ ├── ftcomprc.h │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ └── scripts │ │ │ │ ├── makefile │ │ │ │ ├── runw32.bat │ │ │ │ └── sources │ │ ├── pnp │ │ │ ├── hdwwiz │ │ │ │ └── exe │ │ │ │ │ ├── hdwwiz.c │ │ │ │ │ ├── hdwwiz.ico │ │ │ │ │ ├── hdwwiz.manifest │ │ │ │ │ ├── hdwwiz.rc │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ └── sources │ │ │ ├── luaexe │ │ │ │ └── deviceeject │ │ │ │ │ ├── deviceeject.c │ │ │ │ │ ├── deviceeject.ico │ │ │ │ │ ├── deviceeject.manifest │ │ │ │ │ ├── deviceeject.rc │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ └── sources │ │ │ ├── ndadmin │ │ │ │ ├── makefile │ │ │ │ ├── ndadmin.c │ │ │ │ ├── ndadmin.ico │ │ │ │ ├── ndadmin.manifest │ │ │ │ ├── ndadmin.rc │ │ │ │ ├── resource.h │ │ │ │ └── sources │ │ │ ├── ndexe │ │ │ │ ├── makefile │ │ │ │ ├── newdev.c │ │ │ │ ├── newdev.ico │ │ │ │ ├── newdev.manifest │ │ │ │ ├── newdev.rc │ │ │ │ ├── refreshdev.cpp │ │ │ │ ├── resource.h │ │ │ │ └── sources │ │ │ ├── setupapi │ │ │ │ └── sputils │ │ │ │ │ ├── ansi │ │ │ │ │ ├── makefile │ │ │ │ │ ├── precomp.h │ │ │ │ │ └── sources │ │ │ │ │ ├── common.h │ │ │ │ │ ├── dirs │ │ │ │ │ ├── extended │ │ │ │ │ ├── makefile │ │ │ │ │ ├── precomp.h │ │ │ │ │ └── sources │ │ │ │ │ ├── fileutil.c │ │ │ │ │ ├── locking.h │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── miscutil.c │ │ │ │ │ ├── registry.c │ │ │ │ │ ├── security.c │ │ │ │ │ ├── sources.inc │ │ │ │ │ ├── sputils.c │ │ │ │ │ ├── strtab.c │ │ │ │ │ ├── strtab.h │ │ │ │ │ └── unicode │ │ │ │ │ ├── makefile │ │ │ │ │ ├── precomp.h │ │ │ │ │ └── sources │ │ │ ├── sysclass │ │ │ │ ├── card.ico │ │ │ │ ├── fingerprint.ico │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ ├── sources │ │ │ │ ├── storinst.c │ │ │ │ ├── sysclass.c │ │ │ │ ├── sysclass.def │ │ │ │ └── sysclass.rc │ │ │ └── tools │ │ │ │ └── devcon │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── devcon.htm │ │ │ │ ├── cmds.cpp │ │ │ │ ├── devcon.cpp │ │ │ │ ├── devcon.h │ │ │ │ ├── devcon.htm │ │ │ │ ├── devcon.rc │ │ │ │ ├── devcon.sln │ │ │ │ ├── devcon.vcxproj │ │ │ │ ├── devcon.vcxproj.Filters │ │ │ │ ├── dump.cpp │ │ │ │ ├── makefile │ │ │ │ ├── msg.mc │ │ │ │ ├── rc_ids.h │ │ │ │ └── sources │ │ ├── stor │ │ │ └── iscsitgt │ │ │ │ └── complianceplugin │ │ │ │ ├── itgtupg.def │ │ │ │ ├── makefile │ │ │ │ ├── precomp.h │ │ │ │ ├── sources │ │ │ │ ├── upgradecheck.cpp │ │ │ │ └── ver.rc │ │ ├── telemetry │ │ │ ├── dirs │ │ │ └── permission │ │ │ │ ├── dirs │ │ │ │ └── product │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ └── telemetrypermission.cpp │ │ ├── win32 │ │ │ └── timesync │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ ├── sources │ │ │ │ ├── timesynctask.cpp │ │ │ │ ├── timesynctask.def │ │ │ │ ├── timesynctask.rc │ │ │ │ └── utility.cpp │ │ └── wsapi21.eml │ ├── com │ │ ├── netfx │ │ │ └── windowsbuilt │ │ │ │ └── servicesunmanaged │ │ │ │ ├── dirs │ │ │ │ └── performancecountershim │ │ │ │ ├── makefile │ │ │ │ ├── netfxperf.def │ │ │ │ ├── netfxprf.cpp │ │ │ │ ├── netfxprf.rc │ │ │ │ └── sources │ │ ├── ole32 │ │ │ ├── comcat │ │ │ │ └── fwd │ │ │ │ │ ├── catfact.cpp │ │ │ │ │ ├── comcat.def │ │ │ │ │ ├── comcat.rc │ │ │ │ │ ├── makefile │ │ │ │ │ └── sources │ │ │ └── iprop │ │ │ │ ├── daytona │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── dirs │ │ │ │ ├── iprop.def │ │ │ │ └── iprop.rc │ │ └── rpc │ │ │ └── locator │ │ │ ├── client │ │ │ ├── autohand.cxx │ │ │ ├── deprerror.cxx │ │ │ ├── makefile │ │ │ ├── msg.bin │ │ │ ├── nsiclnt.cxx │ │ │ ├── nsimgmt.cxx │ │ │ ├── nsisvr.cxx │ │ │ ├── ntutil.cxx │ │ │ ├── rpcns4.def │ │ │ ├── rpcns4.rc │ │ │ └── sources │ │ │ ├── dirs │ │ │ └── nsserver │ │ │ ├── dirs │ │ │ └── src │ │ │ ├── locator.manifest │ │ │ ├── locator.rc │ │ │ ├── locatorpch.h │ │ │ ├── makefile │ │ │ ├── service.cxx │ │ │ └── sources │ ├── copy of named pipe implementation.eml │ ├── drivers │ │ ├── storage │ │ │ └── iscsi │ │ │ │ └── tools │ │ │ │ └── cplexe │ │ │ │ ├── cplexe.c │ │ │ │ ├── cplexe.ico │ │ │ │ ├── cplexe.manifest │ │ │ │ ├── cplexe.rc │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ └── wdm │ │ │ └── usb │ │ │ └── user │ │ │ └── usbperf │ │ │ ├── makefile │ │ │ ├── msg.bin │ │ │ ├── perfdata.c │ │ │ ├── usbperf.c │ │ │ ├── usbperf.def │ │ │ ├── usbperf.rc │ │ │ └── util.c │ ├── ds │ │ ├── ds │ │ │ └── src │ │ │ │ ├── sam │ │ │ │ └── ntdsupg │ │ │ │ │ ├── makefile │ │ │ │ │ ├── msgs.mc │ │ │ │ │ ├── ntdsupg.c │ │ │ │ │ ├── ntdsupg.def │ │ │ │ │ ├── sources │ │ │ │ │ └── version.rc │ │ │ │ └── util │ │ │ │ └── adprep │ │ │ │ └── lib │ │ │ │ ├── adpcheck.c │ │ │ │ ├── adpcheck.h │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ └── version.rc │ │ ├── netapi │ │ │ └── svcimgs │ │ │ │ └── ntrepl │ │ │ │ └── upgrade │ │ │ │ ├── makefile │ │ │ │ ├── ntfrsupg.cpp │ │ │ │ ├── ntfrsupg.def │ │ │ │ ├── precomp.h │ │ │ │ ├── sources │ │ │ │ └── ver.rc │ │ └── security │ │ │ └── rm │ │ │ └── src │ │ │ └── server │ │ │ └── setup │ │ │ ├── dirs │ │ │ └── rmsupg │ │ │ ├── makefile │ │ │ ├── rmscomp.cpp │ │ │ ├── rmsupg.def │ │ │ ├── sources │ │ │ └── ver.rc │ ├── enduser │ │ ├── databaseaccess │ │ │ └── src │ │ │ │ └── mdac │ │ │ │ └── odbc │ │ │ │ └── thunk │ │ │ │ ├── cpanel32 │ │ │ │ ├── ds32gt.c │ │ │ │ ├── ds32gt.def │ │ │ │ ├── local.rc │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── dirs │ │ │ │ └── dm32 │ │ │ │ ├── local.rc │ │ │ │ ├── makefile │ │ │ │ ├── odbc32gt.c │ │ │ │ ├── odbc32gt.def │ │ │ │ └── sources │ │ ├── ezap │ │ │ └── onscreenkeyboard │ │ │ │ └── dll │ │ │ │ └── src │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── makefile │ │ │ │ ├── osksupport.cpp │ │ │ │ ├── osksupport.def │ │ │ │ ├── osksupport.h │ │ │ │ ├── osksupport.rc │ │ │ │ └── sources │ │ ├── helpengines │ │ │ └── winhelp │ │ │ │ ├── dirs │ │ │ │ └── winhstb │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── winhstb.cpp │ │ │ │ ├── winhstb.ico │ │ │ │ ├── winhstb.manifest │ │ │ │ └── winhstb.rc │ │ └── winstore │ │ │ └── licensing │ │ │ └── clientdll │ │ │ ├── build │ │ │ ├── makefile │ │ │ ├── resources.rc │ │ │ ├── sources │ │ │ ├── wsclient.cpp │ │ │ └── wsclient.def │ │ │ └── dirs │ ├── letter to children - 2.eml │ ├── merged │ │ ├── ddk │ │ │ └── legacy_files │ │ │ │ └── drivinit.h │ │ └── setupinfs │ │ │ ├── 1394.inx │ │ │ ├── 61883.inx │ │ │ ├── acpi.inx │ │ │ ├── apps.inx │ │ │ ├── avc.inx │ │ │ ├── battery.inx │ │ │ ├── bda.inx │ │ │ ├── cdrom.inx │ │ │ ├── dcfirst.inx │ │ │ ├── dcup5.inx │ │ │ ├── defltdc.inx │ │ │ ├── defltsv.inx │ │ │ ├── defltwk.inx │ │ │ ├── disk.inx │ │ │ ├── display.inx │ │ │ ├── dshowext.inx │ │ │ ├── dsup.inx │ │ │ ├── dsupt.inx │ │ │ ├── dwup.inx │ │ │ ├── fdc.inx │ │ │ ├── flpydisk.inx │ │ │ ├── gameport.inx │ │ │ ├── hidserv.inx │ │ │ ├── image.inx │ │ │ ├── input.inx │ │ │ ├── keyboard.inx │ │ │ ├── ks.inx │ │ │ ├── kscaptur.inx │ │ │ ├── ksfilter.inx │ │ │ ├── machine.inx │ │ │ ├── memory.inx │ │ │ ├── mf.inx │ │ │ ├── msdv.inx │ │ │ ├── mshdc.inx │ │ │ ├── msmouse.inx │ │ │ ├── mstape.inx │ │ │ ├── ramdisk.inx │ │ │ ├── unknown.inx │ │ │ ├── usa │ │ │ ├── 1394.txt │ │ │ ├── 61883.txt │ │ │ ├── acpi.txt │ │ │ ├── apps.txt │ │ │ ├── avc.txt │ │ │ ├── battery.txt │ │ │ ├── bda.txt │ │ │ ├── cdrom.txt │ │ │ ├── dcfirst.txt │ │ │ ├── dcup5.txt │ │ │ ├── defltdc.txt │ │ │ ├── defltsv.txt │ │ │ ├── defltwk.txt │ │ │ ├── disk.txt │ │ │ ├── display.txt │ │ │ ├── dshowext.txt │ │ │ ├── dsup.txt │ │ │ ├── dsupt.txt │ │ │ ├── dwup.txt │ │ │ ├── fdc.txt │ │ │ ├── flpydisk.txt │ │ │ ├── gameport.txt │ │ │ ├── hidserv.txt │ │ │ ├── image.txt │ │ │ ├── input.txt │ │ │ ├── ks.txt │ │ │ ├── kscaptur.txt │ │ │ ├── ksfilter.txt │ │ │ ├── mchgr.txt │ │ │ ├── memory.txt │ │ │ ├── mf.txt │ │ │ ├── msdv.txt │ │ │ ├── mshdc.txt │ │ │ ├── msmouse.txt │ │ │ ├── mstape.txt │ │ │ ├── ramdisk.txt │ │ │ ├── unknown.txt │ │ │ ├── usb.txt │ │ │ ├── usbport.txt │ │ │ ├── usbprint.txt │ │ │ ├── usbstor.txt │ │ │ ├── volsnap.txt │ │ │ └── volume.txt │ │ │ ├── usb.inx │ │ │ ├── usbport.inx │ │ │ ├── usbprint.inx │ │ │ ├── usbstor.inx │ │ │ ├── volsnap.inx │ │ │ ├── volume.inx │ │ │ └── winpe │ │ │ └── startnet.cmd │ ├── multimedia │ │ └── photos │ │ │ └── imagingdevicescontrolpanel │ │ │ ├── imagingdevices.cpp │ │ │ ├── imagingdevices.manifest │ │ │ ├── imagingdevices.rc │ │ │ ├── main.ico │ │ │ ├── makefile │ │ │ ├── precomp.h │ │ │ ├── resource.h │ │ │ └── sources │ ├── printscan │ │ ├── imaging │ │ │ └── common │ │ │ │ └── base │ │ │ │ └── tracing │ │ │ │ └── wiatrace │ │ │ │ ├── makefile │ │ │ │ ├── precomp.h │ │ │ │ ├── sources │ │ │ │ ├── traceoutput.cpp │ │ │ │ ├── wiatrace.def │ │ │ │ └── wiatrace.rc │ │ └── print │ │ │ ├── spooler │ │ │ └── splsetup │ │ │ │ └── exe │ │ │ │ ├── makefile │ │ │ │ ├── ntprintexe.cxx │ │ │ │ ├── ntprintexe.ico │ │ │ │ ├── ntprintexe.manifest │ │ │ │ ├── ntprintexe.rc │ │ │ │ └── sources │ │ │ └── ui │ │ │ └── printui │ │ │ └── exe │ │ │ ├── makefile │ │ │ ├── printui.cxx │ │ │ ├── printui.ico │ │ │ ├── printui.manifest │ │ │ ├── printui.rc │ │ │ └── sources │ ├── shell │ │ ├── applets │ │ │ ├── discover │ │ │ │ ├── container.cpp │ │ │ │ ├── container.h │ │ │ │ ├── crtfree.h │ │ │ │ ├── discover.cpp │ │ │ │ ├── discover.dsp │ │ │ │ ├── discover.dsw │ │ │ │ ├── discover.rc │ │ │ │ ├── makefile │ │ │ │ ├── res │ │ │ │ │ └── tour.ico │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rcv │ │ │ │ ├── sources │ │ │ │ ├── webapp.cpp │ │ │ │ └── webapp.h │ │ │ ├── wallpaperhost │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ ├── wallpaperhost.cpp │ │ │ │ ├── wallpaperhost.manifest │ │ │ │ └── wallpaperhost.rc │ │ │ └── welcome │ │ │ │ ├── crtfree.h │ │ │ │ ├── dataitem.cpp │ │ │ │ ├── dataitem.h │ │ │ │ ├── dirs │ │ │ │ ├── dlgapp.cpp │ │ │ │ ├── dlgapp.h │ │ │ │ ├── html │ │ │ │ ├── container.cpp │ │ │ │ ├── container.h │ │ │ │ ├── crtfree.h │ │ │ │ ├── dirs │ │ │ │ ├── eventsink.cpp │ │ │ │ ├── inidata.cpp │ │ │ │ ├── inidata.h │ │ │ │ ├── res │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── bar.jpg │ │ │ │ │ ├── comp.bmp │ │ │ │ │ ├── computer.gif │ │ │ │ │ ├── disk.gif │ │ │ │ │ ├── flag.gif │ │ │ │ │ ├── flagblk.gif │ │ │ │ │ ├── flagsm.gif │ │ │ │ │ ├── internet.gif │ │ │ │ │ ├── noda.htm │ │ │ │ │ ├── performance.eml │ │ │ │ │ ├── register.gif │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── title.gif │ │ │ │ │ ├── titlesrv.gif │ │ │ │ │ ├── top.gif │ │ │ │ │ ├── welcome.htm │ │ │ │ │ ├── welcome.ico │ │ │ │ │ ├── welcome.js │ │ │ │ │ ├── welcome2.htm │ │ │ │ │ ├── welcome3.htm │ │ │ │ │ └── welcome_new.htm │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ ├── resource.rcv │ │ │ │ ├── sources.inc │ │ │ │ ├── srv │ │ │ │ │ ├── letter to children - 2.eml │ │ │ │ │ ├── makefile │ │ │ │ │ ├── rats_pass.eml │ │ │ │ │ ├── sources │ │ │ │ │ └── welcome.ini │ │ │ │ ├── webapp.cpp │ │ │ │ ├── webapp.h │ │ │ │ ├── welcome.dsp │ │ │ │ ├── welcome.dsw │ │ │ │ └── wks │ │ │ │ │ ├── makefile │ │ │ │ │ ├── regbeta.eml │ │ │ │ │ ├── sources │ │ │ │ │ └── welcome.ini │ │ │ │ ├── nt4 │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── res │ │ │ │ ├── 16border.bmp │ │ │ │ ├── 16menu.bmp │ │ │ │ ├── 256border.bmp │ │ │ │ ├── 256menu.bmp │ │ │ │ ├── brhand.cur │ │ │ │ ├── connect.bmp │ │ │ │ ├── defaultbkgnd.bmp │ │ │ │ ├── discover.bmp │ │ │ │ ├── maintain.bmp │ │ │ │ ├── mouseclick.avi │ │ │ │ ├── music.wav │ │ │ │ ├── register.bmp │ │ │ │ ├── tip0.bmp │ │ │ │ ├── tip0mask.bmp │ │ │ │ ├── tip0win9x.bmp │ │ │ │ ├── tip2.bmp │ │ │ │ ├── tip2mask.bmp │ │ │ │ ├── tip2win9x.bmp │ │ │ │ ├── tip3.bmp │ │ │ │ ├── tip3mask.bmp │ │ │ │ ├── tip3win9x.bmp │ │ │ │ ├── tip4.bmp │ │ │ │ ├── tip4mask.bmp │ │ │ │ ├── tip4win9x.bmp │ │ │ │ ├── tip5.bmp │ │ │ │ ├── tip5mask.bmp │ │ │ │ ├── tip5win9x.bmp │ │ │ │ ├── titlent.bmp │ │ │ │ ├── welcdisp.ico │ │ │ │ ├── welcicon.ico │ │ │ │ ├── welcmon.bmp │ │ │ │ ├── welcome.ico │ │ │ │ ├── welctitl.bmp │ │ │ │ ├── win9x.bmp │ │ │ │ ├── win9x16.bmp │ │ │ │ ├── workstation.bmp │ │ │ │ └── workstation16.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ ├── resource.rcv │ │ │ │ ├── resource95.h │ │ │ │ ├── tests failures.nws │ │ │ │ ├── welcome.cpp │ │ │ │ ├── welcome.dsp │ │ │ │ ├── welcome.dsw │ │ │ │ ├── welcome.h │ │ │ │ ├── welcome.ini │ │ │ │ ├── welcome95.c │ │ │ │ ├── welcome95.def │ │ │ │ ├── welcome95.h │ │ │ │ ├── welcome95.rc │ │ │ │ ├── welcome95.rcv │ │ │ │ ├── win95 │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── win98 │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ └── winnt │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ ├── cpls │ │ │ └── cpl_exes │ │ │ │ ├── deskcpl │ │ │ │ ├── devprop │ │ │ │ │ ├── devprop.cpp │ │ │ │ │ ├── devprop.ico │ │ │ │ │ ├── devprop.manifest │ │ │ │ │ ├── devprop.rc │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ └── sources │ │ │ │ └── dirs │ │ │ │ └── dpicpl │ │ │ │ ├── dpicpl.cpp │ │ │ │ ├── dpicpl.ico │ │ │ │ ├── dpicpl.manifest │ │ │ │ ├── dpicpl.rc │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ └── sources │ │ ├── ext │ │ │ └── oobefldr │ │ │ │ └── dll │ │ │ │ ├── banner.bmp │ │ │ │ ├── bar.bmp │ │ │ │ ├── bluelink.bmp │ │ │ │ ├── cdplay.ico │ │ │ │ ├── contacts.ico │ │ │ │ ├── dll.cpp │ │ │ │ ├── dui1.uipp │ │ │ │ ├── dui2.uipp │ │ │ │ ├── greenlink.bmp │ │ │ │ ├── hilight.bmp │ │ │ │ ├── homepage.xml │ │ │ │ ├── hover.bmp │ │ │ │ ├── makefile │ │ │ │ ├── oobefldr.def │ │ │ │ ├── press.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ ├── sources │ │ │ │ ├── web.ico │ │ │ │ ├── wevttempl.bin │ │ │ │ └── windowsshell.manifest │ │ ├── osshell │ │ │ ├── cpls │ │ │ │ └── lpksetup │ │ │ │ │ └── muilpremovecallback │ │ │ │ │ ├── makefile │ │ │ │ │ ├── muilangcleanup.cpp │ │ │ │ │ ├── muilangcleanup.rc │ │ │ │ │ ├── muilanguagecleanup.def │ │ │ │ │ └── sources │ │ │ ├── ep │ │ │ │ ├── aboutwep │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── about.c │ │ │ │ │ ├── about.def │ │ │ │ │ ├── aboutbaw.bmp │ │ │ │ │ ├── aboutclr.bmp │ │ │ │ │ ├── aboutclr.rle │ │ │ │ │ ├── aboutwep │ │ │ │ │ ├── aboutwep.def │ │ │ │ │ ├── makefile │ │ │ │ │ ├── notes.txt │ │ │ │ │ ├── res.h │ │ │ │ │ ├── res.rc │ │ │ │ │ └── sources │ │ │ │ ├── carddll │ │ │ │ │ ├── back.h │ │ │ │ │ ├── cards.c │ │ │ │ │ ├── cards.def │ │ │ │ │ ├── cards.h │ │ │ │ │ ├── cards.rch │ │ │ │ │ ├── cdt.h │ │ │ │ │ ├── crd.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── dibs │ │ │ │ │ │ ├── 286386a.dib │ │ │ │ │ │ ├── 286386b.dib │ │ │ │ │ │ ├── abrobot1.dib │ │ │ │ │ │ ├── abrobot2.dib │ │ │ │ │ │ ├── aflipe1.dib │ │ │ │ │ │ ├── aflipe2.dib │ │ │ │ │ │ ├── akstl1.dib │ │ │ │ │ │ ├── aslime1.dib │ │ │ │ │ │ ├── aslime2.dib │ │ │ │ │ │ ├── back.dib │ │ │ │ │ │ ├── bbear.dib │ │ │ │ │ │ ├── bcard.dib │ │ │ │ │ │ ├── bfish.dib │ │ │ │ │ │ ├── bghatch.dib │ │ │ │ │ │ ├── bkvine.dib │ │ │ │ │ │ ├── blvine.dib │ │ │ │ │ │ ├── brobot.dib │ │ │ │ │ │ ├── car.dib │ │ │ │ │ │ ├── cfish.dib │ │ │ │ │ │ ├── cl10.dib │ │ │ │ │ │ ├── cl2.dib │ │ │ │ │ │ ├── cl3.dib │ │ │ │ │ │ ├── cl4.dib │ │ │ │ │ │ ├── cl5.dib │ │ │ │ │ │ ├── cl6.dib │ │ │ │ │ │ ├── cl7.dib │ │ │ │ │ │ ├── cl8.dib │ │ │ │ │ │ ├── cl9.dib │ │ │ │ │ │ ├── cla.dib │ │ │ │ │ │ ├── clj.dib │ │ │ │ │ │ ├── clk.dib │ │ │ │ │ │ ├── clouds.dib │ │ │ │ │ │ ├── clq.dib │ │ │ │ │ │ ├── crystal.dib │ │ │ │ │ │ ├── dij.dib │ │ │ │ │ │ ├── diq.dib │ │ │ │ │ │ ├── dm10.dib │ │ │ │ │ │ ├── dm2.dib │ │ │ │ │ │ ├── dm3.dib │ │ │ │ │ │ ├── dm4.dib │ │ │ │ │ │ ├── dm5.dib │ │ │ │ │ │ ├── dm6.dib │ │ │ │ │ │ ├── dm7.dib │ │ │ │ │ │ ├── dm8.dib │ │ │ │ │ │ ├── dm9.dib │ │ │ │ │ │ ├── dma.dib │ │ │ │ │ │ ├── dmj.dib │ │ │ │ │ │ ├── dmk.dib │ │ │ │ │ │ ├── dmq.dib │ │ │ │ │ │ ├── fish.dib │ │ │ │ │ │ ├── foo.dib │ │ │ │ │ │ ├── frog.dib │ │ │ │ │ │ ├── ghost.dib │ │ │ │ │ │ ├── ht10.dib │ │ │ │ │ │ ├── ht2.dib │ │ │ │ │ │ ├── ht3.dib │ │ │ │ │ │ ├── ht4.dib │ │ │ │ │ │ ├── ht5.dib │ │ │ │ │ │ ├── ht6.dib │ │ │ │ │ │ ├── ht7.dib │ │ │ │ │ │ ├── ht8.dib │ │ │ │ │ │ ├── ht9.dib │ │ │ │ │ │ ├── hta.dib │ │ │ │ │ │ ├── htj.dib │ │ │ │ │ │ ├── htk.dib │ │ │ │ │ │ ├── htq.dib │ │ │ │ │ │ ├── krazkstl.dib │ │ │ │ │ │ ├── moon.dib │ │ │ │ │ │ ├── o.dib │ │ │ │ │ │ ├── paradise.dib │ │ │ │ │ │ ├── plaid.dib │ │ │ │ │ │ ├── purple.dib │ │ │ │ │ │ ├── rbear.dib │ │ │ │ │ │ ├── rbhatch.dib │ │ │ │ │ │ ├── reddesertmoon.dib │ │ │ │ │ │ ├── rose.dib │ │ │ │ │ │ ├── sanflipe.dib │ │ │ │ │ │ ├── shell.dib │ │ │ │ │ │ ├── slime.dib │ │ │ │ │ │ ├── slimeup.dib │ │ │ │ │ │ ├── sp10.dib │ │ │ │ │ │ ├── sp2.dib │ │ │ │ │ │ ├── sp3.dib │ │ │ │ │ │ ├── sp4.dib │ │ │ │ │ │ ├── sp5.dib │ │ │ │ │ │ ├── sp6.dib │ │ │ │ │ │ ├── sp7.dib │ │ │ │ │ │ ├── sp8.dib │ │ │ │ │ │ ├── sp9.dib │ │ │ │ │ │ ├── spa.dib │ │ │ │ │ │ ├── space.dib │ │ │ │ │ │ ├── spj.dib │ │ │ │ │ │ ├── spk.dib │ │ │ │ │ │ ├── spq.dib │ │ │ │ │ │ ├── stripes.dib │ │ │ │ │ │ ├── wbear.dib │ │ │ │ │ │ ├── wrobot.dib │ │ │ │ │ │ ├── x.dib │ │ │ │ │ │ └── yfish.dib │ │ │ │ │ ├── makefile │ │ │ │ │ ├── res.rc │ │ │ │ │ ├── sources │ │ │ │ │ └── std.h │ │ │ │ ├── cruel │ │ │ │ │ ├── cruel │ │ │ │ │ ├── cruel.c │ │ │ │ │ ├── cruel.dlg │ │ │ │ │ ├── cruel.h │ │ │ │ │ ├── cruel.hlp │ │ │ │ │ ├── cruel.ico │ │ │ │ │ ├── help │ │ │ │ │ │ ├── blkarow.bmp │ │ │ │ │ │ ├── blkdiam.bmp │ │ │ │ │ │ ├── bull.bmp │ │ │ │ │ │ ├── cruel.hpj │ │ │ │ │ │ ├── cruel.rtf │ │ │ │ │ │ └── smbull.bmp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── res.rc │ │ │ │ │ └── sources │ │ │ │ ├── dirs │ │ │ │ ├── freecell │ │ │ │ │ ├── dialog.c │ │ │ │ │ ├── display.c │ │ │ │ │ ├── down.cur │ │ │ │ │ ├── freecell.c │ │ │ │ │ ├── freecell.def │ │ │ │ │ ├── freecell.h │ │ │ │ │ ├── freecell.hlp │ │ │ │ │ ├── freecell.ico │ │ │ │ │ ├── freecell.manifest │ │ │ │ │ ├── freecell.rc │ │ │ │ │ ├── freecons.h │ │ │ │ │ ├── game.c │ │ │ │ │ ├── game2.c │ │ │ │ │ ├── glide.c │ │ │ │ │ ├── king.bmp │ │ │ │ │ ├── kingl.bmp │ │ │ │ │ ├── kings.bmp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── migrationnotice.txt │ │ │ │ │ ├── sources │ │ │ │ │ └── transfer.c │ │ │ │ ├── golf │ │ │ │ │ ├── golf │ │ │ │ │ ├── golf.c │ │ │ │ │ ├── golf.dlg │ │ │ │ │ ├── golf.h │ │ │ │ │ ├── golf.hlp │ │ │ │ │ ├── golf.ico │ │ │ │ │ ├── makefile │ │ │ │ │ ├── res.rc │ │ │ │ │ └── sources │ │ │ │ ├── idlewild │ │ │ │ │ ├── dirs │ │ │ │ │ ├── dropout │ │ │ │ │ │ ├── dropout.c │ │ │ │ │ │ ├── dropout.def │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── nulwep.c │ │ │ │ │ │ └── sources │ │ │ │ │ ├── firework │ │ │ │ │ │ ├── firework.c │ │ │ │ │ │ ├── firework.def │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── nulwep.c │ │ │ │ │ │ └── sources │ │ │ │ │ ├── help │ │ │ │ │ │ ├── blkarow.bmp │ │ │ │ │ │ ├── blkdiam.bmp │ │ │ │ │ │ ├── idlewild.hpj │ │ │ │ │ │ └── idlewild.rtf │ │ │ │ │ ├── idlewild │ │ │ │ │ │ ├── delay.dlg │ │ │ │ │ │ ├── idlewild.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── res.rc │ │ │ │ │ │ ├── sos.ico │ │ │ │ │ │ └── sources │ │ │ │ │ ├── library │ │ │ │ │ │ ├── iwlib.def │ │ │ │ │ │ ├── library.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── rnd.c │ │ │ │ │ │ └── sources │ │ │ │ │ ├── life │ │ │ │ │ │ ├── life.c │ │ │ │ │ │ ├── life.def │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── nulwep.c │ │ │ │ │ │ └── sources │ │ │ │ │ ├── lines │ │ │ │ │ │ ├── lines.c │ │ │ │ │ │ ├── lines.def │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── nulwep.c │ │ │ │ │ │ └── sources │ │ │ │ │ ├── scrapp.h │ │ │ │ │ ├── scrsave.h │ │ │ │ │ ├── shuffle │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── nulwep.c │ │ │ │ │ │ ├── shuffle.c │ │ │ │ │ │ ├── shuffle.def │ │ │ │ │ │ └── sources │ │ │ │ │ ├── stars │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── nulwep.c │ │ │ │ │ │ ├── res.rc │ │ │ │ │ │ ├── sources │ │ │ │ │ │ ├── stars.c │ │ │ │ │ │ └── stars.def │ │ │ │ │ ├── std.h │ │ │ │ │ └── wipe │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── nulwep.c │ │ │ │ │ │ ├── sources │ │ │ │ │ │ ├── wipe.c │ │ │ │ │ │ └── wipe.def │ │ │ │ ├── oldtp │ │ │ │ │ ├── autumn.bmp │ │ │ │ │ ├── autumnbw.bmp │ │ │ │ │ ├── bam1.bmp │ │ │ │ │ ├── bam1bw.bmp │ │ │ │ │ ├── bam2.bmp │ │ │ │ │ ├── bam2bw.bmp │ │ │ │ │ ├── bam3.bmp │ │ │ │ │ ├── bam3bw.bmp │ │ │ │ │ ├── bam4.bmp │ │ │ │ │ ├── bam4bw.bmp │ │ │ │ │ ├── bam5.bmp │ │ │ │ │ ├── bam5bw.bmp │ │ │ │ │ ├── bam6.bmp │ │ │ │ │ ├── bam6bw.bmp │ │ │ │ │ ├── bam7.bmp │ │ │ │ │ ├── bam7bw.bmp │ │ │ │ │ ├── bam8.bmp │ │ │ │ │ ├── bam8bw.bmp │ │ │ │ │ ├── bam9.bmp │ │ │ │ │ ├── bam9bw.bmp │ │ │ │ │ ├── bamboo.bmp │ │ │ │ │ ├── bamboobw.bmp │ │ │ │ │ ├── blibbet.bmp │ │ │ │ │ ├── blibbetb.bmp │ │ │ │ │ ├── build.log │ │ │ │ │ ├── build.wrn │ │ │ │ │ ├── chung.bmp │ │ │ │ │ ├── chungbw.bmp │ │ │ │ │ ├── crak1.bmp │ │ │ │ │ ├── crak1bw.bmp │ │ │ │ │ ├── crak2.bmp │ │ │ │ │ ├── crak2bw.bmp │ │ │ │ │ ├── crak3.bmp │ │ │ │ │ ├── crak3bw.bmp │ │ │ │ │ ├── crak4.bmp │ │ │ │ │ ├── crak4bw.bmp │ │ │ │ │ ├── crak5.bmp │ │ │ │ │ ├── crak5bw.bmp │ │ │ │ │ ├── crak6.bmp │ │ │ │ │ ├── crak6bw.bmp │ │ │ │ │ ├── crak7.bmp │ │ │ │ │ ├── crak7bw.bmp │ │ │ │ │ ├── crak8.bmp │ │ │ │ │ ├── crak8bw.bmp │ │ │ │ │ ├── crak9.bmp │ │ │ │ │ ├── crak9bw.bmp │ │ │ │ │ ├── dot1.bmp │ │ │ │ │ ├── dot1bw.bmp │ │ │ │ │ ├── dot2.bmp │ │ │ │ │ ├── dot2bw.bmp │ │ │ │ │ ├── dot3.bmp │ │ │ │ │ ├── dot3bw.bmp │ │ │ │ │ ├── dot4.bmp │ │ │ │ │ ├── dot4bw.bmp │ │ │ │ │ ├── dot5.bmp │ │ │ │ │ ├── dot5bw.bmp │ │ │ │ │ ├── dot6.bmp │ │ │ │ │ ├── dot6bw.bmp │ │ │ │ │ ├── dot7.bmp │ │ │ │ │ ├── dot7bw.bmp │ │ │ │ │ ├── dot8.bmp │ │ │ │ │ ├── dot8bw.bmp │ │ │ │ │ ├── dot9.bmp │ │ │ │ │ ├── dot9bw.bmp │ │ │ │ │ ├── east.bmp │ │ │ │ │ ├── fat.bmp │ │ │ │ │ ├── fatbw.bmp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── mum.bmp │ │ │ │ │ ├── mumbw.bmp │ │ │ │ │ ├── north.bmp │ │ │ │ │ ├── orchid.bmp │ │ │ │ │ ├── orchidbw.bmp │ │ │ │ │ ├── plum.bmp │ │ │ │ │ ├── plumbw.bmp │ │ │ │ │ ├── res.rc │ │ │ │ │ ├── sources │ │ │ │ │ ├── south.bmp │ │ │ │ │ ├── spring.bmp │ │ │ │ │ ├── springbw.bmp │ │ │ │ │ ├── summer.bmp │ │ │ │ │ ├── summerbw.bmp │ │ │ │ │ ├── taipei.c │ │ │ │ │ ├── tp.bmp │ │ │ │ │ ├── tp.h │ │ │ │ │ ├── tp.ico │ │ │ │ │ ├── tp.txt │ │ │ │ │ ├── west.bmp │ │ │ │ │ ├── white.bmp │ │ │ │ │ ├── winter.bmp │ │ │ │ │ └── winterbw.bmp │ │ │ │ ├── pegged │ │ │ │ │ ├── help │ │ │ │ │ │ ├── blkarow.bmp │ │ │ │ │ │ ├── blkdiam.bmp │ │ │ │ │ │ ├── bull.bmp │ │ │ │ │ │ ├── hole.bmp │ │ │ │ │ │ ├── peg.bmp │ │ │ │ │ │ ├── pegged.hpj │ │ │ │ │ │ ├── pegged.rtf │ │ │ │ │ │ ├── pinwheel.bmp │ │ │ │ │ │ ├── square.bmp │ │ │ │ │ │ └── wall.bmp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pegged │ │ │ │ │ ├── pegged.c │ │ │ │ │ ├── pegged.h │ │ │ │ │ ├── pegged.hlp │ │ │ │ │ ├── pegged.ico │ │ │ │ │ ├── res.rc │ │ │ │ │ └── sources │ │ │ │ ├── snake │ │ │ │ │ ├── blk.c │ │ │ │ │ ├── blk.h │ │ │ │ │ ├── bmp │ │ │ │ │ │ ├── apple.bmp │ │ │ │ │ │ ├── applebw.bmp │ │ │ │ │ │ ├── ball.bmp │ │ │ │ │ │ ├── ballbw.bmp │ │ │ │ │ │ ├── blks.bmp │ │ │ │ │ │ ├── blksbw.bmp │ │ │ │ │ │ ├── levels.bmp │ │ │ │ │ │ ├── num.bmp │ │ │ │ │ │ ├── snake.bmp │ │ │ │ │ │ ├── snake.ico │ │ │ │ │ │ ├── snakebw.bmp │ │ │ │ │ │ ├── wall.bmp │ │ │ │ │ │ └── wallbw.bmp │ │ │ │ │ ├── context.h │ │ │ │ │ ├── grafix.c │ │ │ │ │ ├── grafix.h │ │ │ │ │ ├── level.dlg │ │ │ │ │ ├── makefile │ │ │ │ │ ├── menu.inc │ │ │ │ │ ├── pref.c │ │ │ │ │ ├── pref.h │ │ │ │ │ ├── res.h │ │ │ │ │ ├── res.rc │ │ │ │ │ ├── rtns.c │ │ │ │ │ ├── rtns.h │ │ │ │ │ ├── snake │ │ │ │ │ ├── snake.c │ │ │ │ │ ├── snake.def │ │ │ │ │ ├── snake.h │ │ │ │ │ ├── snake.hpj │ │ │ │ │ ├── sound.c │ │ │ │ │ ├── sound.h │ │ │ │ │ ├── sources │ │ │ │ │ ├── strings.inc │ │ │ │ │ ├── util.c │ │ │ │ │ └── util.h │ │ │ │ ├── taipei │ │ │ │ │ └── makefile │ │ │ │ ├── tetris │ │ │ │ │ └── makefile │ │ │ │ ├── tictac │ │ │ │ │ ├── bmp │ │ │ │ │ │ ├── balls.bmp │ │ │ │ │ │ ├── ballsbw.bmp │ │ │ │ │ │ ├── dunce.ico │ │ │ │ │ │ ├── genius.ico │ │ │ │ │ │ ├── tic2.ico │ │ │ │ │ │ ├── tic3.ico │ │ │ │ │ │ └── tic4.ico │ │ │ │ │ ├── context.h │ │ │ │ │ ├── grafix.c │ │ │ │ │ ├── grafix.h │ │ │ │ │ ├── help │ │ │ │ │ │ ├── blkarow.bmp │ │ │ │ │ │ ├── blkdiam.bmp │ │ │ │ │ │ ├── bull.bmp │ │ │ │ │ │ ├── tic.hpj │ │ │ │ │ │ └── tic.rtf │ │ │ │ │ ├── main.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── menu.inc │ │ │ │ │ ├── pref.c │ │ │ │ │ ├── pref.dlg │ │ │ │ │ ├── pref.h │ │ │ │ │ ├── res.h │ │ │ │ │ ├── res.rc │ │ │ │ │ ├── rtns.c │ │ │ │ │ ├── rtns.h │ │ │ │ │ ├── sound.c │ │ │ │ │ ├── sound.h │ │ │ │ │ ├── sources │ │ │ │ │ ├── strings.inc │ │ │ │ │ ├── tbls.inc │ │ │ │ │ ├── tic.hpj │ │ │ │ │ ├── tictac.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── util.h │ │ │ │ └── winmine │ │ │ │ │ ├── bmp │ │ │ │ │ ├── blocks.bmp │ │ │ │ │ ├── blocksbw.bmp │ │ │ │ │ ├── button.bmp │ │ │ │ │ ├── buttonbw.bmp │ │ │ │ │ ├── explode.wav │ │ │ │ │ ├── led.bmp │ │ │ │ │ ├── ledbw.bmp │ │ │ │ │ ├── tick.wav │ │ │ │ │ ├── win.wav │ │ │ │ │ └── winmine.ico │ │ │ │ │ ├── context.h │ │ │ │ │ ├── grafix.c │ │ │ │ │ ├── grafix.h │ │ │ │ │ ├── help │ │ │ │ │ ├── aftbs.bmp │ │ │ │ │ ├── aftbsm.bmp │ │ │ │ │ ├── befbs.bmp │ │ │ │ │ ├── befbsm.bmp │ │ │ │ │ ├── blank.bmp │ │ │ │ │ ├── blkarow.bmp │ │ │ │ │ ├── blkdiam.bmp │ │ │ │ │ ├── bull.bmp │ │ │ │ │ ├── covered.bmp │ │ │ │ │ ├── knowmine.bmp │ │ │ │ │ ├── marked.bmp │ │ │ │ │ ├── mine.bmp │ │ │ │ │ ├── num.bmp │ │ │ │ │ ├── number.bmp │ │ │ │ │ ├── smbull.bmp │ │ │ │ │ ├── winmine.hlp │ │ │ │ │ ├── winmine.hpj │ │ │ │ │ └── winmine.rtf │ │ │ │ │ ├── main.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.dos │ │ │ │ │ ├── menu.inc │ │ │ │ │ ├── migrationnotice.txt │ │ │ │ │ ├── mine.def │ │ │ │ │ ├── pref.c │ │ │ │ │ ├── pref.dlg │ │ │ │ │ ├── pref.h │ │ │ │ │ ├── res.h │ │ │ │ │ ├── res.rc │ │ │ │ │ ├── rtns.c │ │ │ │ │ ├── rtns.h │ │ │ │ │ ├── sound.c │ │ │ │ │ ├── sound.h │ │ │ │ │ ├── sources │ │ │ │ │ ├── strings.inc │ │ │ │ │ ├── util.c │ │ │ │ │ ├── util.h │ │ │ │ │ ├── winmine.c │ │ │ │ │ ├── winmine.hpj │ │ │ │ │ └── winmine.manifest │ │ │ ├── games │ │ │ │ ├── reversi │ │ │ │ │ ├── aplwiif1.eml │ │ │ │ │ ├── documentation of problems in stress.eml │ │ │ │ │ ├── makefile │ │ │ │ │ ├── res.rc │ │ │ │ │ ├── rev.c │ │ │ │ │ ├── reversi │ │ │ │ │ ├── reversi.c │ │ │ │ │ ├── reversi.def │ │ │ │ │ ├── reversi.dlg │ │ │ │ │ ├── reversi.h │ │ │ │ │ ├── reversi.ico │ │ │ │ │ └── sources │ │ │ │ └── sol │ │ │ │ │ ├── assert.dlg │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── back.c │ │ │ │ │ ├── back.h │ │ │ │ │ ├── bmp │ │ │ │ │ ├── 286386a.dib │ │ │ │ │ ├── 286386b.dib │ │ │ │ │ ├── 44.eml │ │ │ │ │ ├── abrobot1.dib │ │ │ │ │ ├── abrobot2.dib │ │ │ │ │ ├── aflipe1.dib │ │ │ │ │ ├── aflipe2.dib │ │ │ │ │ ├── akstl1.dib │ │ │ │ │ ├── aslime1.dib │ │ │ │ │ ├── aslime2.dib │ │ │ │ │ ├── back.dib │ │ │ │ │ ├── bbear.dib │ │ │ │ │ ├── bcard.dib │ │ │ │ │ ├── bfish.dib │ │ │ │ │ ├── bghatch.dib │ │ │ │ │ ├── bkvine.dib │ │ │ │ │ ├── blvine.dib │ │ │ │ │ ├── brobot.dib │ │ │ │ │ ├── cfish.dib │ │ │ │ │ ├── cl10.dib │ │ │ │ │ ├── cl2.dib │ │ │ │ │ ├── cl3.dib │ │ │ │ │ ├── cl4.dib │ │ │ │ │ ├── cl5.dib │ │ │ │ │ ├── cl6.dib │ │ │ │ │ ├── cl7.dib │ │ │ │ │ ├── cl8.dib │ │ │ │ │ ├── cl9.dib │ │ │ │ │ ├── cla.dib │ │ │ │ │ ├── clj.dib │ │ │ │ │ ├── clk.dib │ │ │ │ │ ├── clq.dib │ │ │ │ │ ├── dij.dib │ │ │ │ │ ├── diq.dib │ │ │ │ │ ├── dm10.dib │ │ │ │ │ ├── dm2.dib │ │ │ │ │ ├── dm3.dib │ │ │ │ │ ├── dm4.dib │ │ │ │ │ ├── dm5.dib │ │ │ │ │ ├── dm6.dib │ │ │ │ │ ├── dm7.dib │ │ │ │ │ ├── dm8.dib │ │ │ │ │ ├── dm9.dib │ │ │ │ │ ├── dma.dib │ │ │ │ │ ├── dmj.dib │ │ │ │ │ ├── dmk.dib │ │ │ │ │ ├── dmq.dib │ │ │ │ │ ├── foo.dib │ │ │ │ │ ├── ghost.dib │ │ │ │ │ ├── ht10.dib │ │ │ │ │ ├── ht2.dib │ │ │ │ │ ├── ht3.dib │ │ │ │ │ ├── ht4.dib │ │ │ │ │ ├── ht5.dib │ │ │ │ │ ├── ht6.dib │ │ │ │ │ ├── ht7.dib │ │ │ │ │ ├── ht8.dib │ │ │ │ │ ├── ht9.dib │ │ │ │ │ ├── hta.dib │ │ │ │ │ ├── htj.dib │ │ │ │ │ ├── htk.dib │ │ │ │ │ ├── htq.dib │ │ │ │ │ ├── krazkstl.dib │ │ │ │ │ ├── o.dib │ │ │ │ │ ├── rbear.dib │ │ │ │ │ ├── rbhatch.dib │ │ │ │ │ ├── rose.dib │ │ │ │ │ ├── sanflipe.dib │ │ │ │ │ ├── shell.dib │ │ │ │ │ ├── slime.dib │ │ │ │ │ ├── slimeup.dib │ │ │ │ │ ├── sp10.dib │ │ │ │ │ ├── sp2.dib │ │ │ │ │ ├── sp3.dib │ │ │ │ │ ├── sp4.dib │ │ │ │ │ ├── sp5.dib │ │ │ │ │ ├── sp6.dib │ │ │ │ │ ├── sp7.dib │ │ │ │ │ ├── sp8.dib │ │ │ │ │ ├── sp9.dib │ │ │ │ │ ├── spa.dib │ │ │ │ │ ├── spj.dib │ │ │ │ │ ├── spk.dib │ │ │ │ │ ├── spq.dib │ │ │ │ │ ├── tywych05.eml │ │ │ │ │ ├── wbear.dib │ │ │ │ │ ├── wrobot.dib │ │ │ │ │ ├── x.dib │ │ │ │ │ └── yfish.dib │ │ │ │ │ ├── cards.c │ │ │ │ │ ├── cards.rc │ │ │ │ │ ├── cards.rch │ │ │ │ │ ├── cdt.h │ │ │ │ │ ├── col.c │ │ │ │ │ ├── col.h │ │ │ │ │ ├── crd.h │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── game.c │ │ │ │ │ ├── game.h │ │ │ │ │ ├── gameno.dlg │ │ │ │ │ ├── klond.c │ │ │ │ │ ├── klond.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.dos │ │ │ │ │ ├── marq.c │ │ │ │ │ ├── sol.c │ │ │ │ │ ├── sol.def │ │ │ │ │ ├── sol.dlg │ │ │ │ │ ├── sol.h │ │ │ │ │ ├── sol.hlp │ │ │ │ │ ├── sol.ic3 │ │ │ │ │ ├── sol.manifest │ │ │ │ │ ├── sol_new.rc │ │ │ │ │ ├── soldbg.def │ │ │ │ │ ├── soldraw.h │ │ │ │ │ ├── solid.h │ │ │ │ │ ├── sources │ │ │ │ │ ├── stat.c │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── std.h │ │ │ │ │ ├── undo.c │ │ │ │ │ ├── undo.h │ │ │ │ │ ├── util.c │ │ │ │ │ ├── winapp.txt │ │ │ │ │ ├── xl5.ico │ │ │ │ │ └── ygy.eml │ │ │ ├── pifmgr │ │ │ │ ├── dos01.ico │ │ │ │ ├── dos02.ico │ │ │ │ ├── dos03.ico │ │ │ │ ├── dos04.ico │ │ │ │ ├── dos05.ico │ │ │ │ ├── dos06.ico │ │ │ │ ├── dos07.ico │ │ │ │ ├── dos08.ico │ │ │ │ ├── dos09.ico │ │ │ │ ├── dos10.ico │ │ │ │ ├── dos11.ico │ │ │ │ ├── dos12.ico │ │ │ │ ├── dos13.ico │ │ │ │ ├── dos14.ico │ │ │ │ ├── dos15.ico │ │ │ │ ├── dos16.ico │ │ │ │ ├── dos17.ico │ │ │ │ ├── dos18.ico │ │ │ │ ├── dos19.ico │ │ │ │ ├── dos20.ico │ │ │ │ ├── dos21.ico │ │ │ │ ├── dos22.ico │ │ │ │ ├── dos23.ico │ │ │ │ ├── dos24.ico │ │ │ │ ├── dos25.ico │ │ │ │ ├── dos26.ico │ │ │ │ ├── dos27.ico │ │ │ │ ├── dos28.ico │ │ │ │ ├── dos29.ico │ │ │ │ ├── dos30.ico │ │ │ │ ├── dos31.ico │ │ │ │ ├── dos32.ico │ │ │ │ ├── dos33.ico │ │ │ │ ├── dos34.ico │ │ │ │ ├── dos35.ico │ │ │ │ ├── dos36.ico │ │ │ │ ├── dos37.ico │ │ │ │ ├── makefile │ │ │ │ ├── msdos.ico │ │ │ │ ├── pifmgr.def │ │ │ │ ├── pifmgr.rc │ │ │ │ └── sources │ │ │ └── winver │ │ │ │ ├── makefile │ │ │ │ ├── res.rc │ │ │ │ ├── sources │ │ │ │ ├── tywych07.eml │ │ │ │ ├── windows.ico │ │ │ │ ├── windowsshell.manifest │ │ │ │ ├── winlogo2.bmp │ │ │ │ ├── winver │ │ │ │ ├── winver.c │ │ │ │ ├── winver.ico │ │ │ │ ├── winver31.exe │ │ │ │ └── winverp.h │ │ ├── published │ │ │ └── inc │ │ │ │ ├── botinfs.eml │ │ │ │ ├── cmnquery.w │ │ │ │ ├── color.dlg │ │ │ │ ├── commctrl.w │ │ │ │ ├── commdlg.w │ │ │ │ ├── commoncontrols.idl │ │ │ │ ├── cpl.w │ │ │ │ ├── cplext.h │ │ │ │ ├── dlgs.h │ │ │ │ ├── fileopen.dlg │ │ │ │ ├── findtext.dlg │ │ │ │ ├── font.dlg │ │ │ │ ├── prnsetup.dlg │ │ │ │ ├── schemadef.h │ │ │ │ ├── shappmgr.idl │ │ │ │ ├── shdispid.h │ │ │ │ ├── shellapi.w │ │ │ │ └── winver.w │ │ └── verclsid │ │ │ ├── makefile │ │ │ ├── sources │ │ │ ├── verclsid.cpp │ │ │ ├── verclsid.manifest │ │ │ └── verclsid.rc │ ├── termsrv │ │ └── setup │ │ │ └── compliance │ │ │ ├── makefile │ │ │ ├── rdsupgcheck.cpp │ │ │ ├── rdsupgcheck.def │ │ │ ├── sources │ │ │ └── ver.rc │ ├── vm │ │ ├── dv │ │ │ └── vmbus │ │ │ │ └── winsock │ │ │ │ └── dll │ │ │ │ ├── child │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── dirs │ │ │ │ ├── wshhyperv.c │ │ │ │ ├── wshhyperv.def │ │ │ │ └── wshhyperv.rc │ │ └── setup │ │ │ ├── compliancecheck │ │ │ ├── dirs │ │ │ └── other │ │ │ │ ├── hypervcomplcheck.cpp │ │ │ │ ├── hypervcomplcheck.def │ │ │ │ ├── makefile │ │ │ │ ├── sources │ │ │ │ └── ver.rc │ │ │ └── dirs │ └── windows │ │ ├── core │ │ ├── console │ │ │ ├── ConsolePerf.regions.xml │ │ │ ├── ConsolePerf.wprp │ │ │ ├── StaticAnalysis.ruleset │ │ │ ├── Terminal.wprp │ │ │ ├── common.build.post.props │ │ │ ├── common.build.pre.props │ │ │ ├── common.build.tests.props │ │ │ ├── common.nugetversions.props │ │ │ ├── common.nugetversions.targets │ │ │ ├── cppwinrt.build.post.props │ │ │ ├── cppwinrt.build.pre.props │ │ │ ├── dirs │ │ │ ├── features.xml │ │ │ ├── project.inc │ │ │ ├── project.unittest.inc │ │ │ ├── unit.tests.x64.runsettings │ │ │ ├── unit.tests.x86.runsettings │ │ │ ├── wap-common.build.post.props │ │ │ └── wap-common.build.pre.props │ │ ├── fonts │ │ │ └── fontgroups │ │ │ │ └── overrides │ │ │ │ ├── fontgroupsoverride.def │ │ │ │ ├── fontgroupsoverride.rc │ │ │ │ ├── makefile │ │ │ │ ├── override.cpp │ │ │ │ └── sources │ │ └── ntgdi │ │ │ └── dciman │ │ │ ├── dciman.c │ │ │ ├── dciman.rc │ │ │ ├── dciman32.def │ │ │ ├── dllinit.c │ │ │ ├── makefile │ │ │ └── sources │ │ └── feime │ │ └── tabletextservice │ │ └── migration │ │ ├── cregkey.h │ │ ├── enumreg.h │ │ ├── locales.cpp │ │ ├── makefile │ │ ├── sources │ │ ├── strary.cpp │ │ ├── strary.h │ │ ├── tabletextservicemig.cpp │ │ ├── tabletextservicemig.def │ │ └── tabletextservicemig.rc ├── public │ ├── internal │ │ ├── base │ │ │ └── inc │ │ │ │ └── wdslog.h │ │ ├── minwin │ │ │ └── priv_sdk │ │ │ │ └── inc │ │ │ │ ├── TraceLoggingActivity.h │ │ │ │ ├── TraceLoggingProvider.h │ │ │ │ ├── basetsd.h │ │ │ │ ├── cfg.h │ │ │ │ ├── devpropdef.h │ │ │ │ ├── evntprov.h │ │ │ │ ├── guiddef.h │ │ │ │ ├── lci.h │ │ │ │ ├── midles.h │ │ │ │ ├── ntstrsafe.h │ │ │ │ ├── rpcdce.h │ │ │ │ ├── rpcdcep.h │ │ │ │ ├── rpcndr.h │ │ │ │ ├── winnls.h │ │ │ │ └── wmistr.h │ │ └── printscan │ │ │ └── inc │ │ │ └── printsqm.h │ └── sdk │ │ ├── inc │ │ ├── cderr.h │ │ ├── commctrl.h │ │ ├── commdlg.h │ │ ├── common.ver │ │ ├── crt │ │ │ ├── _70_exception │ │ │ ├── _70_new │ │ │ ├── _70_xstddef │ │ │ ├── _70_yvals.h │ │ │ ├── ammintrin.h │ │ │ ├── arm64_neon.h │ │ │ ├── arm64intr.h │ │ │ ├── assert.h │ │ │ ├── conio.h │ │ │ ├── crtdbg.h │ │ │ ├── crtdefs.h │ │ │ ├── crtwrn.h │ │ │ ├── cstddef │ │ │ ├── ctype.h │ │ │ ├── direct.h │ │ │ ├── dos.h │ │ │ ├── dvec.h │ │ │ ├── eh.h │ │ │ ├── emmintrin.h │ │ │ ├── errno.h │ │ │ ├── exception │ │ │ ├── excpt.h │ │ │ ├── fcntl.h │ │ │ ├── float.h │ │ │ ├── fpieee.h │ │ │ ├── fstream.h │ │ │ ├── fvec.h │ │ │ ├── immintrin.h │ │ │ ├── intrin.h │ │ │ ├── io.h │ │ │ ├── io.inl │ │ │ ├── iomanip.h │ │ │ ├── ios.h │ │ │ ├── iostream.h │ │ │ ├── istream.h │ │ │ ├── ivec.h │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── malloc.h │ │ │ ├── math.h │ │ │ ├── mbctype.h │ │ │ ├── mbstring.h │ │ │ ├── memory.h │ │ │ ├── minmax.h │ │ │ ├── mm3dnow.h │ │ │ ├── mmintrin.h │ │ │ ├── new │ │ │ ├── new.h │ │ │ ├── nmmintrin.h │ │ │ ├── ostream.h │ │ │ ├── pmmintrin.h │ │ │ ├── process.h │ │ │ ├── rtcapi.h │ │ │ ├── search.h │ │ │ ├── setjmp.h │ │ │ ├── setjmpex.h │ │ │ ├── share.h │ │ │ ├── signal.h │ │ │ ├── smmintrin.h │ │ │ ├── stdarg.h │ │ │ ├── stddef.h │ │ │ ├── stdexcpt.h │ │ │ ├── stdio.h │ │ │ ├── stdiostr.h │ │ │ ├── stdlib.h │ │ │ ├── stl60 │ │ │ │ ├── algorithm │ │ │ │ ├── bitset │ │ │ │ ├── cassert │ │ │ │ ├── cctype │ │ │ │ ├── cerrno │ │ │ │ ├── cfloat │ │ │ │ ├── ciso646 │ │ │ │ ├── climits │ │ │ │ ├── clocale │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ ├── csetjmp │ │ │ │ ├── csignal │ │ │ │ ├── cstdarg │ │ │ │ ├── cstdint │ │ │ │ ├── cstdio │ │ │ │ ├── cstdlib │ │ │ │ ├── cstring │ │ │ │ ├── ctime │ │ │ │ ├── cwchar │ │ │ │ ├── cwctype │ │ │ │ ├── deque │ │ │ │ ├── fstream │ │ │ │ ├── functional │ │ │ │ ├── iomanip │ │ │ │ ├── ios │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── iso646.h │ │ │ │ ├── istream │ │ │ │ ├── iterator │ │ │ │ ├── limits │ │ │ │ ├── list │ │ │ │ ├── locale │ │ │ │ ├── map │ │ │ │ ├── memory │ │ │ │ ├── numeric │ │ │ │ ├── ostream │ │ │ │ ├── queue │ │ │ │ ├── set │ │ │ │ ├── sstream │ │ │ │ ├── stack │ │ │ │ ├── stdexcept │ │ │ │ ├── stl.h │ │ │ │ ├── streambuf │ │ │ │ ├── string │ │ │ │ ├── strstream │ │ │ │ ├── typeinfo │ │ │ │ ├── utility │ │ │ │ ├── valarray │ │ │ │ ├── vector │ │ │ │ ├── wctype.h │ │ │ │ ├── xcomplex │ │ │ │ ├── xiosbase │ │ │ │ ├── xlocale │ │ │ │ ├── xlocinfo │ │ │ │ ├── xlocinfo.h │ │ │ │ ├── xlocmon │ │ │ │ ├── xlocnum │ │ │ │ ├── xloctime │ │ │ │ ├── xmath.h │ │ │ │ ├── xmemory │ │ │ │ ├── xstring │ │ │ │ ├── xtree │ │ │ │ ├── xutility │ │ │ │ └── ymath.h │ │ │ ├── stl70 │ │ │ │ ├── algorithm │ │ │ │ ├── bitset │ │ │ │ ├── cassert │ │ │ │ ├── cctype │ │ │ │ ├── cerrno │ │ │ │ ├── cfloat │ │ │ │ ├── ciso646 │ │ │ │ ├── climits │ │ │ │ ├── clocale │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ ├── csetjmp │ │ │ │ ├── csignal │ │ │ │ ├── cstdarg │ │ │ │ ├── cstdint │ │ │ │ ├── cstdio │ │ │ │ ├── cstdlib │ │ │ │ ├── cstring │ │ │ │ ├── ctime │ │ │ │ ├── cwchar │ │ │ │ ├── cwctype │ │ │ │ ├── deque │ │ │ │ ├── fstream │ │ │ │ ├── functional │ │ │ │ ├── hash_map │ │ │ │ ├── hash_set │ │ │ │ ├── iomanip │ │ │ │ ├── ios │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── iso646.h │ │ │ │ ├── istream │ │ │ │ ├── iterator │ │ │ │ ├── limits │ │ │ │ ├── list │ │ │ │ ├── locale │ │ │ │ ├── map │ │ │ │ ├── memory │ │ │ │ ├── numeric │ │ │ │ ├── ostream │ │ │ │ ├── queue │ │ │ │ ├── set │ │ │ │ ├── sstream │ │ │ │ ├── stack │ │ │ │ ├── stdexcept │ │ │ │ ├── stl.h │ │ │ │ ├── streambuf │ │ │ │ ├── string │ │ │ │ ├── strstream │ │ │ │ ├── typeinfo │ │ │ │ ├── utility │ │ │ │ ├── valarray │ │ │ │ ├── vector │ │ │ │ ├── wctype.h │ │ │ │ ├── xcomplex │ │ │ │ ├── xdebug │ │ │ │ ├── xhash │ │ │ │ ├── xiosbase │ │ │ │ ├── xlocale │ │ │ │ ├── xlocinfo │ │ │ │ ├── xlocinfo.h │ │ │ │ ├── xlocmes │ │ │ │ ├── xlocmon │ │ │ │ ├── xlocnum │ │ │ │ ├── xloctime │ │ │ │ ├── xmemory │ │ │ │ ├── xstring │ │ │ │ ├── xtree │ │ │ │ ├── xutility │ │ │ │ └── ymath.h │ │ │ ├── stlshared.h │ │ │ ├── streamb.h │ │ │ ├── string.h │ │ │ ├── strstrea.h │ │ │ ├── swprintf.inl │ │ │ ├── tchar.h │ │ │ ├── time.h │ │ │ ├── time.inl │ │ │ ├── tmmintrin.h │ │ │ ├── typeinfo.h │ │ │ ├── use_ansi.h │ │ │ ├── useoldio.h │ │ │ ├── vadefs.h │ │ │ ├── varargs.h │ │ │ ├── wchar.h │ │ │ ├── wcstr.h │ │ │ ├── wio.inl │ │ │ ├── wmmintrin.h │ │ │ ├── wtime.inl │ │ │ ├── xmmintrin.h │ │ │ ├── xstddef │ │ │ └── zmmintrin.h │ │ ├── dde.h │ │ ├── ddeml.h │ │ ├── dlgs.h │ │ ├── gdiplus │ │ │ ├── gdiplus.h │ │ │ ├── gdiplusbase.h │ │ │ ├── gdiplusbitmap.h │ │ │ ├── gdiplusbrush.h │ │ │ ├── gdipluscachedbitmap.h │ │ │ ├── gdipluscolor.h │ │ │ ├── gdipluscolormatrix.h │ │ │ ├── gdipluseffects.h │ │ │ ├── gdiplusenums.h │ │ │ ├── gdiplusflat.h │ │ │ ├── gdiplusfont.h │ │ │ ├── gdiplusfontcollection.h │ │ │ ├── gdiplusfontfamily.h │ │ │ ├── gdiplusgpstubs.h │ │ │ ├── gdiplusgraphics.h │ │ │ ├── gdiplusheaders.h │ │ │ ├── gdiplusimageattributes.h │ │ │ ├── gdiplusimagecodec.h │ │ │ ├── gdiplusimaging.h │ │ │ ├── gdiplusinit.h │ │ │ ├── gdipluslinecaps.h │ │ │ ├── gdiplusmatrix.h │ │ │ ├── gdiplusmem.h │ │ │ ├── gdiplusmetafile.h │ │ │ ├── gdiplusmetaheader.h │ │ │ ├── gdipluspath.h │ │ │ ├── gdipluspen.h │ │ │ ├── gdipluspixelformats.h │ │ │ ├── gdiplusregion.h │ │ │ ├── gdiplusstringformat.h │ │ │ ├── gdiplustypes.h │ │ │ └── readme.txt │ │ ├── imm.h │ │ ├── lzexpand.h │ │ ├── mcx.h │ │ ├── mmsystem.h │ │ ├── nb30.h │ │ ├── ntstrsafe.h │ │ ├── ntverp.h │ │ ├── ntverp.ver │ │ ├── ole.h │ │ ├── ole2.h │ │ ├── rpc.h │ │ ├── sdkddkver.h │ │ ├── shellapi.h │ │ ├── specstrings.h │ │ ├── specstrings_strict.h │ │ ├── specstrings_undef.h │ │ ├── stralign.h │ │ ├── strsafe.h │ │ ├── winapifamily.h │ │ ├── winbase.h │ │ ├── wincon.h │ │ ├── wincrypt.h │ │ ├── windef.h │ │ ├── windows.h │ │ ├── winefs.h │ │ ├── wingdi.h │ │ ├── winnetwk.h │ │ ├── winnls.h │ │ ├── winnls32.h │ │ ├── winnt.h │ │ ├── winpackagefamily.h │ │ ├── winperf.h │ │ ├── winreg.h │ │ ├── winscard.h │ │ ├── winsock.h │ │ ├── winspool.h │ │ ├── winsvc.h │ │ ├── winuser.h │ │ └── winver.h │ │ └── lib │ │ ├── i386 │ │ ├── OemLicense.lib │ │ ├── ktmw32.lib │ │ ├── msvcrt.lib │ │ ├── ntdsa.lib │ │ ├── ntdsapi.lib │ │ ├── ntdsatq.lib │ │ ├── ntdsetup.lib │ │ ├── ntfrsapi.lib │ │ ├── ntlanman.lib │ │ ├── ntmarta.lib │ │ ├── ntvdm.lib │ │ ├── objsel.lib │ │ ├── odbc32.lib │ │ ├── odbcbcp.lib │ │ ├── odbccp32.lib │ │ ├── ole32.lib │ │ ├── oleacc.lib │ │ ├── oleaut32.lib │ │ ├── olecli32.lib │ │ ├── oledb.lib │ │ ├── oledlg.lib │ │ ├── olepro32.lib │ │ ├── olesvr32.lib │ │ ├── opengl32.lib │ │ ├── rasapi32.lib │ │ ├── rpcrt4.lib │ │ ├── setupapi.lib │ │ ├── shdocvw.lib │ │ ├── shell32.lib │ │ ├── shlwapi.lib │ │ ├── urlmon.lib │ │ ├── user32.lib │ │ ├── userenv.lib │ │ ├── uuid.lib │ │ ├── uxtheme.lib │ │ ├── vccomsup.lib │ │ └── version.lib │ │ └── stub512.com ├── readme.txt ├── ronen-cv.eml ├── tools │ ├── WiCompon.vbs │ ├── access.pm │ ├── alias.nt │ ├── alias.sdx │ ├── amd64 │ │ ├── BetestSample.xml │ │ ├── BinaryExclusionlist.xml │ │ ├── IFiltTst.Ini │ │ ├── ISVTier5AppSignSDK.cc │ │ ├── ISVTier5AppSignSDK.xml │ │ ├── ISVTier5AppSigningPrivKey.dat │ │ ├── ISVTier5AppSigningPubKey.dat │ │ ├── Microsoft.Kits.Logger.dll │ │ ├── Microsoft.PackageEditor.Lib.dll │ │ ├── Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest │ │ ├── Microsoft.Windows.Build.Appx.AppxSip.dll.manifest │ │ ├── Microsoft.Windows.Build.Appx.OpcServices.dll.manifest │ │ ├── Microsoft.Windows.Build.Signing.mssign32.dll.manifest │ │ ├── Microsoft.Windows.Build.Signing.wintrust.dll.manifest │ │ ├── ProvisioningTestHelper.psd1 │ │ ├── SirepClient.assembly.manifest │ │ ├── SirepInterop.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── VswriterSample.xml │ │ ├── WiCompon.vbs │ │ ├── WinAppDeployCommon.dll │ │ ├── accevent.exe │ │ ├── addsect.exe │ │ ├── adpcmencode3.exe │ │ ├── aitstatic.exe │ │ ├── alias.exe │ │ ├── api-ms-win-core-file-l1-2-0.dll │ │ ├── api-ms-win-core-localization-l1-2-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-1.dll │ │ ├── api-ms-win-core-synch-l1-2-0.dll │ │ ├── api-ms-win-core-sysinfo-l1-2-0.dll │ │ ├── api-ms-win-core-timezone-l1-1-0.dll │ │ ├── api-ms-win-crt-locale-l1-1-0.dll │ │ ├── api-ms-win-crt-private-l1-1-0.dll │ │ ├── api-ms-win-crt-runtime-l1-1-0.dll │ │ ├── api-ms-win-crt-string-l1-1-0.dll │ │ ├── api-ms-win-crt-time-l1-1-0.dll │ │ ├── apivalidator.exe │ │ ├── appendtool.exe │ │ ├── appxpackaging.dll │ │ ├── appxsip.dll │ │ ├── atlprov.dll │ │ ├── autologon.exe │ │ ├── betest.exe │ │ ├── betest.xml │ │ ├── bin2c.exe │ │ ├── bmf2mof.exe │ │ ├── buildschema.xml │ │ ├── cabcheck.exe │ │ ├── calchash.exe │ │ ├── cat.exe │ │ ├── chktrust.exe │ │ ├── chmode.exe │ │ ├── cl.exe.config │ │ ├── cleaninf.exe │ │ ├── config.mftx │ │ ├── cp.exe │ │ ├── default.tmf │ │ ├── diff.exe │ │ ├── dumpbin.exe │ │ ├── ech.exe │ │ ├── echotime.exe │ │ ├── editbin.exe │ │ ├── emptydirs.exe │ │ ├── escpeinf.exe │ │ ├── filever.exe │ │ ├── flist.exe │ │ ├── generr.exe │ │ ├── genlvl.exe │ │ ├── gennt32t.exe │ │ ├── gensrv.exe │ │ ├── genxx.exe │ │ ├── head.exe │ │ ├── hextract.exe │ │ ├── hsplit.exe │ │ ├── idlclean.exe │ │ ├── imagecfg.exe │ │ ├── infmerge.exe │ │ ├── initodat.exe │ │ ├── install-sampleprovider.cmd │ │ ├── kill.exe │ │ ├── lib.exe │ │ ├── link.exe.config │ │ ├── listmung.exe │ │ ├── m4.exe │ │ ├── macutil.exe │ │ ├── makecat.exe.manifest │ │ ├── mapmsg.exe │ │ ├── mc.hlp │ │ ├── midleb.exe │ │ ├── midlpg.exe │ │ ├── mkmsg.exe │ │ ├── mkupdate.exe │ │ ├── mofcomp.exe │ │ ├── mt.exe.config │ │ ├── muibld.exe │ │ ├── munge.exe │ │ ├── ntrelhash.exe │ │ ├── ocinf.exe │ │ ├── pcopy.exe │ │ ├── ppm2pps.exe │ │ ├── prodfilt.exe │ │ ├── qgrep.exe │ │ ├── razacl.exe │ │ ├── rebase.exe │ │ ├── register_app.vbs │ │ ├── rmtshare.exe │ │ ├── roshare.exe │ │ ├── seterror.exe │ │ ├── setreg.exe │ │ ├── signcsp.exe │ │ ├── signtool.exe.manifest │ │ ├── sleep.exe │ │ ├── smashlck.exe │ │ ├── stripinf.exe │ │ ├── structo.exe │ │ ├── symmake.exe │ │ ├── tail.exe │ │ ├── timer.exe │ │ ├── tlist.exe │ │ ├── touch.exe │ │ ├── tscrtadd.exe │ │ ├── tscrtvfy.exe │ │ ├── uixport.exe │ │ ├── undname.exe │ │ ├── uninstall-sampleprovider.cmd │ │ ├── unitext.exe │ │ ├── updcat.exe │ │ ├── vctip.exe.config │ │ ├── vermsg.exe │ │ ├── virtualstoragevss.cat │ │ ├── virtualstoragevss.inf │ │ ├── vswriter_config.xml │ │ ├── wcshdr.exe │ │ ├── widialog.vbs │ │ ├── widiffdb.vbs │ │ ├── wiexport.vbs │ │ ├── wifeatur.vbs │ │ ├── wifilver.vbs │ │ ├── wigenxfm.vbs │ │ ├── wiimport.vbs │ │ ├── wilangid.vbs │ │ ├── wilstprd.vbs │ │ ├── wilstscr.vbs │ │ ├── wilstxfm.vbs │ │ ├── wimerge.vbs │ │ ├── windiff.chm │ │ ├── windiff.hlp │ │ ├── wintrust.dll.ini │ │ ├── wipolicy.vbs │ │ ├── wireadme.txt │ │ ├── wirunsql.vbs │ │ ├── wistream.vbs │ │ ├── wisubstg.vbs │ │ ├── wisuminf.vbs │ │ ├── witextin.vbs │ │ ├── witoansi.vbs │ │ ├── wiusexfm.vbs │ │ ├── ws2hdr.exe │ │ ├── xdcmake.exe.config │ │ ├── xdosnet.exe │ │ └── zwapi.exe │ ├── amd64mk.inc │ ├── appschema.xml │ ├── armmk.inc │ ├── autostart.js │ ├── bbpack.cmd │ ├── bcauto.cmd │ ├── bcbuild.cmd │ ├── bcbuild.js │ ├── bcdazzle.js │ ├── bcdist.js │ ├── bcerrorcheck.js │ ├── binariesacl.txt │ ├── bldcon.cmd │ ├── buildmachines.intlred.txt │ ├── buildmachines.txt │ ├── buildstrlen.cmd │ ├── buildtimes.cmd │ ├── buildtimes.js │ ├── buildwin.cmd │ ├── buildx.cmd │ ├── cabstart.cmd │ ├── certadm.dll │ ├── certutil.exe │ ├── changelab.pl │ ├── changestofiles.pl │ ├── checkbuild.cmd │ ├── checkdepots.cmd │ ├── checkdepots.pl │ ├── checktestpca.cmd │ ├── checktestroot.cmd │ ├── cklang.pm │ ├── cksku.pm │ ├── cktarg.pm │ ├── cleanuppreprocessedmanifest.pl │ ├── codes.txt │ ├── coffbase.txt │ ├── combinedistributedbinplacelogs.pl │ ├── comlib.pm │ ├── copyddkfiles.cmd │ ├── copylang.pl │ ├── createcat.cmd │ ├── crypt.ini │ ├── delobj.cmd │ ├── delsip.ini │ ├── deltacat.cmd │ ├── determinechanges.pl │ ├── dfsmap.pm │ ├── directmt.gml │ ├── directmt7.gml │ ├── driver.conf │ ├── driver.pfx │ ├── drvcabgen.cmd │ ├── edit_public.cmd │ ├── errmsg.cmd │ ├── executecmd.cmd │ ├── filestat.pm │ ├── fxsupdateini.exe │ ├── fxswifilver.vbs │ ├── fxswirunsql.vbs │ ├── fxswistream.vbs │ ├── genbasemac.pl │ ├── genbldno.pl │ ├── generic.mac │ ├── get_change_num.cmd │ ├── getparams.pm │ ├── hackmap.cmd │ ├── hashrep.vbs │ ├── i386mk.inc │ ├── ia64mk.inc │ ├── importpfx.exe │ ├── infsign.cmd │ ├── intblds11.ini.cmd │ ├── intlbins.txt │ ├── intlbld.mak │ ├── intlbld.pl │ ├── intlbld.txt │ ├── intlmap.pl │ ├── intlsdop.cmd │ ├── intlsrc.txt │ ├── intltime.cmd │ ├── intlview.map │ ├── isintlbld.cmd │ ├── lab06_contact.txt │ ├── locemvs.pl │ ├── lockproc.pm │ ├── logmsg.cmd │ ├── logmsg.pm │ ├── make_publish_spec.cmd │ ├── makebuildname.pl │ ├── makefile.ctrpp │ ├── makefile.def │ ├── makefile.new │ ├── makefile.plt │ ├── makefile.sld │ ├── makelist.pl │ ├── mergefiles.cmd │ ├── mergefiles.pl │ ├── missing.cmd │ ├── movelatest.cmd │ ├── mppcmk.inc │ ├── ntenv.cmd │ ├── ntnewver.cmd │ ├── ntsign.cmd │ ├── ntuser.cmd │ ├── octobuild.cmd │ ├── openssl.txt │ ├── oscdimg.cmd │ ├── parseargs.pm │ ├── parsetable.pm │ ├── perlrefresh.cmd │ ├── placefil.txt │ ├── populatefromvbl.pl │ ├── postbuild.cmd │ ├── prebuild.cmd │ ├── prodskus.txt │ ├── projects.inc │ ├── publicchanges.txt │ ├── publish.pl │ ├── quickindex.cmd │ ├── razzle.cmd │ ├── razzle.ico │ ├── razzle64.cmd │ ├── readmejpeg.txt │ ├── realsgn.cmd │ ├── registermtscript.cmd │ ├── rel_con.cmd │ ├── releasesharedenlistment.cmd │ ├── relquality.pm │ ├── replaybinplace.pl │ ├── resign.cmd │ ├── revert_public.cmd │ ├── revert_public_bin.cmd │ ├── review.pl │ ├── reviewd.cmd │ ├── scorch.pl │ ├── sdbackup.cmd │ ├── sdcomp.cmd │ ├── sdmove.cmd │ ├── sdonline.cmd │ ├── sdout.cmd │ ├── sdrefresh.cmd │ ├── sdrestore.cmd │ ├── sdview.cmd │ ├── sdx.cmd │ ├── sdx.pl │ ├── sdx.pm │ ├── sendbuildstats.pl │ ├── sendbuildstatslab7.pl │ ├── sendmsg.pl │ ├── setbuildstatus.cmd │ ├── setbuildstatus.vbs │ ├── shfusion2.bat │ ├── signtest.cat │ ├── signtest.cmd │ ├── sldcompare.pl │ ├── sldmagic.pl │ ├── sourceacl.txt │ ├── srcwatch.pl │ ├── staledfs.cmd │ ├── submitloc.cmd │ ├── submitnewpublicfiles.cmd │ ├── sxcopy.cmd │ ├── sxs_msmgen.msm │ ├── sxsvalidateappmanifest.cmd │ ├── sxsversionsmk.inc │ ├── symbad.txt │ ├── symbolswithtypes.txt │ ├── symcatupd.cmd │ ├── symdontship.txt │ ├── symsrv.cmd │ ├── syncbuild.cmd │ ├── synctree.pl │ ├── system_defaultmk.inc │ ├── template.gml │ ├── testpca.cer │ ├── testpca.conf │ ├── testpca.der │ ├── testroot.cer │ ├── testroot.conf │ ├── testroot.der │ ├── tidy.bat │ ├── tidy.js │ ├── timebuild.pl │ ├── uniqfile.cmd │ ├── unlockxpfiles.bat │ ├── unrazzle.cmd │ ├── updtnum.pl │ ├── vbl03ca.cer │ ├── vbl03ca.conf │ ├── vbl03ca.der │ ├── verify.src │ ├── verifybuildmachine.cmd │ ├── verifysym.cmd │ ├── waitproc.pm │ ├── webblade.pl │ ├── whats.cmd │ ├── whocheckedin.pl │ ├── widialog.vbs │ ├── widiffdb.vbs │ ├── wiexport.vbs │ ├── wifeatur.vbs │ ├── wifilver.vbs │ ├── wigenxfm.vbs │ ├── wiimport.vbs │ ├── wilangid.vbs │ ├── wilstprd.vbs │ ├── wilstscr.vbs │ ├── wilstxfm.vbs │ ├── wimakadmtcab.vbs │ ├── wimakcab.vbs │ ├── wimerge.vbs │ ├── wimsmmerge.vbs │ ├── wipolicy.vbs │ ├── wirunsql.vbs │ ├── wistream.vbs │ ├── wisubstg.vbs │ ├── wisuminf.vbs │ ├── witextin.vbs │ ├── witoansi.vbs │ ├── wiusexfm.vbs │ ├── wmife.pm │ ├── wppconfig │ │ └── rev1 │ │ │ ├── TCHARUNIwpp.ini │ │ │ ├── control.tpl │ │ │ ├── defaultwpp.ini │ │ │ ├── header.tpl │ │ │ ├── km-StorDefault.tpl │ │ │ ├── km-StorHeader.tpl │ │ │ ├── km-StorInit.tpl │ │ │ ├── km-WdfDefault.tpl │ │ │ ├── km-default.tpl │ │ │ ├── km-header.tpl │ │ │ ├── km-init.tpl │ │ │ ├── km-w2k.tpl │ │ │ ├── manifest.tpl │ │ │ ├── mof.tpl │ │ │ ├── provider.tpl │ │ │ ├── r1defwpp.ini │ │ │ ├── simple.tpl │ │ │ ├── stdout.tpl │ │ │ ├── tracemacro.tpl │ │ │ ├── trmacro.tpl │ │ │ ├── um-default.tpl │ │ │ ├── um-header.tpl │ │ │ ├── um-init.tpl │ │ │ └── um-w2k.tpl │ ├── xcopy2binplace.pl │ └── xpfiles.bat └── xboxkrnl.exe └── README.md /NT/Barnabas.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/Barnabas.nfo -------------------------------------------------------------------------------- /NT/WelcometoOpen11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/WelcometoOpen11.txt -------------------------------------------------------------------------------- /NT/arcdkrnl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/arcdkrnl.exe -------------------------------------------------------------------------------- /NT/cpxxupd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/cpxxupd.cmd -------------------------------------------------------------------------------- /NT/makefil0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/makefil0 -------------------------------------------------------------------------------- /NT/mincore/kernelbase/kernelbase.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/mincore/kernelbase/kernelbase.def -------------------------------------------------------------------------------- /NT/mincore/kernelbase/pathcch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/mincore/kernelbase/pathcch.c -------------------------------------------------------------------------------- /NT/minio/netio/nsi/nsisvc/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minio/netio/nsi/nsisvc/dirs -------------------------------------------------------------------------------- /NT/minio/netio/nsi/nsisvc/server/nsi_s_stub.c: -------------------------------------------------------------------------------- 1 | // nothing. 2 | -------------------------------------------------------------------------------- /NT/minio/netio/nsi/user/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minio/netio/nsi/user/dllmain.c -------------------------------------------------------------------------------- /NT/minio/netio/nsi/user/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minio/netio/nsi/user/makefile -------------------------------------------------------------------------------- /NT/minio/netio/nsi/user/nsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minio/netio/nsi/user/nsi.c -------------------------------------------------------------------------------- /NT/minio/netio/nsi/user/nsi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minio/netio/nsi/user/nsi.def -------------------------------------------------------------------------------- /NT/minio/netio/nsi/user/nsi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minio/netio/nsi/user/nsi.rc -------------------------------------------------------------------------------- /NT/minio/netio/nsi/user/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minio/netio/nsi/user/sources -------------------------------------------------------------------------------- /NT/minkernel/Example1.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example1.1.doc -------------------------------------------------------------------------------- /NT/minkernel/Example1.2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example1.2.doc -------------------------------------------------------------------------------- /NT/minkernel/Example1.3.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example1.3.doc -------------------------------------------------------------------------------- /NT/minkernel/Example1.4.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example1.4.doc -------------------------------------------------------------------------------- /NT/minkernel/Example11.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example11.1.doc -------------------------------------------------------------------------------- /NT/minkernel/Example12.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example12.1.doc -------------------------------------------------------------------------------- /NT/minkernel/Example13.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example13.1.doc -------------------------------------------------------------------------------- /NT/minkernel/Example2.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example2.1.doc -------------------------------------------------------------------------------- /NT/minkernel/Example6.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example6.1.doc -------------------------------------------------------------------------------- /NT/minkernel/Example6.2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example6.2.doc -------------------------------------------------------------------------------- /NT/minkernel/Example6.3.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example6.3.doc -------------------------------------------------------------------------------- /NT/minkernel/Example8.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/Example8.1.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleA.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleA.1.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleA.2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleA.2.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleC.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleC.1.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleC.2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleC.2.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleC.3.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleC.3.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleC.4.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleC.4.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleD.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleD.1.doc -------------------------------------------------------------------------------- /NT/minkernel/ExampleD.2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ExampleD.2.doc -------------------------------------------------------------------------------- /NT/minkernel/boot/service/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/service/dirs -------------------------------------------------------------------------------- /NT/minkernel/boot/service/lib/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/service/lib/log.c -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/daytona.n12/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/daytona.nui/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/daytona/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/startrom/dirs -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/hdlscom1.n12/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/hdlscom1/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/hdlscom2.n12/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/hdlscom2/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/hdlstst1.n12/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/hdlstst2.n12/makefile.inc: -------------------------------------------------------------------------------- 1 | !include ..\makefile.inc 2 | -------------------------------------------------------------------------------- /NT/minkernel/boot/startrom/i386/su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/startrom/i386/su.h -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/bios.c -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/dirs -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/efi.c -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/guiddef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/guiddef.c -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/priv.c -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/sysboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/sysboot.h -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/syspart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/syspart.c -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/um/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/um/sources -------------------------------------------------------------------------------- /NT/minkernel/boot/syspart/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/boot/syspart/utility.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/common/compdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/common/compdefs.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/common/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/common/typedefs.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/d16align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/d16align.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/d16out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/d16out.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/d16uncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/d16uncmp.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/d16verb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/d16verb.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decalign.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decapi.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decapi.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decblk.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decdefs.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decin.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decinit.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decmacro.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decoder.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decout.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decproto.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/dectree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/dectree.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decuncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decuncmp.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decvars.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decverb.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/decxlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/decxlat.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/dv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/dv.asm -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/ldi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/ldi.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/maketbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/maketbl.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/offsets.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/ring16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/ring16.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/ring16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/ring16.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/sources -------------------------------------------------------------------------------- /NT/minkernel/lzx/decoder/xlatasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/decoder/xlatasm.asm -------------------------------------------------------------------------------- /NT/minkernel/lzx/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/dirs -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/blkinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/blkinit.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/block.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/bsearch.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encapi.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encapi.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encdata.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encdefs.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encmacro.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encoder.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encproto.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encstats.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/enctree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/enctree.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/encvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/encvars.h -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/init.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/io.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/lci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/lci.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/offsets.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/optenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/optenc.c -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/search.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/search.asm -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/sources -------------------------------------------------------------------------------- /NT/minkernel/lzx/encoder/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/lzx/encoder/tree.c -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/boot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/boot.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/bottom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/bottom.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/embtext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/embtext.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/fstltext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/fstltext.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/hibrnate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/hibrnate.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/homebar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/homebar.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/hometext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/hometext.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/logo.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/ntoskrnl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/ntoskrnl.rc -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/probar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/probar.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/protext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/protext.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/protext64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/protext64.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/shutdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/shutdown.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/srvbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/srvbar.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/srvbott.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/srvbott.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/srvlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/srvlogo.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/srvtop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/srvtop.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/top.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/top.bmp -------------------------------------------------------------------------------- /NT/minkernel/ntos/init/tpctext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/ntos/init/tpctext.bmp -------------------------------------------------------------------------------- /NT/minkernel/strsafe/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/strsafe/dirs -------------------------------------------------------------------------------- /NT/minkernel/strsafe/ntstrsafe/makefile: -------------------------------------------------------------------------------- 1 | # do not edit this file!! 2 | !INCLUDE $(NTMAKEENV)\makefile.def 3 | -------------------------------------------------------------------------------- /NT/minkernel/strsafe/strsafe/makefile: -------------------------------------------------------------------------------- 1 | # do not edit this file!! 2 | !INCLUDE $(NTMAKEENV)\makefile.def 3 | -------------------------------------------------------------------------------- /NT/minkernel/strsafe/strsafe/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/strsafe/strsafe/sources -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/ktmw32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/ktmw32.c -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/ktmw32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/ktmw32.def -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/ktmw32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/ktmw32.rc -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/makefile -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/msg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/msg.bin -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/msg.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/msg.mc -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/mui.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/mui.bin -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/sources -------------------------------------------------------------------------------- /NT/minkernel/tm/ktmw32/wevttmpl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/minkernel/tm/ktmw32/wevttmpl.bin -------------------------------------------------------------------------------- /NT/onecore/admin/admt/upgrade/ver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/admin/admt/upgrade/ver.rc -------------------------------------------------------------------------------- /NT/onecore/admin/rmt/compmgmtlauncher/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/admin/rmt/compmgmtlauncher/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_MAIN_ICON 500 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/appraiser/gated/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/inventory/software/cache/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/shared/unmanaged/appdeviceicon/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/shared/unmanaged/avtracking/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/shared/unmanaged/onesettingsquery/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/shared/unmanaged/upgradeexperienceindicators/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/telemetry/ami/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib 2 | -------------------------------------------------------------------------------- /NT/onecore/base/appcompat/telemetry/dirs: -------------------------------------------------------------------------------- 1 | DIRS=ami 2 | -------------------------------------------------------------------------------- /NT/onecore/base/diagnosis/pdui/launchtm/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/diagnosis/pdui/resmon/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/eco/wds/setup/dirs: -------------------------------------------------------------------------------- 1 | DIRS=compliance 2 | -------------------------------------------------------------------------------- /NT/onecore/base/fs/fsrm/utilities/srm/srm.def: -------------------------------------------------------------------------------- 1 | LIBRARY SRM 2 | -------------------------------------------------------------------------------- /NT/onecore/base/fs/utils/svsvc/dirs: -------------------------------------------------------------------------------- 1 | DIRS=src 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/_winnt/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/azure/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/ntsetup/azure/dirs -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/azure/xlfs/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/azure/xlfs/placefil.txt: -------------------------------------------------------------------------------- 1 | service.xml xlfs -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/basewin/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/billbrd/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/ntsetup/billbrd/dirs -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/bmps/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/bmps/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/ntsetup/bmps/sources -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/hwlog/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/hwlogexe/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/lib/cleanup/dirs: -------------------------------------------------------------------------------- 1 | DIRS=src 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/lib/errors/dirs: -------------------------------------------------------------------------------- 1 | DIRS=src 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/lib/uilib/dirs: -------------------------------------------------------------------------------- 1 | DIRS=src 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/lib/unattendlog/dirs: -------------------------------------------------------------------------------- 1 | DIRS=src 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/migshared/migutil/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/migshared/pcha/empty.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/migshared/pchw/empty.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/moricons/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/setuplog/dirs: -------------------------------------------------------------------------------- 1 | DIRS=ansi unicode 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/setuplog/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/ntsetup/setuplog/x.c -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/setupmsi/buildno.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/setupmsi/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/unbcl/dirs: -------------------------------------------------------------------------------- 1 | DIRS=src 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/unbcl/src/array.cpp: -------------------------------------------------------------------------------- 1 | #include "array.h" 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/unbcl/src/collectionbase.cpp: -------------------------------------------------------------------------------- 1 | #include "collectionbase.h" 2 | 3 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/unbcl/src/dll/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/unbcl/src/media/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/unbcl/src/stack.cpp: -------------------------------------------------------------------------------- 1 | #include "stack.h" 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/undostub/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/winnt32/exe/amd64/download.c: -------------------------------------------------------------------------------- 1 | #include "..\i386\download.c" 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/winnt32/exe/amd64/download.h: -------------------------------------------------------------------------------- 1 | #include "..\i386\download.h" 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/winnt32/exe/amd64/sources: -------------------------------------------------------------------------------- 1 | AMD64_SOURCES=amd64\download.c 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/winnt32/exe/i386/sources: -------------------------------------------------------------------------------- 1 | i386_SOURCES=i386\download.c 2 | -------------------------------------------------------------------------------- /NT/onecore/base/ntsetup/winnt32/exe/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/hdwwiz/exe/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_HARDWARE 1501 2 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/luaexe/deviceeject/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_HARDWARE 1501 2 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndadmin/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/ndadmin/makefile -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndadmin/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_MAIN 101 2 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndadmin/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/ndadmin/sources -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndexe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/ndexe/makefile -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndexe/newdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/ndexe/newdev.c -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndexe/newdev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/ndexe/newdev.ico -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndexe/newdev.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/ndexe/newdev.rc -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndexe/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_MAIN 101 2 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/ndexe/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/ndexe/sources -------------------------------------------------------------------------------- /NT/onecore/base/pnp/setupapi/sputils/ansi/precomp.h: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/setupapi/sputils/extended/precomp.h: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/setupapi/sputils/unicode/precomp.h: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | -------------------------------------------------------------------------------- /NT/onecore/base/pnp/sysclass/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/base/pnp/sysclass/sources -------------------------------------------------------------------------------- /NT/onecore/base/pnp/sysclass/sysclass.def: -------------------------------------------------------------------------------- 1 | LIBRARY SYSCLASS 2 | EXPORTS 3 | StorageCoInstaller @1; -------------------------------------------------------------------------------- /NT/onecore/base/pnp/tools/devcon/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/base/telemetry/dirs: -------------------------------------------------------------------------------- 1 | DIRS=permission 2 | -------------------------------------------------------------------------------- /NT/onecore/base/telemetry/permission/dirs: -------------------------------------------------------------------------------- 1 | DIRS=product 2 | -------------------------------------------------------------------------------- /NT/onecore/base/wsapi21.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/com/netfx/windowsbuilt/servicesunmanaged/dirs: -------------------------------------------------------------------------------- 1 | DIRS=performancecountershim 2 | -------------------------------------------------------------------------------- /NT/onecore/com/ole32/iprop/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/com/ole32/iprop/dirs -------------------------------------------------------------------------------- /NT/onecore/com/ole32/iprop/iprop.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/com/ole32/iprop/iprop.def -------------------------------------------------------------------------------- /NT/onecore/com/ole32/iprop/iprop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/com/ole32/iprop/iprop.rc -------------------------------------------------------------------------------- /NT/onecore/com/rpc/locator/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/com/rpc/locator/dirs -------------------------------------------------------------------------------- /NT/onecore/com/rpc/locator/nsserver/src/locatorpch.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /NT/onecore/com/rpc/locator/nsserver/src/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/copy of named pipe implementation.eml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NT/onecore/drivers/wdm/usb/user/usbperf/perfdata.c: -------------------------------------------------------------------------------- 1 | // placeholder 2 | -------------------------------------------------------------------------------- /NT/onecore/ds/security/rm/src/server/setup/dirs: -------------------------------------------------------------------------------- 1 | DIRS=rmsupg 2 | -------------------------------------------------------------------------------- /NT/onecore/enduser/helpengines/winhelp/dirs: -------------------------------------------------------------------------------- 1 | DIRS=winhstb 2 | -------------------------------------------------------------------------------- /NT/onecore/enduser/helpengines/winhelp/winhstb/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/enduser/winstore/licensing/clientdll/dirs: -------------------------------------------------------------------------------- 1 | DIRS=build 2 | -------------------------------------------------------------------------------- /NT/onecore/letter to children - 2.eml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/1394.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/1394.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/acpi.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/acpi.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/apps.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/apps.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/avc.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/avc.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/bda.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/bda.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/disk.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/disk.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/dsup.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/dsup.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/dwup.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/dwup.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/fdc.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/fdc.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/ks.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/ks.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/mf.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/mf.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/msdv.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/msdv.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/usb.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/merged/setupinfs/usb.inx -------------------------------------------------------------------------------- /NT/onecore/merged/setupinfs/winpe/startnet.cmd: -------------------------------------------------------------------------------- 1 | wpeinit 2 | -------------------------------------------------------------------------------- /NT/onecore/multimedia/photos/imagingdevicescontrolpanel/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/html/dirs: -------------------------------------------------------------------------------- 1 | DIRS = wks srv -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/html/res/performance.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/html/srv/letter to children - 2.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/html/srv/rats_pass.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/html/srv/sources: -------------------------------------------------------------------------------- 1 | ALT_PROJECT_TARGET=srvinf 2 | SERVER=1 3 | !include ..\sources.inc 4 | 5 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/html/wks/regbeta.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/html/wks/sources: -------------------------------------------------------------------------------- 1 | SERVER=0 2 | !include ..\sources.inc 3 | 4 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/tests failures.nws: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/applets/welcome/welcome.ini: -------------------------------------------------------------------------------- 1 | [Deleted] 2 | ItemMask=0 3 | -------------------------------------------------------------------------------- /NT/onecore/shell/cpls/cpl_exes/deskcpl/devprop/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_MAIN 100 2 | -------------------------------------------------------------------------------- /NT/onecore/shell/cpls/cpl_exes/deskcpl/dirs: -------------------------------------------------------------------------------- 1 | DIRS=devprop 2 | -------------------------------------------------------------------------------- /NT/onecore/shell/ext/oobefldr/dll/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/shell/osshell/ep/dirs -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/idlewild/dropout/dropout.def: -------------------------------------------------------------------------------- 1 | LIBRARY DROPOUT 2 | 3 | EXPORTS 4 | WEP 5 | ScrSaveProc 6 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/idlewild/firework/firework.def: -------------------------------------------------------------------------------- 1 | LIBRARY FIREWORK 2 | 3 | EXPORTS 4 | WEP 5 | ScrSaveProc 6 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/idlewild/life/life.def: -------------------------------------------------------------------------------- 1 | LIBRARY LIFE 2 | 3 | EXPORTS 4 | WEP 5 | ScrSaveProc 6 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/idlewild/lines/lines.def: -------------------------------------------------------------------------------- 1 | LIBRARY LINES 2 | 3 | EXPORTS 4 | WEP 5 | ScrSaveProc 6 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/idlewild/shuffle/shuffle.def: -------------------------------------------------------------------------------- 1 | LIBRARY SHUFFLE 2 | 3 | EXPORTS 4 | WEP 5 | ScrSaveProc 6 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/idlewild/stars/stars.def: -------------------------------------------------------------------------------- 1 | LIBRARY STARS 2 | 3 | EXPORTS 4 | WEP 5 | ScrSaveProc 6 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/ep/idlewild/wipe/wipe.def: -------------------------------------------------------------------------------- 1 | LIBRARY WIPE 2 | 3 | EXPORTS 4 | WEP 5 | ScrSaveProc 6 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/games/reversi/aplwiif1.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/games/reversi/documentation of problems in stress.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/games/sol/bmp/44.eml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/games/sol/bmp/tywych05.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/games/sol/soldbg.def: -------------------------------------------------------------------------------- 1 | 2 | GameNo @99 3 | AssertDlgProc @101 4 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/games/sol/ygy.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/pifmgr/makefile: -------------------------------------------------------------------------------- 1 | !include $(NTMAKEENV)\makefile.def 2 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/pifmgr/pifmgr.def: -------------------------------------------------------------------------------- 1 | LIBRARY MORICONS 2 | 3 | EXPORTS 4 | -------------------------------------------------------------------------------- /NT/onecore/shell/osshell/winver/tywych07.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/published/inc/botinfs.eml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NT/onecore/shell/published/inc/cpl.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/shell/published/inc/cpl.w -------------------------------------------------------------------------------- /NT/onecore/shell/verclsid/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/shell/verclsid/makefile -------------------------------------------------------------------------------- /NT/onecore/shell/verclsid/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/shell/verclsid/sources -------------------------------------------------------------------------------- /NT/onecore/vm/dv/vmbus/winsock/dll/dirs: -------------------------------------------------------------------------------- 1 | DIRS=child 2 | -------------------------------------------------------------------------------- /NT/onecore/vm/setup/compliancecheck/dirs: -------------------------------------------------------------------------------- 1 | DIRS=other 2 | -------------------------------------------------------------------------------- /NT/onecore/vm/setup/dirs: -------------------------------------------------------------------------------- 1 | DIRS=compliancecheck 2 | -------------------------------------------------------------------------------- /NT/onecore/windows/core/console/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/onecore/windows/core/console/dirs -------------------------------------------------------------------------------- /NT/public/internal/base/inc/wdslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/internal/base/inc/wdslog.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/cderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/cderr.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/commctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/commctrl.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/commdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/commdlg.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/common.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/common.ver -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/_70_exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/_70_exception -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/_70_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/_70_new -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/_70_xstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/_70_xstddef -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/_70_yvals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/_70_yvals.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/ammintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/ammintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/arm64_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/arm64_neon.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/arm64intr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/arm64intr.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/assert.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/conio.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/crtdbg.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/crtdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/crtdefs.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/crtwrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/crtwrn.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/cstddef -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/ctype.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/direct.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/dos.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/dvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/dvec.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/eh.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/emmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/emmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/errno.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/exception -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/excpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/excpt.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/fcntl.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/float.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/fpieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/fpieee.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/fstream.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/fvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/fvec.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/immintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/immintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/intrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/io.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/io.inl -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/iomanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/iomanip.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/ios.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/iostream.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/istream.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/ivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/ivec.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/limits.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/locale.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/malloc.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/math.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/mbctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/mbctype.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/mbstring.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/memory.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/minmax.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/mm3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/mm3dnow.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/mmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/mmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/new -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/new.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/nmmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/ostream.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/pmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/pmmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/process.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/rtcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/rtcapi.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/search.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/setjmp.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/setjmpex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/setjmpex.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/share.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/signal.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/smmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/smmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stdarg.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stddef.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stdexcpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stdexcpt.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stdio.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stdiostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stdiostr.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stdlib.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/bitset -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cassert -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cctype -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cerrno -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cfloat -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/ciso646 -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/climits -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/clocale -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cmath -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/complex -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/csetjmp -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/csignal -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cstdarg -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cstdint -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cstdio -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cstdlib -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cstring -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/ctime -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cwchar -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/cwctype -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/deque -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/fstream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/iomanip -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/ios -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/iosfwd -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/iostream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/iso646.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/istream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/iterator -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/limits -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/list -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/locale -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/map -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/memory -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/numeric -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/ostream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/queue -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/set -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/sstream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/stack -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/stl.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/string -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/typeinfo -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/utility -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/valarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/valarray -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/vector -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/wctype.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xcomplex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xcomplex -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xiosbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xiosbase -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xlocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xlocale -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xlocinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xlocinfo -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xlocmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xlocmon -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xlocnum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xlocnum -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xloctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xloctime -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xmath.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xmemory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xmemory -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xstring -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xtree -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/xutility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/xutility -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl60/ymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl60/ymath.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/bitset -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cassert -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cctype -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cerrno -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cfloat -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/ciso646 -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/climits -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/clocale -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cmath -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/complex -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/csetjmp -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/csignal -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cstdarg -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cstdint -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cstdio -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cstdlib -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cstring -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/ctime -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cwchar -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/cwctype -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/deque -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/fstream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/hash_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/hash_map -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/hash_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/hash_set -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/iomanip -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/ios -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/iosfwd -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/iostream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/iso646.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/istream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/iterator -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/limits -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/list -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/locale -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/map -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/memory -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/numeric -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/ostream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/queue -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/set -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/sstream -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/stack -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/stl.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/string -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/typeinfo -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/utility -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/valarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/valarray -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/vector -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/wctype.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/xcomplex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/xcomplex -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/xhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/xhash -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stl70/xtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stl70/xtree -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/stlshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/stlshared.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/streamb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/streamb.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/string.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/strstrea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/strstrea.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/tchar.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/time.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/time.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/time.inl -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/tmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/tmmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/typeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/typeinfo.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/use_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/use_ansi.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/useoldio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/useoldio.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/vadefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/vadefs.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/varargs.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/wchar.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/wcstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/wcstr.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/wio.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/wio.inl -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/wmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/wmmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/wtime.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/wtime.inl -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/xmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/xmmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/xstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/xstddef -------------------------------------------------------------------------------- /NT/public/sdk/inc/crt/zmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/crt/zmmintrin.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/dde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/dde.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/ddeml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/ddeml.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/dlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/dlgs.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/imm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/imm.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/lzexpand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/lzexpand.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/mcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/mcx.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/mmsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/mmsystem.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/nb30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/nb30.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/ntstrsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/ntstrsafe.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/ntverp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/ntverp.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/ntverp.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/ntverp.ver -------------------------------------------------------------------------------- /NT/public/sdk/inc/ole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/ole.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/ole2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/ole2.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/rpc.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/sdkddkver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/sdkddkver.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/shellapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/shellapi.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/specstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/specstrings.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/stralign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/stralign.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/strsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/strsafe.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winapifamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winapifamily.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winbase.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/wincon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/wincon.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/wincrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/wincrypt.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/windef.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/windows.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winefs.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/wingdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/wingdi.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winnetwk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winnetwk.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winnls.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winnls32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winnls32.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winnt.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winperf.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winreg.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winscard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winscard.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winsock.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winspool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winspool.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winsvc.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winuser.h -------------------------------------------------------------------------------- /NT/public/sdk/inc/winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/inc/winver.h -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/ktmw32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/ktmw32.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/msvcrt.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/ntdsa.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/ntdsa.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/ntvdm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/ntvdm.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/objsel.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/objsel.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/odbc32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/odbc32.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/ole32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/ole32.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/oleacc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/oleacc.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/oledb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/oledb.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/oledlg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/oledlg.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/rpcrt4.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/rpcrt4.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/urlmon.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/urlmon.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/user32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/user32.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/i386/uuid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/i386/uuid.lib -------------------------------------------------------------------------------- /NT/public/sdk/lib/stub512.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/public/sdk/lib/stub512.com -------------------------------------------------------------------------------- /NT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/readme.txt -------------------------------------------------------------------------------- /NT/ronen-cv.eml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NT/tools/WiCompon.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/WiCompon.vbs -------------------------------------------------------------------------------- /NT/tools/access.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/access.pm -------------------------------------------------------------------------------- /NT/tools/alias.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/alias.nt -------------------------------------------------------------------------------- /NT/tools/alias.sdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/alias.sdx -------------------------------------------------------------------------------- /NT/tools/amd64/BetestSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/BetestSample.xml -------------------------------------------------------------------------------- /NT/tools/amd64/IFiltTst.Ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/IFiltTst.Ini -------------------------------------------------------------------------------- /NT/tools/amd64/SirepInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/SirepInterop.dll -------------------------------------------------------------------------------- /NT/tools/amd64/VswriterSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/VswriterSample.xml -------------------------------------------------------------------------------- /NT/tools/amd64/WiCompon.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/WiCompon.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/accevent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/accevent.exe -------------------------------------------------------------------------------- /NT/tools/amd64/addsect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/addsect.exe -------------------------------------------------------------------------------- /NT/tools/amd64/adpcmencode3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/adpcmencode3.exe -------------------------------------------------------------------------------- /NT/tools/amd64/aitstatic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/aitstatic.exe -------------------------------------------------------------------------------- /NT/tools/amd64/alias.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/alias.exe -------------------------------------------------------------------------------- /NT/tools/amd64/apivalidator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/apivalidator.exe -------------------------------------------------------------------------------- /NT/tools/amd64/appendtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/appendtool.exe -------------------------------------------------------------------------------- /NT/tools/amd64/appxpackaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/appxpackaging.dll -------------------------------------------------------------------------------- /NT/tools/amd64/appxsip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/appxsip.dll -------------------------------------------------------------------------------- /NT/tools/amd64/atlprov.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/atlprov.dll -------------------------------------------------------------------------------- /NT/tools/amd64/autologon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/autologon.exe -------------------------------------------------------------------------------- /NT/tools/amd64/betest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/betest.exe -------------------------------------------------------------------------------- /NT/tools/amd64/betest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/betest.xml -------------------------------------------------------------------------------- /NT/tools/amd64/bin2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/bin2c.exe -------------------------------------------------------------------------------- /NT/tools/amd64/bmf2mof.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/bmf2mof.exe -------------------------------------------------------------------------------- /NT/tools/amd64/buildschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/buildschema.xml -------------------------------------------------------------------------------- /NT/tools/amd64/cabcheck.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/cabcheck.exe -------------------------------------------------------------------------------- /NT/tools/amd64/calchash.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/calchash.exe -------------------------------------------------------------------------------- /NT/tools/amd64/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/cat.exe -------------------------------------------------------------------------------- /NT/tools/amd64/chktrust.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/chktrust.exe -------------------------------------------------------------------------------- /NT/tools/amd64/chmode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/chmode.exe -------------------------------------------------------------------------------- /NT/tools/amd64/cl.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/cl.exe.config -------------------------------------------------------------------------------- /NT/tools/amd64/cleaninf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/cleaninf.exe -------------------------------------------------------------------------------- /NT/tools/amd64/config.mftx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/config.mftx -------------------------------------------------------------------------------- /NT/tools/amd64/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/cp.exe -------------------------------------------------------------------------------- /NT/tools/amd64/default.tmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/default.tmf -------------------------------------------------------------------------------- /NT/tools/amd64/diff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/diff.exe -------------------------------------------------------------------------------- /NT/tools/amd64/dumpbin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/dumpbin.exe -------------------------------------------------------------------------------- /NT/tools/amd64/ech.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/ech.exe -------------------------------------------------------------------------------- /NT/tools/amd64/echotime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/echotime.exe -------------------------------------------------------------------------------- /NT/tools/amd64/editbin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/editbin.exe -------------------------------------------------------------------------------- /NT/tools/amd64/emptydirs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/emptydirs.exe -------------------------------------------------------------------------------- /NT/tools/amd64/escpeinf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/escpeinf.exe -------------------------------------------------------------------------------- /NT/tools/amd64/filever.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/filever.exe -------------------------------------------------------------------------------- /NT/tools/amd64/flist.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/flist.exe -------------------------------------------------------------------------------- /NT/tools/amd64/generr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/generr.exe -------------------------------------------------------------------------------- /NT/tools/amd64/genlvl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/genlvl.exe -------------------------------------------------------------------------------- /NT/tools/amd64/gennt32t.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/gennt32t.exe -------------------------------------------------------------------------------- /NT/tools/amd64/gensrv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/gensrv.exe -------------------------------------------------------------------------------- /NT/tools/amd64/genxx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/genxx.exe -------------------------------------------------------------------------------- /NT/tools/amd64/head.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/head.exe -------------------------------------------------------------------------------- /NT/tools/amd64/hextract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/hextract.exe -------------------------------------------------------------------------------- /NT/tools/amd64/hsplit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/hsplit.exe -------------------------------------------------------------------------------- /NT/tools/amd64/idlclean.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/idlclean.exe -------------------------------------------------------------------------------- /NT/tools/amd64/imagecfg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/imagecfg.exe -------------------------------------------------------------------------------- /NT/tools/amd64/infmerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/infmerge.exe -------------------------------------------------------------------------------- /NT/tools/amd64/initodat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/initodat.exe -------------------------------------------------------------------------------- /NT/tools/amd64/kill.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/kill.exe -------------------------------------------------------------------------------- /NT/tools/amd64/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/lib.exe -------------------------------------------------------------------------------- /NT/tools/amd64/link.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/link.exe.config -------------------------------------------------------------------------------- /NT/tools/amd64/listmung.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/listmung.exe -------------------------------------------------------------------------------- /NT/tools/amd64/m4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/m4.exe -------------------------------------------------------------------------------- /NT/tools/amd64/macutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/macutil.exe -------------------------------------------------------------------------------- /NT/tools/amd64/mapmsg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/mapmsg.exe -------------------------------------------------------------------------------- /NT/tools/amd64/mc.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/mc.hlp -------------------------------------------------------------------------------- /NT/tools/amd64/midleb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/midleb.exe -------------------------------------------------------------------------------- /NT/tools/amd64/midlpg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/midlpg.exe -------------------------------------------------------------------------------- /NT/tools/amd64/mkmsg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/mkmsg.exe -------------------------------------------------------------------------------- /NT/tools/amd64/mkupdate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/mkupdate.exe -------------------------------------------------------------------------------- /NT/tools/amd64/mofcomp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/mofcomp.exe -------------------------------------------------------------------------------- /NT/tools/amd64/mt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/mt.exe.config -------------------------------------------------------------------------------- /NT/tools/amd64/muibld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/muibld.exe -------------------------------------------------------------------------------- /NT/tools/amd64/munge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/munge.exe -------------------------------------------------------------------------------- /NT/tools/amd64/ntrelhash.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/ntrelhash.exe -------------------------------------------------------------------------------- /NT/tools/amd64/ocinf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/ocinf.exe -------------------------------------------------------------------------------- /NT/tools/amd64/pcopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/pcopy.exe -------------------------------------------------------------------------------- /NT/tools/amd64/ppm2pps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/ppm2pps.exe -------------------------------------------------------------------------------- /NT/tools/amd64/prodfilt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/prodfilt.exe -------------------------------------------------------------------------------- /NT/tools/amd64/qgrep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/qgrep.exe -------------------------------------------------------------------------------- /NT/tools/amd64/razacl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/razacl.exe -------------------------------------------------------------------------------- /NT/tools/amd64/rebase.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/rebase.exe -------------------------------------------------------------------------------- /NT/tools/amd64/register_app.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/register_app.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/rmtshare.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/rmtshare.exe -------------------------------------------------------------------------------- /NT/tools/amd64/roshare.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/roshare.exe -------------------------------------------------------------------------------- /NT/tools/amd64/seterror.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/seterror.exe -------------------------------------------------------------------------------- /NT/tools/amd64/setreg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/setreg.exe -------------------------------------------------------------------------------- /NT/tools/amd64/signcsp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/signcsp.exe -------------------------------------------------------------------------------- /NT/tools/amd64/sleep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/sleep.exe -------------------------------------------------------------------------------- /NT/tools/amd64/smashlck.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/smashlck.exe -------------------------------------------------------------------------------- /NT/tools/amd64/stripinf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/stripinf.exe -------------------------------------------------------------------------------- /NT/tools/amd64/structo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/structo.exe -------------------------------------------------------------------------------- /NT/tools/amd64/symmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/symmake.exe -------------------------------------------------------------------------------- /NT/tools/amd64/tail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/tail.exe -------------------------------------------------------------------------------- /NT/tools/amd64/timer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/timer.exe -------------------------------------------------------------------------------- /NT/tools/amd64/tlist.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/tlist.exe -------------------------------------------------------------------------------- /NT/tools/amd64/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/touch.exe -------------------------------------------------------------------------------- /NT/tools/amd64/tscrtadd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/tscrtadd.exe -------------------------------------------------------------------------------- /NT/tools/amd64/tscrtvfy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/tscrtvfy.exe -------------------------------------------------------------------------------- /NT/tools/amd64/uixport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/uixport.exe -------------------------------------------------------------------------------- /NT/tools/amd64/undname.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/undname.exe -------------------------------------------------------------------------------- /NT/tools/amd64/unitext.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/unitext.exe -------------------------------------------------------------------------------- /NT/tools/amd64/updcat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/updcat.exe -------------------------------------------------------------------------------- /NT/tools/amd64/vctip.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/vctip.exe.config -------------------------------------------------------------------------------- /NT/tools/amd64/vermsg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/vermsg.exe -------------------------------------------------------------------------------- /NT/tools/amd64/wcshdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wcshdr.exe -------------------------------------------------------------------------------- /NT/tools/amd64/widialog.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/widialog.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/widiffdb.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/widiffdb.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wiexport.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wiexport.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wifeatur.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wifeatur.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wifilver.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wifilver.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wigenxfm.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wigenxfm.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wiimport.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wiimport.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wilangid.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wilangid.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wilstprd.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wilstprd.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wilstscr.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wilstscr.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wilstxfm.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wilstxfm.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wimerge.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wimerge.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/windiff.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/windiff.chm -------------------------------------------------------------------------------- /NT/tools/amd64/windiff.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/windiff.hlp -------------------------------------------------------------------------------- /NT/tools/amd64/wintrust.dll.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wintrust.dll.ini -------------------------------------------------------------------------------- /NT/tools/amd64/wipolicy.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wipolicy.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wireadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wireadme.txt -------------------------------------------------------------------------------- /NT/tools/amd64/wirunsql.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wirunsql.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wistream.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wistream.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wisubstg.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wisubstg.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wisuminf.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wisuminf.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/witextin.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/witextin.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/witoansi.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/witoansi.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/wiusexfm.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/wiusexfm.vbs -------------------------------------------------------------------------------- /NT/tools/amd64/ws2hdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/ws2hdr.exe -------------------------------------------------------------------------------- /NT/tools/amd64/xdcmake.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/xdcmake.exe.config -------------------------------------------------------------------------------- /NT/tools/amd64/xdosnet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/xdosnet.exe -------------------------------------------------------------------------------- /NT/tools/amd64/zwapi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64/zwapi.exe -------------------------------------------------------------------------------- /NT/tools/amd64mk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/amd64mk.inc -------------------------------------------------------------------------------- /NT/tools/appschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/appschema.xml -------------------------------------------------------------------------------- /NT/tools/armmk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/armmk.inc -------------------------------------------------------------------------------- /NT/tools/autostart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/autostart.js -------------------------------------------------------------------------------- /NT/tools/bbpack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bbpack.cmd -------------------------------------------------------------------------------- /NT/tools/bcauto.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bcauto.cmd -------------------------------------------------------------------------------- /NT/tools/bcbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bcbuild.cmd -------------------------------------------------------------------------------- /NT/tools/bcbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bcbuild.js -------------------------------------------------------------------------------- /NT/tools/bcdazzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bcdazzle.js -------------------------------------------------------------------------------- /NT/tools/bcdist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bcdist.js -------------------------------------------------------------------------------- /NT/tools/bcerrorcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bcerrorcheck.js -------------------------------------------------------------------------------- /NT/tools/binariesacl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/binariesacl.txt -------------------------------------------------------------------------------- /NT/tools/bldcon.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/bldcon.cmd -------------------------------------------------------------------------------- /NT/tools/buildmachines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/buildmachines.txt -------------------------------------------------------------------------------- /NT/tools/buildstrlen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/buildstrlen.cmd -------------------------------------------------------------------------------- /NT/tools/buildtimes.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/buildtimes.cmd -------------------------------------------------------------------------------- /NT/tools/buildtimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/buildtimes.js -------------------------------------------------------------------------------- /NT/tools/buildwin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/buildwin.cmd -------------------------------------------------------------------------------- /NT/tools/buildx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/buildx.cmd -------------------------------------------------------------------------------- /NT/tools/cabstart.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/cabstart.cmd -------------------------------------------------------------------------------- /NT/tools/certadm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/certadm.dll -------------------------------------------------------------------------------- /NT/tools/certutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/certutil.exe -------------------------------------------------------------------------------- /NT/tools/changelab.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/changelab.pl -------------------------------------------------------------------------------- /NT/tools/changestofiles.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/changestofiles.pl -------------------------------------------------------------------------------- /NT/tools/checkbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/checkbuild.cmd -------------------------------------------------------------------------------- /NT/tools/checkdepots.cmd: -------------------------------------------------------------------------------- 1 | perl %RazzleToolPath%\checkdepots.pl -------------------------------------------------------------------------------- /NT/tools/checkdepots.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/checkdepots.pl -------------------------------------------------------------------------------- /NT/tools/checktestpca.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/checktestpca.cmd -------------------------------------------------------------------------------- /NT/tools/checktestroot.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/checktestroot.cmd -------------------------------------------------------------------------------- /NT/tools/cklang.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/cklang.pm -------------------------------------------------------------------------------- /NT/tools/cksku.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/cksku.pm -------------------------------------------------------------------------------- /NT/tools/cktarg.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/cktarg.pm -------------------------------------------------------------------------------- /NT/tools/codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/codes.txt -------------------------------------------------------------------------------- /NT/tools/coffbase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/coffbase.txt -------------------------------------------------------------------------------- /NT/tools/comlib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/comlib.pm -------------------------------------------------------------------------------- /NT/tools/copyddkfiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/copyddkfiles.cmd -------------------------------------------------------------------------------- /NT/tools/copylang.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/copylang.pl -------------------------------------------------------------------------------- /NT/tools/createcat.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/createcat.cmd -------------------------------------------------------------------------------- /NT/tools/crypt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/crypt.ini -------------------------------------------------------------------------------- /NT/tools/delobj.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/delobj.cmd -------------------------------------------------------------------------------- /NT/tools/delsip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/delsip.ini -------------------------------------------------------------------------------- /NT/tools/deltacat.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/deltacat.cmd -------------------------------------------------------------------------------- /NT/tools/determinechanges.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/determinechanges.pl -------------------------------------------------------------------------------- /NT/tools/dfsmap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/dfsmap.pm -------------------------------------------------------------------------------- /NT/tools/directmt.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/directmt.gml -------------------------------------------------------------------------------- /NT/tools/directmt7.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/directmt7.gml -------------------------------------------------------------------------------- /NT/tools/driver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/driver.conf -------------------------------------------------------------------------------- /NT/tools/driver.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/driver.pfx -------------------------------------------------------------------------------- /NT/tools/drvcabgen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/drvcabgen.cmd -------------------------------------------------------------------------------- /NT/tools/edit_public.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/edit_public.cmd -------------------------------------------------------------------------------- /NT/tools/errmsg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/errmsg.cmd -------------------------------------------------------------------------------- /NT/tools/executecmd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/executecmd.cmd -------------------------------------------------------------------------------- /NT/tools/filestat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/filestat.pm -------------------------------------------------------------------------------- /NT/tools/fxsupdateini.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/fxsupdateini.exe -------------------------------------------------------------------------------- /NT/tools/fxswifilver.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/fxswifilver.vbs -------------------------------------------------------------------------------- /NT/tools/fxswirunsql.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/fxswirunsql.vbs -------------------------------------------------------------------------------- /NT/tools/fxswistream.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/fxswistream.vbs -------------------------------------------------------------------------------- /NT/tools/genbasemac.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/genbasemac.pl -------------------------------------------------------------------------------- /NT/tools/genbldno.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/genbldno.pl -------------------------------------------------------------------------------- /NT/tools/generic.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/generic.mac -------------------------------------------------------------------------------- /NT/tools/get_change_num.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/get_change_num.cmd -------------------------------------------------------------------------------- /NT/tools/getparams.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/getparams.pm -------------------------------------------------------------------------------- /NT/tools/hackmap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/hackmap.cmd -------------------------------------------------------------------------------- /NT/tools/hashrep.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/hashrep.vbs -------------------------------------------------------------------------------- /NT/tools/i386mk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/i386mk.inc -------------------------------------------------------------------------------- /NT/tools/ia64mk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/ia64mk.inc -------------------------------------------------------------------------------- /NT/tools/importpfx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/importpfx.exe -------------------------------------------------------------------------------- /NT/tools/infsign.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/infsign.cmd -------------------------------------------------------------------------------- /NT/tools/intblds11.ini.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intblds11.ini.cmd -------------------------------------------------------------------------------- /NT/tools/intlbins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlbins.txt -------------------------------------------------------------------------------- /NT/tools/intlbld.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlbld.mak -------------------------------------------------------------------------------- /NT/tools/intlbld.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlbld.pl -------------------------------------------------------------------------------- /NT/tools/intlbld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlbld.txt -------------------------------------------------------------------------------- /NT/tools/intlmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlmap.pl -------------------------------------------------------------------------------- /NT/tools/intlsdop.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlsdop.cmd -------------------------------------------------------------------------------- /NT/tools/intlsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlsrc.txt -------------------------------------------------------------------------------- /NT/tools/intltime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intltime.cmd -------------------------------------------------------------------------------- /NT/tools/intlview.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/intlview.map -------------------------------------------------------------------------------- /NT/tools/isintlbld.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/isintlbld.cmd -------------------------------------------------------------------------------- /NT/tools/lab06_contact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/lab06_contact.txt -------------------------------------------------------------------------------- /NT/tools/locemvs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/locemvs.pl -------------------------------------------------------------------------------- /NT/tools/lockproc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/lockproc.pm -------------------------------------------------------------------------------- /NT/tools/logmsg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/logmsg.cmd -------------------------------------------------------------------------------- /NT/tools/logmsg.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/logmsg.pm -------------------------------------------------------------------------------- /NT/tools/make_publish_spec.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/make_publish_spec.cmd -------------------------------------------------------------------------------- /NT/tools/makebuildname.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/makebuildname.pl -------------------------------------------------------------------------------- /NT/tools/makefile.ctrpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/makefile.ctrpp -------------------------------------------------------------------------------- /NT/tools/makefile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/makefile.def -------------------------------------------------------------------------------- /NT/tools/makefile.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/makefile.new -------------------------------------------------------------------------------- /NT/tools/makefile.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/makefile.plt -------------------------------------------------------------------------------- /NT/tools/makefile.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/makefile.sld -------------------------------------------------------------------------------- /NT/tools/makelist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/makelist.pl -------------------------------------------------------------------------------- /NT/tools/mergefiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/mergefiles.cmd -------------------------------------------------------------------------------- /NT/tools/mergefiles.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/mergefiles.pl -------------------------------------------------------------------------------- /NT/tools/missing.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/missing.cmd -------------------------------------------------------------------------------- /NT/tools/movelatest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/movelatest.cmd -------------------------------------------------------------------------------- /NT/tools/mppcmk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/mppcmk.inc -------------------------------------------------------------------------------- /NT/tools/ntenv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/ntenv.cmd -------------------------------------------------------------------------------- /NT/tools/ntnewver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/ntnewver.cmd -------------------------------------------------------------------------------- /NT/tools/ntsign.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/ntsign.cmd -------------------------------------------------------------------------------- /NT/tools/ntuser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/ntuser.cmd -------------------------------------------------------------------------------- /NT/tools/octobuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/octobuild.cmd -------------------------------------------------------------------------------- /NT/tools/openssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/openssl.txt -------------------------------------------------------------------------------- /NT/tools/oscdimg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/oscdimg.cmd -------------------------------------------------------------------------------- /NT/tools/parseargs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/parseargs.pm -------------------------------------------------------------------------------- /NT/tools/parsetable.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/parsetable.pm -------------------------------------------------------------------------------- /NT/tools/perlrefresh.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/perlrefresh.cmd -------------------------------------------------------------------------------- /NT/tools/placefil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/placefil.txt -------------------------------------------------------------------------------- /NT/tools/populatefromvbl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/populatefromvbl.pl -------------------------------------------------------------------------------- /NT/tools/postbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/postbuild.cmd -------------------------------------------------------------------------------- /NT/tools/prebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/prebuild.cmd -------------------------------------------------------------------------------- /NT/tools/prodskus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/prodskus.txt -------------------------------------------------------------------------------- /NT/tools/projects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/projects.inc -------------------------------------------------------------------------------- /NT/tools/publicchanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/publicchanges.txt -------------------------------------------------------------------------------- /NT/tools/publish.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/publish.pl -------------------------------------------------------------------------------- /NT/tools/quickindex.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/quickindex.cmd -------------------------------------------------------------------------------- /NT/tools/razzle.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/razzle.cmd -------------------------------------------------------------------------------- /NT/tools/razzle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/razzle.ico -------------------------------------------------------------------------------- /NT/tools/razzle64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/razzle64.cmd -------------------------------------------------------------------------------- /NT/tools/readmejpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/readmejpeg.txt -------------------------------------------------------------------------------- /NT/tools/realsgn.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/realsgn.cmd -------------------------------------------------------------------------------- /NT/tools/registermtscript.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/registermtscript.cmd -------------------------------------------------------------------------------- /NT/tools/rel_con.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/rel_con.cmd -------------------------------------------------------------------------------- /NT/tools/relquality.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/relquality.pm -------------------------------------------------------------------------------- /NT/tools/replaybinplace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/replaybinplace.pl -------------------------------------------------------------------------------- /NT/tools/resign.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/resign.cmd -------------------------------------------------------------------------------- /NT/tools/revert_public.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/revert_public.cmd -------------------------------------------------------------------------------- /NT/tools/revert_public_bin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/revert_public_bin.cmd -------------------------------------------------------------------------------- /NT/tools/review.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/review.pl -------------------------------------------------------------------------------- /NT/tools/reviewd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/reviewd.cmd -------------------------------------------------------------------------------- /NT/tools/scorch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/scorch.pl -------------------------------------------------------------------------------- /NT/tools/sdbackup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdbackup.cmd -------------------------------------------------------------------------------- /NT/tools/sdcomp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdcomp.cmd -------------------------------------------------------------------------------- /NT/tools/sdmove.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdmove.cmd -------------------------------------------------------------------------------- /NT/tools/sdonline.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdonline.cmd -------------------------------------------------------------------------------- /NT/tools/sdout.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdout.cmd -------------------------------------------------------------------------------- /NT/tools/sdrefresh.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdrefresh.cmd -------------------------------------------------------------------------------- /NT/tools/sdrestore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdrestore.cmd -------------------------------------------------------------------------------- /NT/tools/sdview.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdview.cmd -------------------------------------------------------------------------------- /NT/tools/sdx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdx.cmd -------------------------------------------------------------------------------- /NT/tools/sdx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdx.pl -------------------------------------------------------------------------------- /NT/tools/sdx.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sdx.pm -------------------------------------------------------------------------------- /NT/tools/sendbuildstats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sendbuildstats.pl -------------------------------------------------------------------------------- /NT/tools/sendbuildstatslab7.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sendbuildstatslab7.pl -------------------------------------------------------------------------------- /NT/tools/sendmsg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sendmsg.pl -------------------------------------------------------------------------------- /NT/tools/setbuildstatus.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/setbuildstatus.cmd -------------------------------------------------------------------------------- /NT/tools/setbuildstatus.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/setbuildstatus.vbs -------------------------------------------------------------------------------- /NT/tools/shfusion2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/shfusion2.bat -------------------------------------------------------------------------------- /NT/tools/signtest.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/signtest.cat -------------------------------------------------------------------------------- /NT/tools/signtest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/signtest.cmd -------------------------------------------------------------------------------- /NT/tools/sldcompare.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sldcompare.pl -------------------------------------------------------------------------------- /NT/tools/sldmagic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sldmagic.pl -------------------------------------------------------------------------------- /NT/tools/sourceacl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sourceacl.txt -------------------------------------------------------------------------------- /NT/tools/srcwatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/srcwatch.pl -------------------------------------------------------------------------------- /NT/tools/staledfs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/staledfs.cmd -------------------------------------------------------------------------------- /NT/tools/submitloc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/submitloc.cmd -------------------------------------------------------------------------------- /NT/tools/submitnewpublicfiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/submitnewpublicfiles.cmd -------------------------------------------------------------------------------- /NT/tools/sxcopy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sxcopy.cmd -------------------------------------------------------------------------------- /NT/tools/sxs_msmgen.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sxs_msmgen.msm -------------------------------------------------------------------------------- /NT/tools/sxsversionsmk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/sxsversionsmk.inc -------------------------------------------------------------------------------- /NT/tools/symbad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/symbad.txt -------------------------------------------------------------------------------- /NT/tools/symbolswithtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/symbolswithtypes.txt -------------------------------------------------------------------------------- /NT/tools/symcatupd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/symcatupd.cmd -------------------------------------------------------------------------------- /NT/tools/symdontship.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/symdontship.txt -------------------------------------------------------------------------------- /NT/tools/symsrv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/symsrv.cmd -------------------------------------------------------------------------------- /NT/tools/syncbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/syncbuild.cmd -------------------------------------------------------------------------------- /NT/tools/synctree.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/synctree.pl -------------------------------------------------------------------------------- /NT/tools/system_defaultmk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/system_defaultmk.inc -------------------------------------------------------------------------------- /NT/tools/template.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/template.gml -------------------------------------------------------------------------------- /NT/tools/testpca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/testpca.cer -------------------------------------------------------------------------------- /NT/tools/testpca.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/testpca.conf -------------------------------------------------------------------------------- /NT/tools/testpca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/testpca.der -------------------------------------------------------------------------------- /NT/tools/testroot.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/testroot.cer -------------------------------------------------------------------------------- /NT/tools/testroot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/testroot.conf -------------------------------------------------------------------------------- /NT/tools/testroot.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/testroot.der -------------------------------------------------------------------------------- /NT/tools/tidy.bat: -------------------------------------------------------------------------------- 1 | @cscript /nologo %razzletoolpath%\tidy.js %* 2 | -------------------------------------------------------------------------------- /NT/tools/tidy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/tidy.js -------------------------------------------------------------------------------- /NT/tools/timebuild.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/timebuild.pl -------------------------------------------------------------------------------- /NT/tools/uniqfile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/uniqfile.cmd -------------------------------------------------------------------------------- /NT/tools/unlockxpfiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/unlockxpfiles.bat -------------------------------------------------------------------------------- /NT/tools/unrazzle.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/unrazzle.cmd -------------------------------------------------------------------------------- /NT/tools/updtnum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/updtnum.pl -------------------------------------------------------------------------------- /NT/tools/vbl03ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/vbl03ca.cer -------------------------------------------------------------------------------- /NT/tools/vbl03ca.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/vbl03ca.conf -------------------------------------------------------------------------------- /NT/tools/vbl03ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/vbl03ca.der -------------------------------------------------------------------------------- /NT/tools/verify.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/verify.src -------------------------------------------------------------------------------- /NT/tools/verifybuildmachine.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/verifybuildmachine.cmd -------------------------------------------------------------------------------- /NT/tools/verifysym.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/verifysym.cmd -------------------------------------------------------------------------------- /NT/tools/waitproc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/waitproc.pm -------------------------------------------------------------------------------- /NT/tools/webblade.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/webblade.pl -------------------------------------------------------------------------------- /NT/tools/whats.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/whats.cmd -------------------------------------------------------------------------------- /NT/tools/whocheckedin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/whocheckedin.pl -------------------------------------------------------------------------------- /NT/tools/widialog.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/widialog.vbs -------------------------------------------------------------------------------- /NT/tools/widiffdb.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/widiffdb.vbs -------------------------------------------------------------------------------- /NT/tools/wiexport.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wiexport.vbs -------------------------------------------------------------------------------- /NT/tools/wifeatur.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wifeatur.vbs -------------------------------------------------------------------------------- /NT/tools/wifilver.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wifilver.vbs -------------------------------------------------------------------------------- /NT/tools/wigenxfm.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wigenxfm.vbs -------------------------------------------------------------------------------- /NT/tools/wiimport.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wiimport.vbs -------------------------------------------------------------------------------- /NT/tools/wilangid.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wilangid.vbs -------------------------------------------------------------------------------- /NT/tools/wilstprd.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wilstprd.vbs -------------------------------------------------------------------------------- /NT/tools/wilstscr.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wilstscr.vbs -------------------------------------------------------------------------------- /NT/tools/wilstxfm.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wilstxfm.vbs -------------------------------------------------------------------------------- /NT/tools/wimakadmtcab.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wimakadmtcab.vbs -------------------------------------------------------------------------------- /NT/tools/wimakcab.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wimakcab.vbs -------------------------------------------------------------------------------- /NT/tools/wimerge.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wimerge.vbs -------------------------------------------------------------------------------- /NT/tools/wimsmmerge.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wimsmmerge.vbs -------------------------------------------------------------------------------- /NT/tools/wipolicy.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wipolicy.vbs -------------------------------------------------------------------------------- /NT/tools/wirunsql.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wirunsql.vbs -------------------------------------------------------------------------------- /NT/tools/wistream.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wistream.vbs -------------------------------------------------------------------------------- /NT/tools/wisubstg.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wisubstg.vbs -------------------------------------------------------------------------------- /NT/tools/wisuminf.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wisuminf.vbs -------------------------------------------------------------------------------- /NT/tools/witextin.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/witextin.vbs -------------------------------------------------------------------------------- /NT/tools/witoansi.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/witoansi.vbs -------------------------------------------------------------------------------- /NT/tools/wiusexfm.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wiusexfm.vbs -------------------------------------------------------------------------------- /NT/tools/wmife.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wmife.pm -------------------------------------------------------------------------------- /NT/tools/wppconfig/rev1/mof.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/wppconfig/rev1/mof.tpl -------------------------------------------------------------------------------- /NT/tools/xcopy2binplace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/xcopy2binplace.pl -------------------------------------------------------------------------------- /NT/tools/xpfiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/tools/xpfiles.bat -------------------------------------------------------------------------------- /NT/xboxkrnl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/NT/xboxkrnl.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechTech512/Win11Src/HEAD/README.md --------------------------------------------------------------------------------