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

sys: FspFsvolCreatePrepare

This commit is contained in:
Bill Zissimopoulos
2015-12-04 11:17:56 -08:00
parent e0c47750d9
commit 3e4cfdd143
4 changed files with 76 additions and 27 deletions
+2 -2
View File
@@ -63,10 +63,10 @@ NTSTATUS DriverEntry(
DriverObject->MajorFunction[IRP_MJ_SET_SECURITY] = FspSetSecurity;
/* setup the I/O preparation functions */
FspIopPrepareFunction[IRP_MJ_CREATE] = FspCreatePrepare;
FspIopPrepareFunction[IRP_MJ_CREATE] = FspFsvolCreatePrepare;
/* setup the I/O completion functions */
FspIopCompleteFunction[IRP_MJ_CREATE] = FspCreateComplete;
FspIopCompleteFunction[IRP_MJ_CREATE] = FspFsvolCreateComplete;
FspIopCompleteFunction[IRP_MJ_CLOSE] = FspCloseComplete;
FspIopCompleteFunction[IRP_MJ_READ] = FspReadComplete;
FspIopCompleteFunction[IRP_MJ_WRITE] = FspWriteComplete;