Sync with trunk head (part 1 of 2)
[reactos.git] / drivers / filesystems / fastfat_new / cleanup.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/cleanup.c
5 * PURPOSE: Cleanup 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 FatCleanup(PDEVICE_OBJECT DeviceObject, PIRP Irp)
19 {
20 DPRINT1("FatCleanup(DeviceObject %p, Irp %p)\n", DeviceObject, Irp);
21
22 return STATUS_NOT_IMPLEMENTED;
23 }
24
25 /* EOF */