FltIsEcpAcknowledged - NtDoc

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

BOOLEAN FLTAPI FltIsEcpAcknowledged(
  [in] PFLT_FILTER Filter,
  [in] PVOID       EcpContext
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

FltIsEcpAcknowledged function

Description

The FltIsEcpAcknowledged routine is used to determine if a given extra create parameter context structure (ECP) has been marked as acknowledged.

Parameters

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.

Return value

The routine returns TRUE if the ECP was marked as acknowledged and FALSE otherwise.

Remarks

To mark an ECP as acknowledged, use the FltAcknowledgeEcp routine.

See also

ECP_LIST

FltAcknowledgeEcp

FltGetEcpListFromCallbackData

FltInsertExtraCreateParameter

FltIsEcpFromUserMode

FltRemoveExtraCreateParameter

FltSetEcpListIntoCallbackData