// fltkernel.h
VOID FLTAPI FltRemoveOpenReparseEntry(
[in] PFLT_FILTER Filter,
[in] PFLT_CALLBACK_DATA Data,
[in] POPEN_REPARSE_LIST_ENTRY OpenReparseEntry
);
View the official Windows Driver Kit DDI referenceNo description available.
This routine removes an OPEN_REPARSE_LIST_ENTRY structure (added by FltAddOpenReparseEntry) from a create operation.
Important OpenReparseEntry must be an entry added by FltAddOpenReparseEntry. All other entries are not valid.
Filter [in]The filter to dereference.
Data [in]The create operation to remove open reparse information from.
OpenReparseEntry [in]The open reparse information to remove, of type OPEN_REPARSE_LIST_ENTRY.
This routine does not return a value.