// fltkernel.h
NTSTATUS FLTAPI FltAddOpenReparseEntry(
[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 adds a caller allocated open reparse structure, OPEN_REPARSE_LIST_ENTRY, into a create operation.
Filter [in]The filter to reference.
Data [in]The create operation to attach open reparse information to.
OpenReparseEntry [in]The open reparse information to add, of type OPEN_REPARSE_LIST_ENTRY.
The following NT status codes are returned.
| Return code | Description |
|---|---|
| STATUS_INVALID_PARAMETER_2 | Status code if Data is not a create operation. This is an error code. |
| STATUS_SUCCESS | The operation completed successfully. |
This routine adds an ECP list and/or ECP as needed. Filter is referenced for the lifetime of the open reparse entry structure, not the ECP itself, which is conceptually independent of any specific filter.
Use FltRemoveOpenReparseEntry to remove the open reparse structure from the create operation.