INTERFACE_TIMESTAMP_CONFIG_CHANGE_CALLBACK callback function (iphlpapi.h)

A callback function that you implement in your app in order to be notified of changes to the timestamp capabilities of a network adapter. Pass a pointer to your implementation when you call RegisterInterfaceTimestampConfigChange.

For more info, and code examples, see Packet timestamping.

Syntax

INTERFACE_TIMESTAMP_CONFIG_CHANGE_CALLBACK InterfaceTimestampConfigChangeCallback;

void InterfaceTimestampConfigChangeCallback(
  PVOID CallerContext
)
{...}

Parameters

CallerContext

Type: _In_ PVOID

The caller-allocated context that you passed to RegisterInterfaceTimestampConfigChange, or NULL if you didn't pass a context.

Return value

None

Requirements

Requirement Value
Minimum supported client Windows 11 (Build 10.0.22000.194)
Minimum supported server Windows Server 2022
Target Platform Windows
Header iphlpapi.h

See also

Packet timestamping