NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS_INIT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// netwakesource.h

void NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS_INIT(
  [_Out_] NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS *Parameters
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netwakesource-net_wake_source_media_change_parameters_init)

NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS_INIT function

Description

The NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS_INIT function initializes a NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS structure.

Parameters

Parameters [_Out_]

A pointer to a driver-allocated NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS structure.

Remarks

This function zeroes out the memory of the NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS structure, then fills in the Size member. Client drivers must then call NetWakeSourceGetMediaChangeParameters to fill in the other members of the structure.

The client driver must only call NET_WAKE_SOURCE_MEDIA_CHANGE_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_WAKE_SOURCE callback function. Otherwise, the call results in a system bugcheck.

See also

Configuring power management

NET_WAKE_SOURCE_MEDIA_CHANGE_PARAMETERS