mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
23 lines
671 B
C
23 lines
671 B
C
/*
|
|
* PROJECT: ReactOS FAT file system driver
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: drivers/filesystems/fastfat/fsctl.c
|
|
* PURPOSE: Filesystem control
|
|
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#define NDEBUG
|
|
#include "fastfat.h"
|
|
|
|
/* FUNCTIONS ****************************************************************/
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
FatFileSystemControl(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
|
{
|
|
DPRINT("VfatFileSystemControl(DeviceObject %p, Irp %p)\n", DeviceObject, Irp);
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|