- Rewrite DriverEntry.
[reactos.git] / reactos / drivers / filesystems / fastfat_new / dir.c
1 /*
2 * PROJECT: ReactOS FAT file system driver
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: drivers/filesystems/fastfat/dir.c
5 * PURPOSE: Directory Control
6 * PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
7 */
8
9 /* INCLUDES *****************************************************************/
10
11 #define NDEBUG
12 #include "fastfat.h"
13
14 /* FUNCTIONS *****************************************************************/
15
16 NTSTATUS
17 VfatDirectoryControl(PFAT_IRP_CONTEXT IrpContext)
18 {
19 return STATUS_NOT_IMPLEMENTED;
20 }
21
22 /* EOF */