windowskernelprogrammingbook2e
windowskernelprogrammingbook2e copied to clipboard
Samples for the book Windows Kernel Programming, 2nd edition
In [Chapter 12's sln file](https://github.com/zodiacon/windowskernelprogrammingbook2e/blob/master/Chapter12/Chapter12.sln#L30C67-L30C94) there is a reference to a BackupMon project, however that is not part of what is checked in. It looks like it got added as...
I think they were supposed to be bullets, there was some issue with the markdown formatting: 
On page 70 and 71:  Though in the code sample, you are using `sizeof(ThreadData)`: https://github.com/zodiacon/windowskernelprogrammingbook2e/blob/e23f9bb39c7dd6df8a408a6ace46e627211dcf5b/Chapter04/Booster/Booster.cpp#L91 As much as both are `8`, it could be misleading since the pointer size...
Missing: `typedef struct _FLT_IO_PARAMETER_BLOCK {` 

Pavel, I am reaching out to you because I am getting an error with the following code: Main.cpp #include "pch.h" #include "DriverMain.h" #include "MiniFilter.h" NTSTATUS OnCreateClose(PDEVICE_OBJECT, PIRP Irp); void UnloadFunc(PDRIVER_OBJECT...
I think this should just be "and desktop"? 

 1) `UNREFERENCED_PARAMETER` not needed since `DriverObject` is referenced? 2) Did we need to cast `RegistryPath` since it was already PUNICODE_STRING from the `DriverEntry` function definition? 3) Lastly I get...
Error MSB8040: Spectre-mitigated libraries are required for this project. I think I know what to do but haven't resolved it yet. Sharing in case I don't resolve and if I...