// wdm.h
typedef struct {
ULONG Version;
GUID Guid;
SYSTEM_POWER_CONDITION PowerCondition;
ULONG DataLength;
UCHAR Data[ANYSIZE_ARRAY];
} SET_POWER_SETTING_VALUE, *PSET_POWER_SETTING_VALUE;
View the official Windows Driver Kit DDI referenceNo description available.
This topic describes the SET_POWER_SETTING_VALUE structure.
VersionVersion of this structure. Currently should be set to POWER_SETTING_VALUE_VERSION.
GuidGUID representing the power setting being applied.
PowerConditionThe power state this setting should be applied to, for example, AC, DC, thermal, and so on.
DataLengthLength in bytes of the Data member.
DataContains the setting value.