sys: HasDbgBreakPoint and flesh out IRP handlers (to return STATUS_INVALID_REQUEST)

This commit is contained in:
Bill Zissimopoulos
2015-11-17 23:11:47 -08:00
parent 5424692f7f
commit f52e36e76e
17 changed files with 71 additions and 20 deletions

View File

@ -19,7 +19,9 @@ FspCleanup(
{
FSP_ENTER(PAGED_CODE());
Result = STATUS_NOT_IMPLEMENTED;
Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
Result = STATUS_INVALID_DEVICE_REQUEST;
FSP_LEAVE("", 0);
}