1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-08-31 05:57:27 +00:00

More cleanup

This commit is contained in:
momo5502
2022-03-26 20:01:13 +01:00
parent e3da821ee9
commit 49d259f3ae
3 changed files with 39 additions and 14 deletions

View File

@@ -55,10 +55,10 @@ namespace
switch (ioctr_code)
{
case HELLO_DRV_IOCTL:
debug_log("[< HelloDriver >] Hello from the Driver!\n");
debug_log("Hello from the Driver!\n");
break;
default:
debug_log("[-] Invalid IOCTL Code: 0x%X\n", ioctr_code);
debug_log("Invalid IOCTL Code: 0x%X\n", ioctr_code);
irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
break;
}