2009-01-11 11:12:55 +00:00
|
|
|
/*
|
2009-01-11 14:10:54 +00:00
|
|
|
* PROJECT: ReactOS FAT file system driver
|
2009-10-20 10:12:49 +00:00
|
|
|
* LICENSE: GNU GPLv3 as published by the Free Software Foundation
|
2009-01-11 14:10:54 +00:00
|
|
|
* FILE: drivers/filesystems/fastfat/ea.c
|
|
|
|
* PURPOSE: Extended Attributes support
|
|
|
|
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
|
2009-01-11 11:12:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
|
|
|
|
#define NDEBUG
|
2009-01-11 11:26:20 +00:00
|
|
|
#include "fastfat.h"
|
2009-01-11 11:12:55 +00:00
|
|
|
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
|
|
|
|
NTSTATUS
|
|
|
|
VfatSetExtendedAttributes(PFILE_OBJECT FileObject,
|
2009-01-11 14:10:54 +00:00
|
|
|
PVOID Ea,
|
|
|
|
ULONG EaLength)
|
2009-01-11 11:12:55 +00:00
|
|
|
{
|
2009-01-11 14:10:54 +00:00
|
|
|
return STATUS_EAS_NOT_SUPPORTED;
|
2009-01-11 11:12:55 +00:00
|
|
|
}
|