FltReleaseFileNameInformation - NtDoc

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

VOID FLTAPI FltReleaseFileNameInformation(
  [in] PFLT_FILE_NAME_INFORMATION FileNameInformation
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-fltkernel-fltreleasefilenameinformation)

FltReleaseFileNameInformation function

Description

FltReleaseFileNameInformation releases a file name information structure.

Parameters

FileNameInformation [in]

Pointer to the FLT_FILE_NAME_INFORMATION structure to be released. This parameter is required and cannot be NULL.

Return value

None

Remarks

FltReleaseFileNameInformation decrements the reference count on a file name information (FLT_FILE_NAME_INFORMATION) structure returned by a previous call to FltGetDestinationFileNameInformation, FltGetFileNameInformation, FltGetFileNameInformationUnsafe, or FltGetTunneledName. When this reference count reaches zero, the structure is freed.

To increment the reference count on a file name information structure, call FltReferenceFileNameInformation.

See also

FLT_FILE_NAME_INFORMATION

FltGetDestinationFileNameInformation

FltGetFileNameInformation

FltGetFileNameInformationUnsafe

FltGetTunneledName

FltReferenceFileNameInformation