mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-04 01:42:58 -05:00
sys: WIP
This commit is contained in:
@ -21,6 +21,8 @@ FspQueryInformation(
|
||||
{
|
||||
FSP_ENTER(PAGED_CODE());
|
||||
|
||||
ASSERT(IRP_MJ_QUERY_INFORMATION == IoGetCurrentIrpStackLocation(Irp)->MajorFunction);
|
||||
|
||||
Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
Result = STATUS_INVALID_DEVICE_REQUEST;
|
||||
@ -35,6 +37,8 @@ FspSetInformation(
|
||||
{
|
||||
FSP_ENTER(PAGED_CODE());
|
||||
|
||||
ASSERT(IRP_MJ_SET_INFORMATION == IoGetCurrentIrpStackLocation(Irp)->MajorFunction);
|
||||
|
||||
Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
Result = STATUS_INVALID_DEVICE_REQUEST;
|
||||
|
Reference in New Issue
Block a user