mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 00:50:23 +00:00
23 lines
595 B
C
23 lines
595 B
C
/*
|
|
* PROJECT: ReactOS FAT file system driver
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: drivers/filesystems/fastfat/dir.c
|
|
* PURPOSE: Directory Control
|
|
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#define NDEBUG
|
|
#include "fastfat.h"
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
FatDirectoryControl(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
|
{
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
/* EOF */
|