typedef struct _FILE_FULL_EA_INFORMATION { ULONG NextEntryOffset; UCHAR Flags; UCHAR EaNameLength; USHORT EaValueLength; CHAR EaName[1]; } FILE_FULL_EA_INFORMATION, *PFILE_FULL_EA_INFORMATION;
FILE_FULL_EA_INFORMATION provides extended attribute information. This structure is used primarily by network drivers.
This structure is longword-aligned. If a set of FILE_FULL_EA_INFORMATION entries is buffered, NextEntryOffset value in each entry, except the last, falls on a longword boundary.
The value(s) associated with each entry follows the EaName array. That is, an EA’s values are located at EaName + (EaNameLength + 1).