// ntifs.h
typedef struct _QUERY_ON_CREATE_EA_INFORMATION {
ULONG EaBufferSize;
PFILE_FULL_EA_INFORMATION EaBuffer;
} QUERY_ON_CREATE_EA_INFORMATION, *PQUERY_ON_CREATE_EA_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The QUERY_ON_CREATE_EA_INFORMATION structure is used to write file information when FltRequestFileInfoOnCreateCompletion is called with the QoCFileEaInformation flag set in the InfoClassFlags parameter.
EaBufferSizeSize, in bytes, of the buffer that EaBuffer points to.
EaBufferA list of FILE_FULL_EA_INFORMATION structures with extended attribute (EA) information.
The file system allocates this structure and fills in the requested information, if supported, while it processes a file create. Filter Manager will free the allocated structure.
FltRequestFileInfoOnCreateCompletion
FltRetrieveFileInfoOnCreateCompletionEx