inc,dll,sys: notify implementation skeleton

This commit is contained in:
Bill Zissimopoulos
2020-10-06 16:37:33 -07:00
parent 489081b8c2
commit 844fb7171e
7 changed files with 79 additions and 0 deletions

View File

@ -98,6 +98,10 @@ static NTSTATUS FspFsctlFileSystemControl(
if (0 != IrpSp->FileObject->FsContext2)
Result = FspVolumeStop(FsctlDeviceObject, Irp, IrpSp);
break;
case FSP_FSCTL_NOTIFY:
if (0 != IrpSp->FileObject->FsContext2)
Result = FspVolumeNotify(FsctlDeviceObject, Irp, IrpSp);
break;
default:
if (CTL_CODE(0, 0xC00, 0, 0) ==
(IrpSp->Parameters.FileSystemControl.FsControlCode & CTL_CODE(0, 0xC00, 0, 0)))