NET_POWER_OFFLOAD_ARP_PARAMETERS_INIT function (netpoweroffload.h)

The NET_POWER_OFFLOAD_ARP_PARAMETERS_INIT function initializes a NET_POWER_OFFLOAD_ARP_PARAMETERS structure.

Syntax

void NET_POWER_OFFLOAD_ARP_PARAMETERS_INIT(
  [_Out_] NET_POWER_OFFLOAD_ARP_PARAMETERS *Parameters
);

Parameters

[_Out_] Parameters

A pointer to a client driver-allocated NET_POWER_OFFLOAD_ARP_PARAMETERS structure.

Return value

None

Remarks

This function zeroes out the memory of the NET_POWER_OFFLOAD_ARP_PARAMETERS structure, then fills in the Size member. Client drivers must then call NetPowerOffloadGetArpParameters to fill in the remaining members of the structure.

The client driver must only call NET_POWER_OFFLOAD_ARP_PARAMETERS_INIT during a power transition, typically from its EVT_WDF_DEVICE_ARM_WAKE_FROM_SX, EVT_WDF_DEVICE_ARM_WAKE_FROM_S0, or EVT_NET_DEVICE_PREVIEW_POWER_OFFLOAD callback function. Otherwise, the call results in a system bugcheck.

Requirements

Requirement Value
Minimum supported client Windows 10, version 2004
Target Platform Universal
Header netpoweroffload.h (include netadaptercx.h)
IRQL Any level as long as target memory is resident

See also

Configuring power management

NET_POWER_OFFLOAD_ARP_PARAMETERS