// fltkernel.h
BOOLEAN FLTAPI FltIsEcpAcknowledged(
[in] PFLT_FILTER Filter,
[in] PVOID EcpContext
);
View the official Windows Driver Kit DDI reference
No description available.
The FltIsEcpAcknowledged routine is used to determine if a given extra create parameter context structure (ECP) has been marked as acknowledged.
Filter
[in]Opaque filter pointer for the minifilter driver. This pointer uniquely identifies the minifilter driver and remains constant as long as the minifilter driver is loaded.
EcpContext
[in]Pointer to the ECP to test for acknowledgment.
The routine returns TRUE if the ECP was marked as acknowledged and FALSE otherwise.
To mark an ECP as acknowledged, use the FltAcknowledgeEcp routine.