1
0
mirror of https://github.com/winfsp/winfsp.git synced 2026-06-15 00:56:02 -05:00

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
+3 -1
View File
@@ -19,7 +19,9 @@ FspClose(
{
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);
}