This commit is contained in:
Bill Zissimopoulos 2015-11-16 21:33:05 -08:00
parent f35020612d
commit 552def98aa
2 changed files with 5 additions and 0 deletions

View File

@ -20,5 +20,7 @@ FspCleanup(
UNREFERENCED_PARAMETER(DeviceObject);
UNREFERENCED_PARAMETER(Irp);
PAGED_CODE();
return STATUS_NOT_IMPLEMENTED;
}

View File

@ -105,6 +105,9 @@ DriverEntry(
return Status;
}
/* register as a file system; this informs all filter drivers */
IoRegisterFileSystem(FspDeviceObject);
return STATUS_SUCCESS;
}