// wdfpdo.h
EVT_WDF_DEVICE_DISABLE_WAKE_AT_BUS EvtWdfDeviceDisableWakeAtBus;
VOID EvtWdfDeviceDisableWakeAtBus(
[in] WDFDEVICE Device
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
[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.
Device [in]A handle to a framework device object.
To register this callback function, the bus driver must call WdfPdoInitSetEventCallbacks.
For more information about this callback function, see Supporting System Wake-Up.