| 1 | #include "hook.h" |
| 2 | |
| 3 | extern "C" NTSTATUS DriverEntry(PDRIVER_OBJECT driver_object, PUNICODE_STRING reg_path) |
| 4 | { |
| 5 | UNREFERENCED_PARAMETER(driver_object); |
| 6 | UNREFERENCED_PARAMETER(reg_path); |
| 7 | |
| 8 | nullhook::call_kernel_function(&nullhook::hook_handler); |
| 9 | |
| 10 | return STATUS_SUCCESS; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected