sys: initial fast I/O support

This commit is contained in:
Bill Zissimopoulos
2015-11-16 16:37:27 -08:00
parent 99c2a6a5e5
commit 1b18452663
6 changed files with 80 additions and 4 deletions

37
src/sys/security.c Normal file
View File

@ -0,0 +1,37 @@
/**
* @file sys/seinfo.c
*
* @copyright 2015 Bill Zissimopoulos
*/
#include <sys/driver.h>
DRIVER_DISPATCH FspQuerySecurity;
DRIVER_DISPATCH FspSetSecurity;
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, FspQuerySecurity)
#pragma alloc_text(PAGE, FspSetSecurity)
#endif
NTSTATUS
FspQuerySecurity(
_In_ PDEVICE_OBJECT DeviceObject,
_In_ PIRP Irp)
{
UNREFERENCED_PARAMETER(DeviceObject);
UNREFERENCED_PARAMETER(Irp);
return STATUS_NOT_IMPLEMENTED;
}
NTSTATUS
FspSetSecurity(
_In_ PDEVICE_OBJECT DeviceObject,
_In_ PIRP Irp)
{
UNREFERENCED_PARAMETER(DeviceObject);
UNREFERENCED_PARAMETER(Irp);
return STATUS_NOT_IMPLEMENTED;
}