├── .gitignore ├── HelloWorldDriver.sln ├── HelloWorldDriver ├── HelloWorld.c ├── HelloWorldDriver.vcxproj ├── HelloWorldDriver.vcxproj.filters └── HelloWorldDriver.vcxproj.user ├── LICENSE ├── README.md └── imgs ├── DebugView.png ├── WDM template.png ├── registry.PNG ├── sc_start.png └── sc_stop.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | x64/ -------------------------------------------------------------------------------- /HelloWorldDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/HelloWorldDriver.sln -------------------------------------------------------------------------------- /HelloWorldDriver/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/HelloWorldDriver/HelloWorld.c -------------------------------------------------------------------------------- /HelloWorldDriver/HelloWorldDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/HelloWorldDriver/HelloWorldDriver.vcxproj -------------------------------------------------------------------------------- /HelloWorldDriver/HelloWorldDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/HelloWorldDriver/HelloWorldDriver.vcxproj.filters -------------------------------------------------------------------------------- /HelloWorldDriver/HelloWorldDriver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/HelloWorldDriver/HelloWorldDriver.vcxproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/README.md -------------------------------------------------------------------------------- /imgs/DebugView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/imgs/DebugView.png -------------------------------------------------------------------------------- /imgs/WDM template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/imgs/WDM template.png -------------------------------------------------------------------------------- /imgs/registry.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/imgs/registry.PNG -------------------------------------------------------------------------------- /imgs/sc_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/imgs/sc_start.png -------------------------------------------------------------------------------- /imgs/sc_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/HelloWorldDriver/HEAD/imgs/sc_stop.png --------------------------------------------------------------------------------