mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
sys: WIP
This commit is contained in:
parent
6d8e820067
commit
d8621c8490
@ -26,5 +26,5 @@ FspCleanup(
|
|||||||
|
|
||||||
Result = STATUS_INVALID_DEVICE_REQUEST;
|
Result = STATUS_INVALID_DEVICE_REQUEST;
|
||||||
|
|
||||||
FSP_LEAVE_MJ("", 0);
|
FSP_LEAVE_MJ("FileObject=%p", IrpSp->FileObject);
|
||||||
}
|
}
|
||||||
|
@ -26,5 +26,5 @@ FspClose(
|
|||||||
|
|
||||||
Result = STATUS_INVALID_DEVICE_REQUEST;
|
Result = STATUS_INVALID_DEVICE_REQUEST;
|
||||||
|
|
||||||
FSP_LEAVE_MJ("", 0);
|
FSP_LEAVE_MJ("FileObject=%p", IrpSp->FileObject);
|
||||||
}
|
}
|
||||||
|
@ -27,14 +27,14 @@ FspCreate(
|
|||||||
Result = STATUS_INVALID_DEVICE_REQUEST;
|
Result = STATUS_INVALID_DEVICE_REQUEST;
|
||||||
|
|
||||||
FSP_LEAVE_MJ(
|
FSP_LEAVE_MJ(
|
||||||
"FileObject=%p:\"%wZ\", "
|
"FileObject=%p[%p:\"%wZ\"], "
|
||||||
"DesiredAccess=%#lx, "
|
"DesiredAccess=%#lx, "
|
||||||
"ShareAccess=%#x, "
|
"ShareAccess=%#x, "
|
||||||
"Options=%#lx, "
|
"Options=%#lx, "
|
||||||
"FileAttributes=%#x, "
|
"FileAttributes=%#x, "
|
||||||
"AllocationSize=%#lx:%#lx, "
|
"AllocationSize=%#lx:%#lx, "
|
||||||
"Ea=%p, EaLength=%ld",
|
"Ea=%p, EaLength=%ld",
|
||||||
IrpSp->FileObject->RelatedFileObject, IrpSp->FileObject->FileName,
|
IrpSp->FileObject, IrpSp->FileObject->RelatedFileObject, IrpSp->FileObject->FileName,
|
||||||
IrpSp->Parameters.Create.SecurityContext->DesiredAccess,
|
IrpSp->Parameters.Create.SecurityContext->DesiredAccess,
|
||||||
IrpSp->Parameters.Create.ShareAccess,
|
IrpSp->Parameters.Create.ShareAccess,
|
||||||
IrpSp->Parameters.Create.Options,
|
IrpSp->Parameters.Create.Options,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user