mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
542e9f2ba0
No code changes. Addendum to14c39362
and6d65da93
.
29 lines
695 B
C
29 lines
695 B
C
/*
|
|
* PROJECT: VFAT Filesystem
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: Extended attributes handlers
|
|
* COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com>
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include "vfat.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
NTSTATUS
|
|
VfatSetExtendedAttributes(
|
|
PFILE_OBJECT FileObject,
|
|
PVOID Ea,
|
|
ULONG EaLength)
|
|
{
|
|
UNREFERENCED_PARAMETER(FileObject);
|
|
UNREFERENCED_PARAMETER(Ea);
|
|
UNREFERENCED_PARAMETER(EaLength);
|
|
|
|
return STATUS_EAS_NOT_SUPPORTED;
|
|
}
|