// fwpsk.h
NTSTATUS FwpsAleEndpointDestroyEnumHandle0(
[in] HANDLE engineHandle,
[in, out] HANDLE enumHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
The FwpsAleEndpointDestroyEnumHandle0 function destroys an endpoint enumeration handle that was created by calling FwpsAleEndpointCreateEnumHandle0.
Note FwpsAleEndpointDestroyEnumHandle0 is a specific version of FwpsAleEndpointDestroyEnumHandle. See WFP Version-Independent Names and Targeting Specific Versions of Windows for more information.
engineHandle [in]The handle for an open session with the filter engine. This handle is obtained when a session is opened by calling FwpmEngineOpen0.
enumHandle [in, out]The enumeration handle created by a previous call to FwpsAleEndpointCreateEnumHandle0.
The FwpsAleEndpointDestroyEnumHandle0 function returns one of the following NTSTATUS codes.
| Return code | Description |
|---|---|
| STATUS_SUCCESS | The function succeeded. |
| Other status codes | An error occurred. |
When endpoint enumeration is complete, the enumeration handle must be destroyed by calling FwpsAleEndpointDestroyEnumHandle0.
FwpsAleEndpointCreateEnumHandle0