1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-12-21 03:22:45 -06:00

sys: FSP_ENTER/FSP_LEAVE

This commit is contained in:
Bill Zissimopoulos
2015-11-17 11:50:12 -08:00
parent be46a057c5
commit ef2d278311
19 changed files with 136 additions and 120 deletions

View File

@@ -17,10 +17,9 @@ FspWrite(
_In_ PDEVICE_OBJECT DeviceObject,
_In_ PIRP Irp)
{
UNREFERENCED_PARAMETER(DeviceObject);
UNREFERENCED_PARAMETER(Irp);
FSP_ENTER(PAGED_CODE());
PAGED_CODE();
Result = STATUS_NOT_IMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
FSP_LEAVE("", 0);
}