├── README.md └── WRK-v1.2 ├── WIN-VFS.ppt ├── base ├── inc │ └── ntdlltrc.h └── ntos │ ├── PROJECTS.DB3 │ ├── build │ ├── makefile │ ├── makefile.build │ ├── obji386 │ │ ├── cache.lib │ │ ├── config.lib │ │ ├── dbgk.lib │ │ ├── ex.lib │ │ ├── fsrtl.lib │ │ ├── fstub.lib │ │ ├── init.lib │ │ ├── io.lib │ │ ├── iomgr.lib │ │ ├── ke.lib │ │ ├── lpc.lib │ │ ├── mm.lib │ │ ├── ntosrtl.lib │ │ ├── ntosse.lib │ │ ├── ob.lib │ │ ├── perf.lib │ │ ├── ps.lib │ │ ├── raw.lib │ │ └── wmi.lib │ ├── prebuilt │ │ ├── amd64 │ │ │ ├── bootvid.lib │ │ │ ├── hal.lib │ │ │ ├── hotpatch.obj │ │ │ ├── kdcom.lib │ │ │ ├── ntosarch.lib │ │ │ ├── ntoskrnl.res │ │ │ ├── ntoswrk.lib │ │ │ └── sdbapint.lib │ │ └── i386 │ │ │ ├── bootvid.lib │ │ │ ├── hal.lib │ │ │ ├── kdcom.lib │ │ │ ├── ntosarch.lib │ │ │ ├── ntoskrnl.res │ │ │ ├── ntoswrk.lib │ │ │ ├── sdbapint.lib │ │ │ └── stub512.com │ └── warning.h │ ├── cache │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── cachedat.obj │ │ │ ├── cachesub.obj │ │ │ ├── ccperf.obj │ │ │ ├── copysup.obj │ │ │ ├── fssup.obj │ │ │ ├── lazyrite.obj │ │ │ ├── logsup.obj │ │ │ ├── mdlsup.obj │ │ │ ├── pinsup.obj │ │ │ └── vacbsup.obj │ ├── cachedat.c │ ├── cachesub.c │ ├── cc.h │ ├── ccperf.c │ ├── copysup.c │ ├── fssup.c │ ├── lazyrite.c │ ├── logsup.c │ ├── mdlsup.c │ ├── pinsup.c │ └── vacbsup.c │ ├── config │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── cmalloc.obj │ │ │ ├── cmapi.obj │ │ │ ├── cmapi2.obj │ │ │ ├── cmboot.obj │ │ │ ├── cmchek.obj │ │ │ ├── cmchek2.obj │ │ │ ├── cmclose.obj │ │ │ ├── cmconfig.obj │ │ │ ├── cmcontrl.obj │ │ │ ├── cmdat.obj │ │ │ ├── cmdat2.obj │ │ │ ├── cmdatini.obj │ │ │ ├── cmdelay.obj │ │ │ ├── cmdelete.obj │ │ │ ├── cmdown.obj │ │ │ ├── cmgquota.obj │ │ │ ├── cmhook.obj │ │ │ ├── cmhvlist.obj │ │ │ ├── cmindex.obj │ │ │ ├── cminit.obj │ │ │ ├── cmmapvw.obj │ │ │ ├── cmname.obj │ │ │ ├── cmnotify.obj │ │ │ ├── cmparse.obj │ │ │ ├── cmparse2.obj │ │ │ ├── cmquery.obj │ │ │ ├── cmsavres.obj │ │ │ ├── cmse.obj │ │ │ ├── cmsecache.obj │ │ │ ├── cmsubs.obj │ │ │ ├── cmsubs2.obj │ │ │ ├── cmsubs3.obj │ │ │ ├── cmsysini.obj │ │ │ ├── cmtrecpy.obj │ │ │ ├── cmtredel.obj │ │ │ ├── cmtree.obj │ │ │ ├── cmvalue.obj │ │ │ ├── cmwmi.obj │ │ │ ├── cmworker.obj │ │ │ ├── cmwrapr.obj │ │ │ ├── cmwrapr2.obj │ │ │ ├── hivebin.obj │ │ │ ├── hivecell.obj │ │ │ ├── hivechek.obj │ │ │ ├── hivefree.obj │ │ │ ├── hivehint.obj │ │ │ ├── hiveinit.obj │ │ │ ├── hiveload.obj │ │ │ ├── hivemap.obj │ │ │ ├── hivesum.obj │ │ │ ├── hivesync.obj │ │ │ └── ntapi.obj │ ├── cmalloc.c │ ├── cmapi.c │ ├── cmapi2.c │ ├── cmboot.c │ ├── cmchek.c │ ├── cmchek2.c │ ├── cmclose.c │ ├── cmconfig.c │ ├── cmcontrl.c │ ├── cmdat.c │ ├── cmdat2.c │ ├── cmdatini.c │ ├── cmdelay.c │ ├── cmdelete.c │ ├── cmdown.c │ ├── cmgquota.c │ ├── cmhook.c │ ├── cmhvlist.c │ ├── cmindex.c │ ├── cminit.c │ ├── cmmapvw.c │ ├── cmname.c │ ├── cmnotify.c │ ├── cmp.h │ ├── cmparse.c │ ├── cmparse2.c │ ├── cmpbug.h │ ├── cmquery.c │ ├── cmsavres.c │ ├── cmse.c │ ├── cmsecache.c │ ├── cmsubs.c │ ├── cmsubs2.c │ ├── cmsubs3.c │ ├── cmsysini.c │ ├── cmtrecpy.c │ ├── cmtredel.c │ ├── cmtree.c │ ├── cmvalue.c │ ├── cmwmi.c │ ├── cmworker.c │ ├── cmwrapr.c │ ├── cmwrapr2.c │ ├── hive.h │ ├── hivebin.c │ ├── hivecell.c │ ├── hivechek.c │ ├── hivefree.c │ ├── hivehint.c │ ├── hiveinit.c │ ├── hiveload.c │ ├── hivemap.c │ ├── hivesum.c │ ├── hivesync.c │ └── ntapi.c │ ├── dbgk │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── dbgkobj.obj │ │ │ ├── dbgkport.obj │ │ │ └── dbgkproc.obj │ ├── dbgkobj.c │ ├── dbgkp.h │ ├── dbgkport.c │ └── dbgkproc.c │ ├── ex │ ├── amd64 │ │ ├── hifreqlk.asm │ │ ├── hrderror.asm │ │ ├── intrlock.asm │ │ └── wowinfo.c │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── callback.obj │ │ │ ├── callperf.obj │ │ │ ├── delay.obj │ │ │ ├── event.obj │ │ │ ├── eventpr.obj │ │ │ ├── exatom.obj │ │ │ ├── exdata.obj │ │ │ ├── exinit.obj │ │ │ ├── fmutexc.obj │ │ │ ├── handle.obj │ │ │ ├── harderr.obj │ │ │ ├── intrlfst.obj │ │ │ ├── intrlock.obj │ │ │ ├── keyedevent.obj │ │ │ ├── lookasid.obj │ │ │ ├── luid.obj │ │ │ ├── mutant.obj │ │ │ ├── nbqueue.obj │ │ │ ├── pool.obj │ │ │ ├── probe.obj │ │ │ ├── profile.obj │ │ │ ├── pushlock.obj │ │ │ ├── raise.obj │ │ │ ├── resource.obj │ │ │ ├── rundown.obj │ │ │ ├── semphore.obj │ │ │ ├── splocks.obj │ │ │ ├── sysinfo.obj │ │ │ ├── timer.obj │ │ │ ├── uuid.obj │ │ │ ├── win32.obj │ │ │ ├── worker.obj │ │ │ └── zone.obj │ ├── callback.c │ ├── callperf.c │ ├── delay.c │ ├── event.c │ ├── eventpr.c │ ├── exatom.c │ ├── exdata.c │ ├── exinit.c │ ├── exp.h │ ├── fmutexc.c │ ├── handle.c │ ├── harderr.c │ ├── i386 │ │ ├── intrlfst.asm │ │ ├── intrlock.asm │ │ └── splocks.asm │ ├── keyedevent.c │ ├── lookasid.c │ ├── luid.c │ ├── mutant.c │ ├── nbqueue.c │ ├── pool.c │ ├── probe.c │ ├── profile.c │ ├── pushlock.c │ ├── raise.c │ ├── resource.c │ ├── rundown.c │ ├── semphore.c │ ├── sysinfo.c │ ├── timer.c │ ├── uuid.c │ ├── win32.c │ ├── worker.c │ └── zone.c │ ├── fsrtl │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── DbcsName.obj │ │ │ ├── FastIo.obj │ │ │ ├── FaultTol.obj │ │ │ ├── FileLock.obj │ │ │ ├── Filter.obj │ │ │ ├── FiltrCtx.obj │ │ │ ├── FsFilter.obj │ │ │ ├── FsRtlPc.obj │ │ │ ├── LargeMcb.obj │ │ │ ├── Name.obj │ │ │ ├── Notify.obj │ │ │ ├── Oplock.obj │ │ │ ├── PnP.obj │ │ │ ├── StackOvf.obj │ │ │ ├── Tunnel.obj │ │ │ └── Unc.obj │ ├── dbcsname.c │ ├── fastio.c │ ├── faulttol.c │ ├── filelock.c │ ├── filter.c │ ├── filtrctx.c │ ├── fsfilter.c │ ├── fsrtlp.h │ ├── fsrtlpc.c │ ├── largemcb.c │ ├── name.c │ ├── notify.c │ ├── oplock.c │ ├── pnp.c │ ├── stackovf.c │ ├── tunnel.c │ └── unc.c │ ├── fstub │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ └── drivesup.obj │ ├── drivesup.c │ ├── drivesup.h │ ├── fstub.h │ └── haldisp.h │ ├── inc │ ├── amd64.h │ ├── cache.h │ ├── cm.h │ ├── cmdata.h │ ├── cpyuchr.h │ ├── dbgk.h │ ├── dockintf.h │ ├── em387.inc │ ├── ex.h │ ├── exboosts.h │ ├── exlevels.h │ ├── fastsys.inc │ ├── fsrtl.h │ ├── hal.h │ ├── hivedata.h │ ├── i386.h │ ├── init.h │ ├── intrlk.h │ ├── io.h │ ├── irqli386.inc │ ├── kd.h │ ├── kddll.h │ ├── ke.h │ ├── kx.h │ ├── lfs.h │ ├── lpc.h │ ├── mac386.inc │ ├── mm.h │ ├── ntos.h │ ├── ntosdef.h │ ├── ob.h │ ├── perf.h │ ├── pnp.h │ ├── po.h │ ├── pool.h │ ├── procpowr.h │ ├── ps.h │ ├── se.h │ ├── smbios.h │ ├── stktrace.h │ ├── v86emul.h │ ├── vdmntos.h │ ├── verifier.h │ └── wmi.h │ ├── init │ ├── amd64def.src │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── initos.obj │ │ │ └── ntkrnlmp.obj │ ├── i386def.src │ ├── initos.c │ ├── ntkrnlmp.c │ ├── ntoskrnl.c │ └── ntoskrnl.src │ ├── io │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ └── ioguid.obj │ ├── ioguid.c │ ├── iomgr │ │ ├── build │ │ │ ├── makefile │ │ │ └── obji386 │ │ │ │ ├── cancelapi.obj │ │ │ │ ├── complete.obj │ │ │ │ ├── create.obj │ │ │ │ ├── dev2dos.obj │ │ │ │ ├── devctrl.obj │ │ │ │ ├── dir.obj │ │ │ │ ├── errorlog.obj │ │ │ │ ├── fsctrl.obj │ │ │ │ ├── internal.obj │ │ │ │ ├── iodata.obj │ │ │ │ ├── ioinit.obj │ │ │ │ ├── iosubs.obj │ │ │ │ ├── loadunld.obj │ │ │ │ ├── lock.obj │ │ │ │ ├── misc.obj │ │ │ │ ├── objsup.obj │ │ │ │ ├── open.obj │ │ │ │ ├── parse.obj │ │ │ │ ├── qsea.obj │ │ │ │ ├── qsfs.obj │ │ │ │ ├── qsinfo.obj │ │ │ │ ├── qsquota.obj │ │ │ │ ├── read.obj │ │ │ │ └── write.obj │ │ ├── cancelapi.c │ │ ├── complete.c │ │ ├── create.c │ │ ├── dev2dos.c │ │ ├── devctrl.c │ │ ├── dir.c │ │ ├── errorlog.c │ │ ├── fsctrl.c │ │ ├── internal.c │ │ ├── iodata.c │ │ ├── ioinit.c │ │ ├── iomgr.h │ │ ├── iosubs.c │ │ ├── loadunld.c │ │ ├── lock.c │ │ ├── misc.c │ │ ├── objsup.c │ │ ├── open.c │ │ ├── parse.c │ │ ├── qsea.c │ │ ├── qsfs.c │ │ ├── qsinfo.c │ │ ├── qsquota.c │ │ ├── read.c │ │ └── write.c │ ├── iop.h │ ├── iopcmn.h │ ├── ioverifier.h │ ├── iovutil.h │ ├── pnpmgr │ │ ├── pplastgood.h │ │ └── ppvutil.h │ ├── sessnirp.h │ └── trackirp.h │ ├── ke │ ├── amd64 │ │ ├── allproc.c │ │ ├── apcint.asm │ │ ├── apcuser.c │ │ ├── callback.c │ │ ├── callout.asm │ │ ├── clockint.asm │ │ ├── cpuid.asm │ │ ├── ctxswap.asm │ │ ├── decode.c │ │ ├── dpcint.asm │ │ ├── exceptn.c │ │ ├── flush.c │ │ ├── flushtb.c │ │ ├── idle.asm │ │ ├── initkr.c │ │ ├── intipi.asm │ │ ├── intobj.c │ │ ├── intsup.asm │ │ ├── ipi.c │ │ ├── kiamd64.h │ │ ├── misc.c │ │ ├── miscs.asm │ │ ├── pat.c │ │ ├── procstat.asm │ │ ├── profint.asm │ │ ├── queuelock.c │ │ ├── runtime.c │ │ ├── services.stb │ │ ├── services.tab │ │ ├── spinlock.c │ │ ├── start.asm │ │ ├── sysstubs.asm │ │ ├── systable.asm │ │ ├── table.stb │ │ ├── threadbg.asm │ │ ├── thredini.c │ │ ├── trap.asm │ │ └── zero.asm │ ├── apcobj.c │ ├── apcsup.c │ ├── balmgr.c │ ├── bugcheck.c │ ├── build │ │ ├── makefile │ │ ├── makefile.bak │ │ └── obji386 │ │ │ ├── abiosa.obj │ │ │ ├── abiosc.obj │ │ │ ├── allproc.obj │ │ │ ├── apcobj.obj │ │ │ ├── apcsup.obj │ │ │ ├── apcuser.obj │ │ │ ├── balmgr.obj │ │ │ ├── biosc.obj │ │ │ ├── bugcheck.obj │ │ │ ├── callback.obj │ │ │ ├── callout.obj │ │ │ ├── clockint.obj │ │ │ ├── config.obj │ │ │ ├── cpu.obj │ │ │ ├── ctxswap.obj │ │ │ ├── debug.obj │ │ │ ├── devquobj.obj │ │ │ ├── dpclock.obj │ │ │ ├── dpcobj.obj │ │ │ ├── dpcsup.obj │ │ │ ├── emv86.obj │ │ │ ├── emxcptn.obj │ │ │ ├── eventobj.obj │ │ │ ├── exceptn.obj │ │ │ ├── flush.obj │ │ │ ├── flushtb.obj │ │ │ ├── gateobj.obj │ │ │ ├── gdtsup.obj │ │ │ ├── hifreqlk.obj │ │ │ ├── i386init.obj │ │ │ ├── i386pcr.obj │ │ │ ├── idsched.obj │ │ │ ├── instemul.obj │ │ │ ├── int.obj │ │ │ ├── interobj.obj │ │ │ ├── intobj.obj │ │ │ ├── intsup.obj │ │ │ ├── iopm.obj │ │ │ ├── kernldat.obj │ │ │ ├── kernlini.obj │ │ │ ├── kevutil.obj │ │ │ ├── kiinit.obj │ │ │ ├── largepag.obj │ │ │ ├── ldtsup.obj │ │ │ ├── ldtsup2.obj │ │ │ ├── misc.obj │ │ │ ├── miscc.obj │ │ │ ├── mpipia.obj │ │ │ ├── mtrr.obj │ │ │ ├── mtrramd.obj │ │ │ ├── mutntobj.obj │ │ │ ├── newsysbg.obj │ │ │ ├── pat.obj │ │ │ ├── procobj.obj │ │ │ ├── procstat.obj │ │ │ ├── profobj.obj │ │ │ ├── queueobj.obj │ │ │ ├── raisexcp.obj │ │ │ ├── semphobj.obj │ │ │ ├── spindbg.obj │ │ │ ├── spinlock.obj │ │ │ ├── sysstubs.obj │ │ │ ├── systable.obj │ │ │ ├── thkemul.obj │ │ │ ├── threadbg.obj │ │ │ ├── thredini.obj │ │ │ ├── thredobj.obj │ │ │ ├── thredsup.obj │ │ │ ├── timerobj.obj │ │ │ ├── timersup.obj │ │ │ ├── timindex.obj │ │ │ ├── trap.obj │ │ │ ├── trapc.obj │ │ │ ├── wait.obj │ │ │ ├── waitsup.obj │ │ │ ├── xipi.obj │ │ │ ├── yield.obj │ │ │ └── zero.obj │ ├── config.c │ ├── debug.c │ ├── devquobj.c │ ├── dpclock.c │ ├── dpcobj.c │ ├── dpcsup.c │ ├── eventobj.c │ ├── gateobj.c │ ├── genxx.inc │ ├── hifreqlk.c │ ├── i386 │ │ ├── abios.h │ │ ├── abiosa.asm │ │ ├── abiosc.c │ │ ├── allproc.c │ │ ├── apcuser.c │ │ ├── biosc.c │ │ ├── callback.c │ │ ├── callout.asm │ │ ├── clockint.asm │ │ ├── cpu.asm │ │ ├── cpu.inc │ │ ├── ctxswap.asm │ │ ├── emv86.asm │ │ ├── emxcptn.asm │ │ ├── exceptn.c │ │ ├── flush.c │ │ ├── flushtb.c │ │ ├── gdtsup.c │ │ ├── i386init.c │ │ ├── i386pcr.asm │ │ ├── idsched.asm │ │ ├── instemul.asm │ │ ├── int.asm │ │ ├── intobj.c │ │ ├── intsup.asm │ │ ├── iopm.c │ │ ├── kernlini.c │ │ ├── kimacro.inc │ │ ├── kix86.h │ │ ├── largepag.c │ │ ├── ldtsup.c │ │ ├── ldtsup2.asm │ │ ├── mi.inc │ │ ├── misc.c │ │ ├── mpipia.asm │ │ ├── mtrr.c │ │ ├── mtrr.h │ │ ├── mtrramd.c │ │ ├── newsysbg.asm │ │ ├── pat.c │ │ ├── pat.h │ │ ├── procstat.asm │ │ ├── services.stb │ │ ├── services.tab │ │ ├── spindbg.asm │ │ ├── spinlock.asm │ │ ├── sysstubs.asm │ │ ├── systable.asm │ │ ├── table.stb │ │ ├── threadbg.asm │ │ ├── thredini.c │ │ ├── timindex.asm │ │ ├── trap.asm │ │ ├── trapc.c │ │ └── zero.asm │ ├── interobj.c │ ├── kernldat.c │ ├── kevutil.c │ ├── ki.h │ ├── kiinit.c │ ├── miscc.c │ ├── mutntobj.c │ ├── procobj.c │ ├── profobj.c │ ├── queueobj.c │ ├── raisexcp.c │ ├── semphobj.c │ ├── thkemul.c │ ├── thredobj.c │ ├── thredsup.c │ ├── timerobj.c │ ├── timersup.c │ ├── wait.c │ ├── waitsup.c │ ├── xipi.c │ └── yield.c │ ├── lpc │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── lpcclose.obj │ │ │ ├── lpccompl.obj │ │ │ ├── lpcconn.obj │ │ │ ├── lpccreat.obj │ │ │ ├── lpcinit.obj │ │ │ ├── lpclistn.obj │ │ │ ├── lpcmove.obj │ │ │ ├── lpcpriv.obj │ │ │ ├── lpcquery.obj │ │ │ ├── lpcqueue.obj │ │ │ ├── lpcrecv.obj │ │ │ ├── lpcreply.obj │ │ │ └── lpcsend.obj │ ├── i386 │ │ └── lpcmove.asm │ ├── lpcclose.c │ ├── lpccompl.c │ ├── lpcconn.c │ ├── lpccreat.c │ ├── lpcinit.c │ ├── lpclistn.c │ ├── lpcp.h │ ├── lpcpriv.c │ ├── lpcquery.c │ ├── lpcqueue.c │ ├── lpcrecv.c │ ├── lpcreply.c │ └── lpcsend.c │ ├── makefile │ ├── mm │ ├── acceschk.c │ ├── addrsup.c │ ├── allocpag.c │ ├── allocvm.c │ ├── amd64 │ │ ├── dataamd.c │ │ ├── initamd.c │ │ └── miamd.h │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── acceschk.obj │ │ │ ├── addrsup.obj │ │ │ ├── allocpag.obj │ │ │ ├── allocvm.obj │ │ │ ├── buildmdl.obj │ │ │ ├── creasect.obj │ │ │ ├── data386.obj │ │ │ ├── deleteva.obj │ │ │ ├── dmpaddr.obj │ │ │ ├── extsect.obj │ │ │ ├── flushbuf.obj │ │ │ ├── flushsec.obj │ │ │ ├── forksup.obj │ │ │ ├── freevm.obj │ │ │ ├── hypermap.obj │ │ │ ├── init386.obj │ │ │ ├── iosup.obj │ │ │ ├── lockvm.obj │ │ │ ├── mapcache.obj │ │ │ ├── mapview.obj │ │ │ ├── miglobal.obj │ │ │ ├── mmfault.obj │ │ │ ├── mminit.obj │ │ │ ├── mmquota.obj │ │ │ ├── mmsup.obj │ │ │ ├── modwrite.obj │ │ │ ├── pae.obj │ │ │ ├── paesup.obj │ │ │ ├── pagfault.obj │ │ │ ├── pfndec.obj │ │ │ ├── pfnlist.obj │ │ │ ├── physical.obj │ │ │ ├── procpae.obj │ │ │ ├── procsup.obj │ │ │ ├── procx86.obj │ │ │ ├── protect.obj │ │ │ ├── querysec.obj │ │ │ ├── queryvm.obj │ │ │ ├── readwrt.obj │ │ │ ├── sectsup.obj │ │ │ ├── session.obj │ │ │ ├── sessload.obj │ │ │ ├── setmodfy.obj │ │ │ ├── shutdown.obj │ │ │ ├── sysload.obj │ │ │ ├── sysptes.obj │ │ │ ├── umapview.obj │ │ │ ├── vadtree.obj │ │ │ ├── wrtfault.obj │ │ │ ├── wrtwatch.obj │ │ │ ├── wslist.obj │ │ │ ├── wsmanage.obj │ │ │ ├── wstree.obj │ │ │ └── zeropage.obj │ ├── buildmdl.c │ ├── creasect.c │ ├── deleteva.c │ ├── dmpaddr.c │ ├── extsect.c │ ├── flushbuf.c │ ├── flushsec.c │ ├── forksup.c │ ├── freevm.c │ ├── hypermap.c │ ├── i386 │ │ ├── data386.c │ │ ├── init386.c │ │ ├── mi386.h │ │ ├── pae.asm │ │ ├── paesup.c │ │ ├── procpae.c │ │ ├── procx86.c │ │ └── setmodfy.c │ ├── iosup.c │ ├── lockvm.c │ ├── mapcache.c │ ├── mapview.c │ ├── mi.h │ ├── miglobal.c │ ├── mmfault.c │ ├── mminit.c │ ├── mmquota.c │ ├── mmsup.c │ ├── modwrite.c │ ├── pagfault.c │ ├── pfndec.c │ ├── pfnlist.c │ ├── physical.c │ ├── procsup.c │ ├── protect.c │ ├── querysec.c │ ├── queryvm.c │ ├── readwrt.c │ ├── sectsup.c │ ├── session.c │ ├── sessload.c │ ├── shutdown.c │ ├── sysload.c │ ├── sysptes.c │ ├── umapview.c │ ├── vadtree.c │ ├── wrtfault.c │ ├── wrtwatch.c │ ├── wslist.c │ ├── wsmanage.c │ ├── wstree.c │ └── zeropage.c │ ├── ob │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── fastref.obj │ │ │ ├── obclose.obj │ │ │ ├── obcreate.obj │ │ │ ├── obdevmap.obj │ │ │ ├── obdir.obj │ │ │ ├── obhandle.obj │ │ │ ├── obinit.obj │ │ │ ├── obinsert.obj │ │ │ ├── oblink.obj │ │ │ ├── obquery.obj │ │ │ ├── obref.obj │ │ │ ├── obsdata.obj │ │ │ ├── obse.obj │ │ │ ├── obtype.obj │ │ │ └── obwait.obj │ ├── fastref.c │ ├── obclose.c │ ├── obcreate.c │ ├── obdevmap.c │ ├── obdir.c │ ├── obhandle.c │ ├── obinit.c │ ├── obinsert.c │ ├── oblink.c │ ├── obp.h │ ├── obquery.c │ ├── obref.c │ ├── obsdata.c │ ├── obse.c │ ├── obtype.c │ ├── obvutil.h │ └── obwait.c │ ├── perf │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── hooks.obj │ │ │ ├── logging.obj │ │ │ ├── perfdata.obj │ │ │ └── perfsup.obj │ ├── hooks.c │ ├── logging.c │ ├── perfdata.c │ ├── perfp.h │ └── perfsup.c │ ├── ps │ ├── amd64 │ │ ├── psctxamd64.c │ │ ├── psctxwrap.asm │ │ ├── psldt.c │ │ └── psvdm.c │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── create.obj │ │ │ ├── kulookup.obj │ │ │ ├── pscid.obj │ │ │ ├── psctx.obj │ │ │ ├── psctx386.obj │ │ │ ├── psdelete.obj │ │ │ ├── psenum.obj │ │ │ ├── pshelper.obj │ │ │ ├── psimpers.obj │ │ │ ├── psinit.obj │ │ │ ├── psjob.obj │ │ │ ├── psldt.obj │ │ │ ├── psopen.obj │ │ │ ├── psquery.obj │ │ │ ├── psquota.obj │ │ │ ├── psspnd.obj │ │ │ ├── psvdm.obj │ │ │ └── security.obj │ ├── create.c │ ├── i386 │ │ ├── psctx386.c │ │ ├── psldt.c │ │ └── psvdm.c │ ├── kulookup.c │ ├── pscid.c │ ├── psctx.c │ ├── psdelete.c │ ├── psenum.c │ ├── pshelper.c │ ├── psimpers.c │ ├── psinit.c │ ├── psjob.c │ ├── psopen.c │ ├── psp.h │ ├── psquery.c │ ├── psquota.c │ ├── psspnd.c │ └── security.c │ ├── raw │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── Cleanup.obj │ │ │ ├── Close.obj │ │ │ ├── Create.obj │ │ │ ├── FileInfo.obj │ │ │ ├── FsCtrl.obj │ │ │ ├── RawDisp.obj │ │ │ ├── RawInit.obj │ │ │ ├── ReadWrit.obj │ │ │ ├── StrucSup.obj │ │ │ └── VolInfo.obj │ ├── cleanup.c │ ├── close.c │ ├── create.c │ ├── fileinfo.c │ ├── fsctrl.c │ ├── nodetype.h │ ├── rawdisp.c │ ├── rawinit.c │ ├── rawprocs.h │ ├── rawstruc.h │ ├── readwrit.c │ ├── strucsup.c │ └── volinfo.c │ ├── rtl │ ├── acledit.c │ ├── add2stra.c │ ├── add2strt.h │ ├── add2strw.c │ ├── amd64 │ │ ├── capture.asm │ │ ├── chkstk.asm │ │ ├── context.c │ │ ├── debugstb.asm │ │ ├── exdsptch.c │ │ ├── misalign.c │ │ ├── movemem.asm │ │ ├── ntrtlamd64.h │ │ ├── raise.c │ │ ├── slist.asm │ │ ├── stkwalk.c │ │ └── xcptmisc.asm │ ├── assert.c │ ├── atom.c │ ├── avltable.c │ ├── bitmap.c │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── acledit.obj │ │ │ ├── add2stra.obj │ │ │ ├── add2strw.obj │ │ │ ├── assert.obj │ │ │ ├── atom.obj │ │ │ ├── avltable.obj │ │ │ ├── bitmap.obj │ │ │ ├── byteswap.obj │ │ │ ├── cnvint.obj │ │ │ ├── context.obj │ │ │ ├── debug.obj │ │ │ ├── debug2.obj │ │ │ ├── debug3.obj │ │ │ ├── divlarge.obj │ │ │ ├── eballoc.obj │ │ │ ├── environ.obj │ │ │ ├── error.obj │ │ │ ├── excptdbg.obj │ │ │ ├── exdsptch.obj │ │ │ ├── gentable.obj │ │ │ ├── getcalr.obj │ │ │ ├── guid.obj │ │ │ ├── imagedir.obj │ │ │ ├── intbits.obj │ │ │ ├── ioaccess.obj │ │ │ ├── largeint.obj │ │ │ ├── ldrreloc.obj │ │ │ ├── ldrrsrc.obj │ │ │ ├── lookup.obj │ │ │ ├── message.obj │ │ │ ├── movemem.obj │ │ │ ├── nls.obj │ │ │ ├── nlsxlat.obj │ │ │ ├── pctohdr.obj │ │ │ ├── peb.obj │ │ │ ├── prefix.obj │ │ │ ├── raise.obj │ │ │ ├── regutil.obj │ │ │ ├── rtlassig.obj │ │ │ ├── rtldata.obj │ │ │ ├── rtlexec.obj │ │ │ ├── rtlnthdr.obj │ │ │ ├── sertl.obj │ │ │ ├── slist.obj │ │ │ ├── splay.obj │ │ │ ├── stktrace.obj │ │ │ ├── stkwalk.obj │ │ │ ├── str2adda.obj │ │ │ ├── str2addw.obj │ │ │ ├── string.obj │ │ │ ├── stringsp.obj │ │ │ ├── sysvol.obj │ │ │ ├── time.obj │ │ │ ├── tracedb.obj │ │ │ └── xcptmisc.obj │ ├── byteswap.c │ ├── cnvint.c │ ├── debug.c │ ├── eballoc.c │ ├── environ.c │ ├── error.c │ ├── error.h │ ├── excptdbg.c │ ├── generr.c │ ├── gentable.c │ ├── guid.c │ ├── i386 │ │ ├── context.c │ │ ├── debug2.asm │ │ ├── debug3.c │ │ ├── divlarge.c │ │ ├── exdsptch.c │ │ ├── getcalr.c │ │ ├── ioaccess.asm │ │ ├── largeint.asm │ │ ├── movemem.asm │ │ ├── ntrtl386.h │ │ ├── raise.asm │ │ ├── slist.asm │ │ ├── stkwalk.asm │ │ ├── stringsp.asm │ │ └── xcptmisc.asm │ ├── imagedir.c │ ├── intbits.c │ ├── ldrreloc.c │ ├── ldrrsrc.c │ ├── lookup.c │ ├── message.c │ ├── mp │ ├── nls.c │ ├── nlsxlat.c │ ├── ntrtlp.h │ ├── pctohdr.c │ ├── peb.c │ ├── prefix.c │ ├── regutil.c │ ├── rtlassig.c │ ├── rtldata.c │ ├── rtlexec.c │ ├── rtlnthdr.c │ ├── sertl.c │ ├── splay.c │ ├── stktrace.c │ ├── str2adda.c │ ├── str2addt.h │ ├── str2addw.c │ ├── string.c │ ├── sysvol.c │ ├── time.c │ ├── tracedb.c │ └── tracedbp.h │ ├── se │ ├── accessck.c │ ├── adt.h │ ├── adtinit.c │ ├── adtlog.c │ ├── adtp.h │ ├── adtutil.c │ ├── adtutil.h │ ├── adtvars.c │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── accessck.obj │ │ │ ├── adtinit.obj │ │ │ ├── adtlog.obj │ │ │ ├── adtutil.obj │ │ │ ├── adtvars.obj │ │ │ ├── capture.obj │ │ │ ├── privileg.obj │ │ │ ├── rmaudit.obj │ │ │ ├── rmlogon.obj │ │ │ ├── rmmain.obj │ │ │ ├── rmvars.obj │ │ │ ├── seassign.obj │ │ │ ├── seastate.obj │ │ │ ├── seaudit.obj │ │ │ ├── seclient.obj │ │ │ ├── seglobal.obj │ │ │ ├── seinit.obj │ │ │ ├── semethod.obj │ │ │ ├── sep.obj │ │ │ ├── sepaudit.obj │ │ │ ├── subject.obj │ │ │ ├── token.obj │ │ │ ├── tokenadj.obj │ │ │ ├── tokendup.obj │ │ │ ├── tokenopn.obj │ │ │ ├── tokenqry.obj │ │ │ └── tokenset.obj │ ├── capture.c │ ├── pch.h │ ├── privileg.c │ ├── rmaudit.c │ ├── rmlogon.c │ ├── rmmain.c │ ├── rmp.h │ ├── rmvars.c │ ├── seassign.c │ ├── seastate.c │ ├── seaudit.c │ ├── seclient.c │ ├── seglobal.c │ ├── seinit.c │ ├── semethod.c │ ├── sep.c │ ├── sep.h │ ├── sepaudit.c │ ├── subject.c │ ├── token.c │ ├── tokenadj.c │ ├── tokendup.c │ ├── tokenopn.c │ ├── tokenp.h │ ├── tokenqry.c │ └── tokenset.c │ ├── vdm │ └── i386 │ │ └── vdm.inc │ ├── verifier │ ├── halverifier.h │ ├── vfbugcheck.h │ ├── vfddi.h │ ├── vfdeadlock.h │ ├── vfdebug.h │ ├── vfdef.h │ ├── vfdevobj.h │ ├── vffilter.h │ ├── vfgeneric.h │ ├── vfinit.h │ ├── vfirp.h │ ├── vfirpdb.h │ ├── vfirplog.h │ ├── vfmacro.h │ ├── vfmajor.h │ ├── vfmessage.h │ ├── vfpacket.h │ ├── vfpnp.h │ ├── vfpower.h │ ├── vfpragma.h │ ├── vfprint.h │ ├── vfrandom.h │ ├── vfsettings.h │ ├── vfstack.h │ ├── vftriage.h │ ├── vfutil.h │ ├── vfwmi.h │ └── vfzwapi.h │ ├── wmi │ ├── alloc.c │ ├── amd64 │ │ └── mcaevent.c │ ├── api.c │ ├── build │ │ ├── makefile │ │ └── obji386 │ │ │ ├── alloc.obj │ │ │ ├── api.obj │ │ │ ├── callouts.obj │ │ │ ├── chunk.obj │ │ │ ├── consumer.obj │ │ │ ├── dataprov.obj │ │ │ ├── ds.obj │ │ │ ├── enabdisa.obj │ │ │ ├── globalog.obj │ │ │ ├── mca.obj │ │ │ ├── mcaevent.obj │ │ │ ├── notify.obj │ │ │ ├── provider.obj │ │ │ ├── register.obj │ │ │ ├── secure.obj │ │ │ ├── smbios.obj │ │ │ ├── traceapi.obj │ │ │ ├── tracelog.obj │ │ │ ├── tracesup.obj │ │ │ ├── wmi.obj │ │ │ └── wmidata.obj │ ├── callouts.c │ ├── chunk.c │ ├── consumer.c │ ├── dataprov.c │ ├── ds.c │ ├── enabdisa.c │ ├── globalog.c │ ├── i386 │ │ └── mcaevent.c │ ├── mca.c │ ├── mcaevent.h │ ├── notify.c │ ├── provider.c │ ├── register.c │ ├── secure.c │ ├── smbios.c │ ├── traceapi.c │ ├── tracelog.c │ ├── tracep.h │ ├── tracesup.c │ ├── wmi.c │ ├── wmidata.c │ ├── wmikmp.h │ └── wmiumds.h │ └── 目录.txt ├── public ├── ddk │ └── inc │ │ ├── mountdev.h │ │ └── ntddscsi.h ├── halkit │ └── inc │ │ ├── arccodes.h │ │ └── inbv.h ├── internal │ ├── base │ │ └── inc │ │ │ ├── arc.h │ │ │ ├── atom.h │ │ │ ├── bugcodes.txt │ │ │ ├── elfkrnl.h │ │ │ ├── hdlsblk.h │ │ │ ├── hdlsterm.h │ │ │ ├── ntperf.h │ │ │ ├── ntwmi.h │ │ │ ├── pnpmgr.h │ │ │ ├── pnpsetup.h │ │ │ ├── profiles.h │ │ │ ├── seopaque.h │ │ │ ├── sertlp.h │ │ │ ├── setupblk.h │ │ │ ├── vdm.h │ │ │ ├── vdmtib.inc │ │ │ ├── wmiumkm.h │ │ │ ├── wow64t.h │ │ │ ├── wow64tls.h │ │ │ └── zwapi.h │ ├── ds │ │ └── inc │ │ │ └── ntrmlsa.h │ └── sdktools │ │ └── inc │ │ └── ntdbg.h └── sdk │ └── inc │ ├── align.h │ ├── basetsd.h │ ├── bugcodes.h │ ├── callconv.inc │ ├── cfg.h │ ├── crt │ ├── ctype.h │ ├── excpt.h │ ├── stdarg.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── tchar.h │ └── wchar.h │ ├── devguid.h │ ├── devioctl.h │ ├── diskguid.h │ ├── evntrace.h │ ├── guiddef.h │ ├── initguid.h │ ├── ioevent.h │ ├── ks386.inc │ ├── ksamd64.inc │ ├── kxamd64.inc │ ├── macamd64.inc │ ├── mce.h │ ├── mountmgr.h │ ├── msaudite.h │ ├── nt.h │ ├── ntamd64.h │ ├── ntconfig.h │ ├── ntcsrmsg.h │ ├── ntdddisk.h │ ├── ntddft.h │ ├── ntddmup.h │ ├── ntddnull.h │ ├── ntddstor.h │ ├── ntdef.h │ ├── ntdskreg.h │ ├── ntelfapi.h │ ├── ntexapi.h │ ├── nti386.h │ ├── ntia64.h │ ├── ntimage.h │ ├── ntioapi.h │ ├── ntiolog.h │ ├── ntiologc.h │ ├── ntkeapi.h │ ├── ntldr.h │ ├── ntlpcapi.h │ ├── ntlsa.h │ ├── ntmmapi.h │ ├── ntnls.h │ ├── ntobapi.h │ ├── ntpnpapi.h │ ├── ntpoapi.h │ ├── ntpsapi.h │ ├── ntregapi.h │ ├── ntrtl.h │ ├── ntrtlpath.h │ ├── ntrtlstringandbuffer.h │ ├── ntseapi.h │ ├── ntstatus.h │ ├── nturtl.h │ ├── ntxcapi.h │ ├── nxamd64.h │ ├── nxi386.h │ ├── pebteb.h │ ├── poppack.h │ ├── pshpack1.h │ ├── pshpack2.h │ ├── pshpack4.h │ ├── pshpack8.h │ ├── pshpck16.h │ ├── safeboot.h │ ├── specstrings.h │ ├── strsafe.h │ ├── triage.h │ ├── wdbgexts.h │ ├── wdmguid.h │ ├── winerror.h │ ├── wmidata.h │ ├── wmiguid.h │ └── wmistr.h ├── tools ├── amd64 │ ├── 1033 │ │ └── clui.dll │ ├── c1.dll │ ├── c2.dll │ ├── checktoolarch.bat │ ├── cl.exe │ ├── cvtres.exe │ ├── lib.exe │ ├── link.exe │ ├── mc.exe │ ├── ml64.exe │ ├── msobj80.dll │ ├── mspdb80.dll │ ├── msvcp80.dll │ ├── msvcr80.dll │ ├── nmake.exe │ ├── rc.exe │ └── rcdll.dll └── x86 │ ├── c1.dll │ ├── c1p.dll │ ├── c2.dll │ ├── checktoolarch.bat │ ├── cl.exe │ ├── cvtres.exe │ ├── lib.exe │ ├── link.exe │ ├── mc.exe │ ├── ml.exe │ ├── msobj71.dll │ ├── mspdb70.dll │ ├── mspdb71.dll │ ├── msvcr70.dll │ ├── nmake.exe │ ├── rc.exe │ └── rcdll.dll └── ws03sp1hals └── x86 ├── halacpim ├── halacpim.dll └── halacpim.pdb ├── halmacpi ├── halmacpi.dll └── halmacpi.pdb └── halmps ├── halmps.dll └── halmps.pdb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/README.md -------------------------------------------------------------------------------- /WRK-v1.2/WIN-VFS.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/WIN-VFS.ppt -------------------------------------------------------------------------------- /WRK-v1.2/base/inc/ntdlltrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/inc/ntdlltrc.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/PROJECTS.DB3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/PROJECTS.DB3 -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/makefile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/makefile.build -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/cache.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/config.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/config.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/dbgk.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/dbgk.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/ex.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/ex.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/fsrtl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/fsrtl.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/fstub.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/fstub.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/init.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/init.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/io.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/io.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/iomgr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/iomgr.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/ke.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/ke.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/lpc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/lpc.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/mm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/mm.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/ntosrtl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/ntosrtl.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/ntosse.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/ntosse.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/ob.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/ob.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/perf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/perf.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/ps.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/ps.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/raw.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/raw.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/obji386/wmi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/obji386/wmi.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/prebuilt/i386/hal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/prebuilt/i386/hal.lib -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/build/warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/build/warning.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/cachedat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/cachedat.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/cachesub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/cachesub.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/cc.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/ccperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/ccperf.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/copysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/copysup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/fssup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/fssup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/lazyrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/lazyrite.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/logsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/logsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/mdlsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/mdlsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/pinsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/pinsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/cache/vacbsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/cache/vacbsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmalloc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmapi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmapi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmapi2.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmboot.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmchek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmchek.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmchek2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmchek2.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmclose.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmconfig.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmcontrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmcontrl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmdat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmdat.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmdat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmdat2.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmdatini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmdatini.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmdelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmdelay.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmdelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmdelete.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmdown.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmgquota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmgquota.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmhook.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmhvlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmhvlist.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmindex.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cminit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmmapvw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmmapvw.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmname.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmnotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmnotify.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmparse.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmparse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmparse2.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmpbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmpbug.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmquery.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmsavres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmsavres.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmse.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmsecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmsecache.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmsubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmsubs.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmsubs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmsubs2.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmsubs3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmsubs3.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmsysini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmsysini.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmtrecpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmtrecpy.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmtredel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmtredel.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmtree.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmvalue.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmwmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmwmi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmworker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmworker.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmwrapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmwrapr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/cmwrapr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/cmwrapr2.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hive.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivebin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivebin.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivecell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivecell.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivechek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivechek.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivefree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivefree.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivehint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivehint.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hiveinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hiveinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hiveload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hiveload.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivemap.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivesum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivesum.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/hivesync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/hivesync.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/config/ntapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/config/ntapi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/dbgk/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/dbgk/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/dbgk/dbgkobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/dbgk/dbgkobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/dbgk/dbgkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/dbgk/dbgkp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/dbgk/dbgkport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/dbgk/dbgkport.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/dbgk/dbgkproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/dbgk/dbgkproc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/amd64/hifreqlk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/amd64/hifreqlk.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/amd64/hrderror.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/amd64/hrderror.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/amd64/intrlock.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/amd64/intrlock.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/amd64/wowinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/amd64/wowinfo.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/delay.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/delay.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/event.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/event.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/exatom.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/exatom.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/exdata.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/exdata.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/exinit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/exinit.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/handle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/handle.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/luid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/luid.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/pool.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/pool.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/uuid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/uuid.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/build/obji386/zone.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/build/obji386/zone.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/callback.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/callperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/callperf.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/delay.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/event.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/eventpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/eventpr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/exatom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/exatom.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/exdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/exdata.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/exinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/exinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/exp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/fmutexc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/fmutexc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/handle.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/harderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/harderr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/i386/intrlfst.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/i386/intrlfst.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/i386/intrlock.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/i386/intrlock.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/i386/splocks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/i386/splocks.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/keyedevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/keyedevent.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/lookasid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/lookasid.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/luid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/luid.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/mutant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/mutant.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/nbqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/nbqueue.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/pool.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/probe.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/profile.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/pushlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/pushlock.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/raise.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/resource.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/rundown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/rundown.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/semphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/semphore.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/sysinfo.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/timer.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/uuid.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/win32.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/worker.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ex/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ex/zone.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/dbcsname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/dbcsname.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/fastio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/fastio.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/faulttol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/faulttol.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/filelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/filelock.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/filter.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/filtrctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/filtrctx.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/fsfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/fsfilter.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/fsrtlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/fsrtlp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/fsrtlpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/fsrtlpc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/largemcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/largemcb.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/name.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/notify.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/oplock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/oplock.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/pnp.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/stackovf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/stackovf.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/tunnel.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fsrtl/unc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fsrtl/unc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fstub/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fstub/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fstub/drivesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fstub/drivesup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fstub/drivesup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fstub/drivesup.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fstub/fstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fstub/fstub.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/fstub/haldisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/fstub/haldisp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/amd64.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/cache.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/cm.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/cmdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/cmdata.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/cpyuchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/cpyuchr.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/dbgk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/dbgk.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/dockintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/dockintf.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/em387.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/em387.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/ex.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/exboosts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/exboosts.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/exlevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/exlevels.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/fastsys.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/fastsys.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/fsrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/fsrtl.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/hal.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/hivedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/hivedata.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/i386.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/init.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/intrlk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/intrlk.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/io.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/irqli386.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/irqli386.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/kd.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/kddll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/kddll.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/ke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/ke.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/kx.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/lfs.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/lpc.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/mac386.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/mac386.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/mm.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/ntos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/ntos.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/ntosdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/ntosdef.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/ob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/ob.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/perf.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/pnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/pnp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/po.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/po.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/pool.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/procpowr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/procpowr.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/ps.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/se.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/smbios.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/stktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/stktrace.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/v86emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/v86emul.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/vdmntos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/vdmntos.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/verifier.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/inc/wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/inc/wmi.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/init/amd64def.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/init/amd64def.src -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/init/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/init/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/init/i386def.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/init/i386def.src -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/init/initos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/init/initos.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/init/ntkrnlmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/init/ntkrnlmp.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/init/ntoskrnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/init/ntoskrnl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/init/ntoskrnl.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/init/ntoskrnl.src -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/ioguid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/ioguid.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/cancelapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/cancelapi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/complete.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/create.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/dev2dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/dev2dos.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/devctrl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/dir.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/errorlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/errorlog.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/fsctrl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/internal.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/iodata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/iodata.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/ioinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/ioinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/iomgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/iomgr.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/iosubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/iosubs.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/loadunld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/loadunld.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/lock.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/misc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/objsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/objsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/open.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/parse.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/qsea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/qsea.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/qsfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/qsfs.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/qsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/qsinfo.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/qsquota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/qsquota.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/read.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iomgr/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iomgr/write.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iop.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iopcmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iopcmn.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/ioverifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/ioverifier.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/iovutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/iovutil.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/pnpmgr/pplastgood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/pnpmgr/pplastgood.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/pnpmgr/ppvutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/pnpmgr/ppvutil.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/sessnirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/sessnirp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/io/trackirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/io/trackirp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/allproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/allproc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/apcint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/apcint.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/apcuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/apcuser.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/callback.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/callout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/callout.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/clockint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/clockint.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/cpuid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/cpuid.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/ctxswap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/ctxswap.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/decode.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/dpcint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/dpcint.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/exceptn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/exceptn.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/flush.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/flushtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/flushtb.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/idle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/idle.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/initkr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/initkr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/intipi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/intipi.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/intobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/intobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/intsup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/intsup.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/ipi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/ipi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/kiamd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/kiamd64.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/misc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/miscs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/miscs.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/pat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/pat.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/procstat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/procstat.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/profint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/profint.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/queuelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/queuelock.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/runtime.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/services.stb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/services.stb -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/services.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/services.tab -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/spinlock.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/start.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/sysstubs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/sysstubs.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/systable.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/systable.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/table.stb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/table.stb -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/threadbg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/threadbg.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/thredini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/thredini.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/trap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/trap.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/amd64/zero.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/amd64/zero.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/apcobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/apcobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/apcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/apcsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/balmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/balmgr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/bugcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/bugcheck.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/makefile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/makefile.bak -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/cpu.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/cpu.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/int.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/int.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/iopm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/iopm.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/misc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/misc.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/mtrr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/mtrr.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/pat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/pat.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/trap.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/trap.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/wait.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/wait.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/xipi.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/xipi.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/build/obji386/zero.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/build/obji386/zero.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/config.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/debug.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/devquobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/devquobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/dpclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/dpclock.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/dpcobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/dpcobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/dpcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/dpcsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/eventobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/eventobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/gateobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/gateobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/genxx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/genxx.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/hifreqlk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/hifreqlk.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/abios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/abios.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/abiosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/abiosa.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/abiosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/abiosc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/allproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/allproc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/apcuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/apcuser.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/biosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/biosc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/callback.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/callout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/callout.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/clockint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/clockint.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/cpu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/cpu.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/cpu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/cpu.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/ctxswap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/ctxswap.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/emv86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/emv86.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/emxcptn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/emxcptn.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/exceptn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/exceptn.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/flush.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/flushtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/flushtb.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/gdtsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/gdtsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/i386init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/i386init.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/i386pcr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/i386pcr.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/idsched.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/idsched.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/instemul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/instemul.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/int.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/int.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/intobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/intobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/intsup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/intsup.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/iopm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/iopm.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/kernlini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/kernlini.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/kimacro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/kimacro.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/kix86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/kix86.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/largepag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/largepag.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/ldtsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/ldtsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/ldtsup2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/ldtsup2.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/mi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/mi.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/misc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/mpipia.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/mpipia.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/mtrr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/mtrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/mtrr.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/mtrramd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/mtrramd.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/newsysbg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/newsysbg.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/pat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/pat.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/pat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/pat.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/procstat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/procstat.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/services.stb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/services.stb -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/services.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/services.tab -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/spindbg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/spindbg.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/spinlock.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/spinlock.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/sysstubs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/sysstubs.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/systable.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/systable.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/table.stb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/table.stb -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/threadbg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/threadbg.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/thredini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/thredini.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/timindex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/timindex.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/trap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/trap.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/trapc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/trapc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/i386/zero.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/i386/zero.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/interobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/interobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/kernldat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/kernldat.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/kevutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/kevutil.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/ki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/ki.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/kiinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/kiinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/miscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/miscc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/mutntobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/mutntobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/procobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/procobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/profobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/profobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/queueobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/queueobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/raisexcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/raisexcp.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/semphobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/semphobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/thkemul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/thkemul.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/thredobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/thredobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/thredsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/thredsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/timerobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/timerobj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/timersup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/timersup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/wait.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/waitsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/waitsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/xipi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/xipi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ke/yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ke/yield.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/i386/lpcmove.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/i386/lpcmove.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcclose.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpccompl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpccompl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcconn.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpccreat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpccreat.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpclistn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpclistn.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcpriv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcpriv.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcquery.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcqueue.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcrecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcrecv.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcreply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcreply.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/lpc/lpcsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/lpc/lpcsend.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/acceschk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/acceschk.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/addrsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/addrsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/allocpag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/allocpag.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/allocvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/allocvm.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/amd64/dataamd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/amd64/dataamd.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/amd64/initamd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/amd64/initamd.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/amd64/miamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/amd64/miamd.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/build/obji386/pae.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/build/obji386/pae.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/buildmdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/buildmdl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/creasect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/creasect.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/deleteva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/deleteva.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/dmpaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/dmpaddr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/extsect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/extsect.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/flushbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/flushbuf.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/flushsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/flushsec.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/forksup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/forksup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/freevm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/freevm.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/hypermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/hypermap.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/data386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/data386.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/init386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/init386.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/mi386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/mi386.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/pae.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/pae.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/paesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/paesup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/procpae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/procpae.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/procx86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/procx86.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/i386/setmodfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/i386/setmodfy.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/iosup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/iosup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/lockvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/lockvm.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/mapcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/mapcache.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/mapview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/mapview.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/mi.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/miglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/miglobal.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/mmfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/mmfault.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/mminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/mminit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/mmquota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/mmquota.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/mmsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/mmsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/modwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/modwrite.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/pagfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/pagfault.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/pfndec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/pfndec.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/pfnlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/pfnlist.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/physical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/physical.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/procsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/procsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/protect.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/querysec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/querysec.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/queryvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/queryvm.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/readwrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/readwrt.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/sectsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/sectsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/session.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/sessload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/sessload.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/shutdown.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/sysload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/sysload.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/sysptes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/sysptes.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/umapview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/umapview.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/vadtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/vadtree.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/wrtfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/wrtfault.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/wrtwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/wrtwatch.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/wslist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/wslist.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/wsmanage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/wsmanage.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/wstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/wstree.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/mm/zeropage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/mm/zeropage.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/build/obji386/obse.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/build/obji386/obse.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/fastref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/fastref.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obclose.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obcreate.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obdevmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obdevmap.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obdir.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obhandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obhandle.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obinsert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obinsert.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/oblink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/oblink.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obquery.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obref.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obsdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obsdata.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obse.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obtype.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obvutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obvutil.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ob/obwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ob/obwait.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/perf/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/perf/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/perf/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/perf/hooks.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/perf/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/perf/logging.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/perf/perfdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/perf/perfdata.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/perf/perfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/perf/perfp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/perf/perfsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/perf/perfsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/amd64/psctxamd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/amd64/psctxamd64.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/amd64/psctxwrap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/amd64/psctxwrap.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/amd64/psldt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/amd64/psldt.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/amd64/psvdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/amd64/psvdm.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/create.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/i386/psctx386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/i386/psctx386.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/i386/psldt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/i386/psldt.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/i386/psvdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/i386/psvdm.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/kulookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/kulookup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/pscid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/pscid.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psctx.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psdelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psdelete.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psenum.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/pshelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/pshelper.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psimpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psimpers.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psjob.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psopen.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psquery.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psquota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psquota.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/psspnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/psspnd.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/ps/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/ps/security.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/cleanup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/close.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/create.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/fileinfo.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/fsctrl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/nodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/nodetype.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/rawdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/rawdisp.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/rawinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/rawinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/rawprocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/rawprocs.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/rawstruc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/rawstruc.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/readwrit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/readwrit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/strucsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/strucsup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/raw/volinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/raw/volinfo.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/acledit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/acledit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/add2stra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/add2stra.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/add2strt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/add2strt.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/add2strw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/add2strw.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/capture.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/capture.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/chkstk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/chkstk.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/context.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/debugstb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/debugstb.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/exdsptch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/exdsptch.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/misalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/misalign.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/movemem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/movemem.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/ntrtlamd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/ntrtlamd64.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/raise.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/slist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/slist.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/stkwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/stkwalk.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/amd64/xcptmisc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/amd64/xcptmisc.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/assert.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/atom.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/avltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/avltable.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/bitmap.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/build/obji386/nls.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/build/obji386/nls.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/build/obji386/peb.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/build/obji386/peb.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/byteswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/byteswap.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/cnvint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/cnvint.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/debug.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/eballoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/eballoc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/environ.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/error.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/error.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/excptdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/excptdbg.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/generr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/generr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/gentable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/gentable.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/guid.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/context.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/debug2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/debug2.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/debug3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/debug3.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/divlarge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/divlarge.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/exdsptch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/exdsptch.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/getcalr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/getcalr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/ioaccess.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/ioaccess.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/largeint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/largeint.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/movemem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/movemem.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/ntrtl386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/ntrtl386.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/raise.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/raise.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/slist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/slist.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/stkwalk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/stkwalk.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/stringsp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/stringsp.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/i386/xcptmisc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/i386/xcptmisc.asm -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/imagedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/imagedir.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/intbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/intbits.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/ldrreloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/ldrreloc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/ldrrsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/ldrrsrc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/lookup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/message.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/mp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/mp -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/nls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/nls.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/nlsxlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/nlsxlat.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/ntrtlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/ntrtlp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/pctohdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/pctohdr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/peb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/peb.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/prefix.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/regutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/regutil.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/rtlassig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/rtlassig.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/rtldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/rtldata.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/rtlexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/rtlexec.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/rtlnthdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/rtlnthdr.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/sertl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/sertl.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/splay.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/stktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/stktrace.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/str2adda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/str2adda.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/str2addt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/str2addt.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/str2addw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/str2addw.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/string.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/sysvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/sysvol.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/time.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/tracedb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/tracedb.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/rtl/tracedbp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/rtl/tracedbp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/accessck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/accessck.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/adt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/adt.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/adtinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/adtinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/adtlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/adtlog.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/adtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/adtp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/adtutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/adtutil.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/adtutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/adtutil.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/adtvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/adtvars.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/build/obji386/sep.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/build/obji386/sep.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/capture.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/pch.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/privileg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/privileg.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/rmaudit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/rmaudit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/rmlogon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/rmlogon.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/rmmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/rmmain.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/rmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/rmp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/rmvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/rmvars.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/seassign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/seassign.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/seastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/seastate.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/seaudit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/seaudit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/seclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/seclient.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/seglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/seglobal.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/seinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/seinit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/semethod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/semethod.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/sep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/sep.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/sep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/sep.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/sepaudit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/sepaudit.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/subject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/subject.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/token.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/tokenadj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/tokenadj.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/tokendup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/tokendup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/tokenopn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/tokenopn.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/tokenp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/tokenp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/tokenqry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/tokenqry.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/se/tokenset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/se/tokenset.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/vdm/i386/vdm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/vdm/i386/vdm.inc -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/halverifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/halverifier.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfbugcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfbugcheck.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfddi.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfdeadlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfdeadlock.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfdebug.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfdef.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfdevobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfdevobj.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vffilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vffilter.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfgeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfgeneric.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfinit.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfirp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfirpdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfirpdb.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfirplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfirplog.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfmacro.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfmajor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfmajor.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfmessage.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfpacket.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfpnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfpnp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfpower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfpower.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfpragma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfpragma.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfprint.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfrandom.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfsettings.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfstack.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vftriage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vftriage.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfutil.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfwmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfwmi.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/verifier/vfzwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/verifier/vfzwapi.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/alloc.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/amd64/mcaevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/amd64/mcaevent.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/api.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/build/makefile -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/build/obji386/api.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/build/obji386/api.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/build/obji386/ds.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/build/obji386/ds.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/build/obji386/mca.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/build/obji386/mca.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/build/obji386/wmi.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/build/obji386/wmi.obj -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/callouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/callouts.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/chunk.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/consumer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/consumer.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/dataprov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/dataprov.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/ds.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/enabdisa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/enabdisa.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/globalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/globalog.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/i386/mcaevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/i386/mcaevent.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/mca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/mca.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/mcaevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/mcaevent.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/notify.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/provider.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/register.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/secure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/secure.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/smbios.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/traceapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/traceapi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/tracelog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/tracelog.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/tracep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/tracep.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/tracesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/tracesup.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/wmi.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/wmidata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/wmidata.c -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/wmikmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/wmikmp.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/wmi/wmiumds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/wmi/wmiumds.h -------------------------------------------------------------------------------- /WRK-v1.2/base/ntos/目录.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/base/ntos/目录.txt -------------------------------------------------------------------------------- /WRK-v1.2/public/ddk/inc/mountdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/ddk/inc/mountdev.h -------------------------------------------------------------------------------- /WRK-v1.2/public/ddk/inc/ntddscsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/ddk/inc/ntddscsi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/halkit/inc/arccodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/halkit/inc/arccodes.h -------------------------------------------------------------------------------- /WRK-v1.2/public/halkit/inc/inbv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/halkit/inc/inbv.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/arc.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/atom.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/elfkrnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/elfkrnl.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/hdlsblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/hdlsblk.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/hdlsterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/hdlsterm.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/ntperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/ntperf.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/ntwmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/ntwmi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/pnpmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/pnpmgr.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/pnpsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/pnpsetup.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/profiles.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/seopaque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/seopaque.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/sertlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/sertlp.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/setupblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/setupblk.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/vdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/vdm.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/vdmtib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/vdmtib.inc -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/wmiumkm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/wmiumkm.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/wow64t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/wow64t.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/wow64tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/wow64tls.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/base/inc/zwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/base/inc/zwapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/internal/ds/inc/ntrmlsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/internal/ds/inc/ntrmlsa.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/align.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/basetsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/basetsd.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/bugcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/bugcodes.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/callconv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/callconv.inc -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/cfg.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/ctype.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/excpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/excpt.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/stdarg.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/stdio.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/stdlib.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/string.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/tchar.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/crt/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/crt/wchar.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/devguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/devguid.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/devioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/devioctl.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/diskguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/diskguid.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/evntrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/evntrace.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/guiddef.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/initguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/initguid.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ioevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ioevent.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ks386.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ks386.inc -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ksamd64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ksamd64.inc -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/kxamd64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/kxamd64.inc -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/macamd64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/macamd64.inc -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/mce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/mce.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/mountmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/mountmgr.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/msaudite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/msaudite.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/nt.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntamd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntamd64.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntconfig.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntcsrmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntcsrmsg.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntdddisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntdddisk.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntddft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntddft.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntddmup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntddmup.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntddnull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntddnull.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntddstor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntddstor.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntdef.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntdskreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntdskreg.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntelfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntelfapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntexapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntexapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/nti386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/nti386.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntia64.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntimage.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntioapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntiolog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntiolog.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntiologc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntiologc.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntkeapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntkeapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntldr.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntlpcapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntlsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntlsa.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntmmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntmmapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntnls.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntobapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntobapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntpnpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntpnpapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntpoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntpoapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntpsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntpsapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntregapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntregapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntrtl.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntrtlpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntrtlpath.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntseapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntstatus.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/nturtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/nturtl.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/ntxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/ntxcapi.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/nxamd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/nxamd64.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/nxi386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/nxi386.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/pebteb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/pebteb.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/poppack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/poppack.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/pshpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/pshpack1.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/pshpack2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/pshpack2.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/pshpack4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/pshpack4.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/pshpack8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/pshpack8.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/pshpck16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/pshpck16.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/safeboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/safeboot.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/specstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/specstrings.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/strsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/strsafe.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/triage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/triage.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/wdbgexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/wdbgexts.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/wdmguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/wdmguid.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/winerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/winerror.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/wmidata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/wmidata.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/wmiguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/wmiguid.h -------------------------------------------------------------------------------- /WRK-v1.2/public/sdk/inc/wmistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/public/sdk/inc/wmistr.h -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/1033/clui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/1033/clui.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/c1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/c1.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/c2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/c2.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/checktoolarch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/checktoolarch.bat -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/cl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/cl.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/cvtres.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/cvtres.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/lib.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/link.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/link.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/mc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/mc.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/ml64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/ml64.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/msobj80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/msobj80.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/mspdb80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/mspdb80.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/msvcp80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/msvcp80.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/msvcr80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/msvcr80.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/nmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/nmake.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/rc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/rc.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/amd64/rcdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/amd64/rcdll.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/c1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/c1.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/c1p.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/c1p.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/c2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/c2.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/checktoolarch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/checktoolarch.bat -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/cl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/cl.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/cvtres.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/cvtres.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/lib.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/link.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/link.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/mc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/mc.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/ml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/ml.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/msobj71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/msobj71.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/mspdb70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/mspdb70.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/mspdb71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/mspdb71.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/msvcr70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/msvcr70.dll -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/nmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/nmake.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/rc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/rc.exe -------------------------------------------------------------------------------- /WRK-v1.2/tools/x86/rcdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/tools/x86/rcdll.dll -------------------------------------------------------------------------------- /WRK-v1.2/ws03sp1hals/x86/halmps/halmps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/ws03sp1hals/x86/halmps/halmps.dll -------------------------------------------------------------------------------- /WRK-v1.2/ws03sp1hals/x86/halmps/halmps.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic101/windows/HEAD/WRK-v1.2/ws03sp1hals/x86/halmps/halmps.pdb --------------------------------------------------------------------------------