FWPM_FILTER_CHANGE_CALLBACK0 callback function (fwpmu.h)

The FWPM_FILTER_CHANGE_CALLBACK0 function is used to added custom behavior to the filter change notification process.

Syntax

FWPM_FILTER_CHANGE_CALLBACK0 FwpmFilterChangeCallback0;

void FwpmFilterChangeCallback0(
  [in] void *context,
  [in] const FWPM_FILTER_CHANGE0 *change
)
{...}

Parameters

[in] context

Type: void*

Optional context pointer. It contains the value of the context parameter passed to the FwpmFilterSubscribeChanges0 function.

[in] change

Type: FWPM_FILTER_CHANGE0*

The change notification information.

Return value

None

Remarks

Call FwpmFilterSubscribeChanges0 to register this callback function.

FWPM_FILTER_CHANGE_CALLBACK0 is a specific implementation of FWPM_FILTER_CHANGE_CALLBACK. 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

See also

FWPM_FILTER_CHANGE0

FwpmFilterSubscribeChanges0