// ntpoapi.h
typedef enum _POWER_LIMIT_TYPES {
PowerLimitContinuous,
PowerLimitType1,
PowerLimitBurst,
PowerLimitType2,
PowerLimitRapid,
PowerLimitType3,
PowerLimitPreemptive,
PowerLimitType4,
PowerLimitPreemptiveOffset,
PowerLimitTypeMax
} POWER_LIMIT_TYPES, *PPOWER_LIMIT_TYPES;
View the official Windows Driver Kit DDI referenceNo description available.
Enumerates power limit types that describe a throttled object (power or battery discharge current) and how long the throttled object can last.
PowerLimitContinuousThe platform could sustain infinitely if the average power is under this limit.
PowerLimitBurstThe platform could typically sustain at seconds level if the average power is higher than PowerLimitContinuous but lower than this limit.
PowerLimitRapidThe platform starts associated algorithm to throttle the domain reactively once the power peaks above this limit.
PowerLimitPreemptiveA limit that will not be exceeded, the platform will be preemptively throttled to prevent spikes above this limit.
PowerLimitPreemptiveOffsetThe sum of peak power of specified devices, which is used to adjust PowerLimitPreemptive at runtime.