80b3dca536dd91bb21423b44089c57aeda23978b
[reactos.git] / reactos / drivers / filesystems / fastfat_new / flush.c
1 /*
2 * PROJECT: ReactOS FAT file system driver
3 * LICENSE: GNU GPLv3 as published by the Free Software Foundation
4 * FILE: drivers/filesystems/fastfat/flush.c
5 * PURPOSE: Flushing routines
6 * PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
7 */
8
9
10 /* INCLUDES *****************************************************************/
11
12 #define NDEBUG
13 #include "fastfat.h"
14
15 /* FUNCTIONS ****************************************************************/
16
17 NTSTATUS
18 NTAPI
19 FatFlushBuffers(PDEVICE_OBJECT DeviceObject, PIRP Irp)
20 {
21 DPRINT1("FatFlushBuffers()\n");
22 return STATUS_NOT_IMPLEMENTED;
23 }
24
25 /* EOF */