D3COLD_REQUEST_CORE_POWER_RAIL - NtDoc

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

D3COLD_REQUEST_CORE_POWER_RAIL D3coldRequestCorePowerRail;

VOID D3coldRequestCorePowerRail(
  [_In_reads_opt_(_Inexpressible_("varies"))] PVOID Context,
  [_In_]                                      BOOLEAN CorePowerRailNeeded
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wdm-d3cold_request_core_power_rail)

Description

Enables the function device object (FDO) to indicate whether the core power rail is needed.

Parameters

Context [_In_reads_opt_(_Inexpressible_("varies"))]

The handle to the device.

CorePowerRailNeeded: [_In_]

A flag that indicates whether or not the driver needs the core power rail.

Remarks

A device driver that successfully queries for the GUID_D3COLD_AUX_POWER_AND_TIMING_INTERFACE interface receives a pointer to a D3COLD_AUX_POWER_AND_TIMING_INTERFACE structure in which the driver sets the RequestCorePowerRail member to a pointer to its implementation of the _D3COLD_REQUEST_CORE_POWER_RAIL_ callback function.

See also