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/dirctl.c Normal file
View File

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