mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
22 lines
669 B
C
22 lines
669 B
C
/*
|
|
* PROJECT: ReactOS FAT file system driver
|
|
* LICENSE: GNU GPLv3 as published by the Free Software Foundation
|
|
* FILE: drivers/filesystems/fastfat/ea.c
|
|
* PURPOSE: Extended Attributes support
|
|
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#define NDEBUG
|
|
#include "fastfat.h"
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
NTSTATUS
|
|
VfatSetExtendedAttributes(PFILE_OBJECT FileObject,
|
|
PVOID Ea,
|
|
ULONG EaLength)
|
|
{
|
|
return STATUS_EAS_NOT_SUPPORTED;
|
|
}
|