// fltkernel.h
typedef struct _FLT_NAME_CONTROL {
UNICODE_STRING Name;
} FLT_NAME_CONTROL, *PFLT_NAME_CONTROL;
View the official Windows Driver Kit DDI reference
No description available.
A minifilter that provides file names for the Filter Manager's name cache can use the FLT_NAME_CONTROL structure to manage its name buffers.
Name
UNICODE_STRING structure that contains the file name string.
Minifilters must not attempt to free or replace the buffer in the UNICODE_STRING structure that the Name member points to directly. Instead, minifilters should call FltCheckAndGrowNameControl to obtain a larger name control buffer.
FltGetFileNameInformationUnsafe