FltCloseSectionForDataScan function (fltkernel.h)
The FltCloseSectionForDataScan routine closes a section object associated with a file stream.
Syntax
NTSTATUS FLTAPI FltCloseSectionForDataScan(
[in] PFLT_CONTEXT SectionContext
);
Parameters
[in] SectionContext
A pointer to the section context to close.
Return value
FltCloseSectionForDataScan returns STATUS_SUCCESS or an appropriate NTSTATUS value, such as one of the following.
Return code | Description |
---|---|
|
The section context was not properly created. An allocated section context must first be passed to FltCreateSectionForDataScan. This is an error code. |
|
The section context is already closed. |
Remarks
Minifilters use the FltCloseSectionForDataScan routine to deallocate and remove a section context from a file object. All previously allocated section contexts passed to FltCreateSectionForDataScan must be passed to FltCloseSectionForDataScan. Otherwise, minifilters can call FltReleaseContext if the section context was allocated with FltAllocateContext but no section was created with FltCreateSectionForDataScan.
After FltCloseSectionForDataScan returns, operations that conflict with the section described by SectionContext will not be synchronized by the filter manager.
Requirements
Requirement | Value |
---|---|
Minimum supported client | The FltCloseSectionForDataScan routine is available starting with Windows 8. |
Target Platform | Universal |
Header | fltkernel.h (include Fltkernel.h) |
Library | FltMgr.lib |
IRQL | <= APC_LEVEL |