├── BUILD ├── README.md ├── dirs ├── doc ├── exception.txt ├── ntundoc.chm ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png ├── winnapi-paper.pdf └── winnapi.pdf ├── native ├── MAKEFILE ├── SOURCES ├── native.cpp └── newnative.h └── win32 ├── Handle.cpp ├── Handle.h ├── IO.cpp ├── IO.h ├── MAKEFILE ├── Main.cpp ├── Main.h ├── RegistryBrowser.cpp ├── RegistryBrowser.h ├── SOURCES ├── account.cpp ├── account.h ├── computername.cpp ├── experimental.cpp ├── stdafx.cpp ├── stdafx.h ├── tests.cpp ├── usermode-registry.sln ├── usermode-registry.vcproj └── win32.cpp /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/BUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/README.md -------------------------------------------------------------------------------- /dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/dirs -------------------------------------------------------------------------------- /doc/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/doc/exception.txt -------------------------------------------------------------------------------- /doc/ntundoc.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/doc/ntundoc.chm -------------------------------------------------------------------------------- /doc/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/doc/screenshot1.png -------------------------------------------------------------------------------- /doc/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/doc/screenshot2.png -------------------------------------------------------------------------------- /doc/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/doc/screenshot3.png -------------------------------------------------------------------------------- /doc/winnapi-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/doc/winnapi-paper.pdf -------------------------------------------------------------------------------- /doc/winnapi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/doc/winnapi.pdf -------------------------------------------------------------------------------- /native/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/native/MAKEFILE -------------------------------------------------------------------------------- /native/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/native/SOURCES -------------------------------------------------------------------------------- /native/native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/native/native.cpp -------------------------------------------------------------------------------- /native/newnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/native/newnative.h -------------------------------------------------------------------------------- /win32/Handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/Handle.cpp -------------------------------------------------------------------------------- /win32/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/Handle.h -------------------------------------------------------------------------------- /win32/IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/IO.cpp -------------------------------------------------------------------------------- /win32/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/IO.h -------------------------------------------------------------------------------- /win32/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/MAKEFILE -------------------------------------------------------------------------------- /win32/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/Main.cpp -------------------------------------------------------------------------------- /win32/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/Main.h -------------------------------------------------------------------------------- /win32/RegistryBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/RegistryBrowser.cpp -------------------------------------------------------------------------------- /win32/RegistryBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/RegistryBrowser.h -------------------------------------------------------------------------------- /win32/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/SOURCES -------------------------------------------------------------------------------- /win32/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/account.cpp -------------------------------------------------------------------------------- /win32/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/account.h -------------------------------------------------------------------------------- /win32/computername.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/computername.cpp -------------------------------------------------------------------------------- /win32/experimental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/experimental.cpp -------------------------------------------------------------------------------- /win32/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/stdafx.cpp -------------------------------------------------------------------------------- /win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/stdafx.h -------------------------------------------------------------------------------- /win32/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/tests.cpp -------------------------------------------------------------------------------- /win32/usermode-registry.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/usermode-registry.sln -------------------------------------------------------------------------------- /win32/usermode-registry.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/usermode-registry.vcproj -------------------------------------------------------------------------------- /win32/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrudolph/bootpgm/HEAD/win32/win32.cpp --------------------------------------------------------------------------------