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

sys: FspIopDispatchPrepare

This commit is contained in:
Bill Zissimopoulos
2015-12-04 10:05:36 -08:00
parent f7d6c26d4b
commit e0c47750d9
5 changed files with 69 additions and 22 deletions
+3
View File
@@ -62,6 +62,9 @@ NTSTATUS DriverEntry(
DriverObject->MajorFunction[IRP_MJ_QUERY_SECURITY] = FspQuerySecurity;
DriverObject->MajorFunction[IRP_MJ_SET_SECURITY] = FspSetSecurity;
/* setup the I/O preparation functions */
FspIopPrepareFunction[IRP_MJ_CREATE] = FspCreatePrepare;
/* setup the I/O completion functions */
FspIopCompleteFunction[IRP_MJ_CREATE] = FspCreateComplete;
FspIopCompleteFunction[IRP_MJ_CLOSE] = FspCloseComplete;