mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-03 09:22:57 -05:00
sys: FspIopDispatchPrepare
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user