1 /* 2 * PROJECT: VFAT Filesystem 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: Extended attributes handlers 5 * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 */ 7 8 /* INCLUDES *****************************************************************/ 9 10 #include "vfat.h" 11 12 #define NDEBUG 13 #include <debug.h> 14 15 /* FUNCTIONS *****************************************************************/ 16 17 NTSTATUS 18 VfatSetExtendedAttributes( 19 PFILE_OBJECT FileObject, 20 PVOID Ea, 21 ULONG EaLength) 22 { 23 UNREFERENCED_PARAMETER(FileObject); 24 UNREFERENCED_PARAMETER(Ea); 25 UNREFERENCED_PARAMETER(EaLength); 26 27 return STATUS_EAS_NOT_SUPPORTED; 28 } 29