- Add stubs for VolumeControlBlock structure, VolumeDeviceObject,
[reactos.git] / reactos / drivers / filesystems / fastfat_new / finfo.c
1 /*
2 * PROJECT: ReactOS FAT file system driver
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: drivers/filesystems/fastfat/finfo.c
5 * PURPOSE: File Information support routines
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 NTAPI
18 FatQueryInformation(PDEVICE_OBJECT DeviceObject, PIRP Irp)
19 {
20 DPRINT1("FatQueryInformation()\n");
21 return STATUS_NOT_IMPLEMENTED;
22 }
23
24 NTSTATUS
25 NTAPI
26 FatSetInformation(PDEVICE_OBJECT DeviceObject, PIRP Irp)
27 {
28 DPRINT1("FatSetInformation()\n");
29 return STATUS_NOT_IMPLEMENTED;
30 }
31
32 /* EOF */