1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-17 07:00:20 +00:00
reactos/drivers/filesystems/fastfat_new/flush.c

26 lines
639 B
C
Raw Normal View History

/*
* PROJECT: ReactOS FAT file system driver
* LICENSE: GNU GPLv3 as published by the Free Software Foundation
* FILE: drivers/filesystems/fastfat/flush.c
* PURPOSE: Flushing routines
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
*/
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "fastfat.h"
/* FUNCTIONS ****************************************************************/
NTSTATUS
NTAPI
FatFlushBuffers(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
DPRINT1("FatFlushBuffers()\n");
return STATUS_NOT_IMPLEMENTED;
}
/* EOF */