| 87 | } |
| 88 | |
| 89 | void kmclassUnload(IN PDRIVER_OBJECT DriverObject) |
| 90 | { |
| 91 | UNICODE_STRING Win32Device; |
| 92 | RtlInitUnicodeString(&Win32Device, KEYMOUSE_DOS_DEVICE_NAME); |
| 93 | IoDeleteSymbolicLink(&Win32Device); |
| 94 | IoDeleteDevice(DriverObject->DeviceObject); |
| 95 | } |
| 96 | |
| 97 | NTSTATUS kmclassCreateClose(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
| 98 | { |
nothing calls this directly
no outgoing calls
no test coverage detected