EVT_WDF_DEVICE_DISABLE_WAKE_AT_BUS - NtDoc

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

EVT_WDF_DEVICE_DISABLE_WAKE_AT_BUS EvtWdfDeviceDisableWakeAtBus;

VOID EvtWdfDeviceDisableWakeAtBus(
  [in] WDFDEVICE Device
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wdfpdo-evt_wdf_device_disable_wake_at_bus)

EVT_WDF_DEVICE_DISABLE_WAKE_AT_BUS callback function

Description

[Applies to KMDF only]

A bus driver's EvtDeviceDisableWakeAtBus event callback function performs bus-level operations that disable the ability of one of the bus's devices to trigger a wake-up signal on the bus.

Parameters

Device [in]

A handle to a framework device object.

Remarks

To register this callback function, the bus driver must call WdfPdoInitSetEventCallbacks.

For more information about this callback function, see Supporting System Wake-Up.

See also

WdfPdoInitSetEventCallbacks

EvtDeviceEnableWakeAtBus