FwpmProviderUnsubscribeChanges0 function (fwpmu.h)
The FwpmProviderUnsubscribeChanges0 function is used to cancel a provider change subscription and stop receiving change notifications.
Syntax
DWORD FwpmProviderUnsubscribeChanges0(
[in] HANDLE engineHandle,
[in] HANDLE changeHandle
);
Parameters
[in] engineHandle
Type: HANDLE
Handle for an open session to the filter engine. Call FwpmEngineOpen0 to open a session to the filter engine.
[in] changeHandle
Type: HANDLE
Handle of the subscribed change notification. This is the handle returned by the call to FwpmProviderSubscribeChanges0.
Return value
Type: DWORD
Return code/value | Description |
---|---|
|
The subscription was deleted successfully. |
|
A Windows Filtering Platform (WFP) specific error. See WFP Error Codes for details. |
|
Failure to communicate with the remote or local firewall engine. |
Remarks
If the callback is currently being invoked, this function will not return until it completes. Thus, when calling this function, you must not hold any locks that the callback may also try to acquire lest you deadlock.
It is not necessary to unsubscribe before closing a session; all subscriptions are automatically canceled when the subscribing session terminates.
This function cannot be called from within a transaction. It will fail with FWP_E_TXN_IN_PROGRESS. See Object Management for more information about transactions.
FwpmProviderUnsubscribeChanges0 is a specific implementation of FwpmProviderUnsubscribeChanges. See WFP Version-Independent Names and Targeting Specific Versions of Windows for more information.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Target Platform | Windows |
Header | fwpmu.h |
Library | Fwpuclnt.lib |
DLL | Fwpuclnt.dll |