You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
363 B
10 lines
363 B
#include <ntddk.h>
|
|
|
|
// 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;
|
|
} |