sys: rename files

This commit is contained in:
Bill Zissimopoulos
2015-11-20 17:50:14 -08:00
parent 2c63e9ace4
commit 4d910c7fa8
6 changed files with 12 additions and 12 deletions

27
src/sys/fsctl.c Normal file
View File

@ -0,0 +1,27 @@
/**
* @file sys/fsctl.c
*
* @copyright 2015 Bill Zissimopoulos
*/
#include <sys/driver.h>
DRIVER_DISPATCH FspFileSystemControl;
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, FspFileSystemControl)
#endif
NTSTATUS
FspFileSystemControl(
_In_ PDEVICE_OBJECT DeviceObject,
_In_ PIRP Irp)
{
FSP_ENTER_MJ(PAGED_CODE());
ASSERT(IRP_MJ_FILE_SYSTEM_CONTROL == IrpSp->MajorFunction);
Result = STATUS_INVALID_DEVICE_REQUEST;
FSP_LEAVE_MJ("", 0);
}