#include // NOTE: this driver has a custom entry point (drv_entry), if you make a new project // please change the driver entry in linker settings... You will also need to disable // CFG in c++ --> code generations, along with GS... auto drv_entry(uintptr_t drv_base) -> NTSTATUS { DbgPrint("> drv base -> 0x%p\n", drv_base); return STATUS_SUCCESS; }