FLT_NAME_CONTROL - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// fltkernel.h

typedef struct _FLT_NAME_CONTROL {
  UNICODE_STRING Name;
} FLT_NAME_CONTROL, *PFLT_NAME_CONTROL;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-fltkernel-_flt_name_control)

_FLT_NAME_CONTROL structure

Description

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.

Members

Name

UNICODE_STRING structure that contains the file name string.

Remarks

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.

See also

FltCheckAndGrowNameControl

FltGetFileNameFormat

FltGetFileNameInformation

FltGetFileNameInformationUnsafe

FltGetFileNameQueryMethod

UNICODE_STRING