#ifndef _NTIOAPI_H
typedef struct _FILE_GET_EA_INFORMATION
{
ULONG NextEntryOffset;
UCHAR EaNameLength;
_Field_size_bytes_(EaNameLength) CHAR EaName[1];
} FILE_GET_EA_INFORMATION, *PFILE_GET_EA_INFORMATION;
View code on GitHubThis structure is documented in Windows Driver Kit.
Structure FILE_GET_EA_INFORMATION is used in a call to NtQueryEaFile function. See FILE_FULL_EA_INFORMATION for detailed information about EA.
Relative offset for next FILE_GET_EA_INFORMATION structure in buffer.
Length of EA name, in bytes (without leading zero).
ASCIIZ name of EA, case insensitive.