a7cf0a3d7bfbeb031503921af18fe996c14438f1
[reactos.git] / reactos / drivers / filesystems / fastfat_new / ea.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/ea.c
5 * PURPOSE: Extended Attributes support
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 VfatSetExtendedAttributes(PFILE_OBJECT FileObject,
18 PVOID Ea,
19 ULONG EaLength)
20 {
21 return STATUS_EAS_NOT_SUPPORTED;
22 }