| 103 | } |
| 104 | |
| 105 | NTSTATUS kmclassDefaultHandler(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
| 106 | { |
| 107 | Irp->IoStatus.Status = STATUS_NOT_SUPPORTED; |
| 108 | Irp->IoStatus.Information = 0; |
| 109 | IoCompleteRequest(Irp, IO_NO_INCREMENT); |
| 110 | return Irp->IoStatus.Status; |
| 111 | } |
| 112 | |
| 113 | NTSTATUS kmclassDispatchDeviceControl(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
| 114 | { |
nothing calls this directly
no outgoing calls
no test coverage detected