sys: IRP_MJ_CLOSE

This commit is contained in:
Bill Zissimopoulos
2015-12-07 23:39:34 -08:00
parent 51865f5e44
commit af1cecf26a
3 changed files with 12 additions and 12 deletions

View File

@ -68,7 +68,7 @@ NTSTATUS DriverEntry(
/* setup the I/O completion functions */
FspIopCompleteFunction[IRP_MJ_CREATE] = FspFsvolCreateComplete;
FspIopCompleteFunction[IRP_MJ_CLOSE] = FspCloseComplete;
FspIopCompleteFunction[IRP_MJ_CLOSE] = FspFsvolCloseComplete;
FspIopCompleteFunction[IRP_MJ_READ] = FspReadComplete;
FspIopCompleteFunction[IRP_MJ_WRITE] = FspWriteComplete;
FspIopCompleteFunction[IRP_MJ_QUERY_INFORMATION] = FspQueryInformationComplete;