// pep_x.h
typedef struct _PEP_PPM_CST_STATES {
ULONG Count;
PPEP_PPM_CST_STATE IdleStates;
} PEP_PPM_CST_STATES, *PPEP_PPM_CST_STATES;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef struct _PEP_PPM_CST_STATES {
ULONG Count;
PPEP_PPM_CST_STATE IdleStates;
} PEP_PPM_CST_STATES, *PPEP_PPM_CST_STATES;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_PPM_CST_STATES structure specifies the properties of the C states (ACPI processor power states) that are supported for a processor.
CountThe number of elements in the IdleStates array.
IdleStatesA pointer to an array of PEP_PPM_CST_STATE structures.
This structure is used by the PEP_NOTIFY_PPM_CST_STATES notification. The contents of this structure are obtained from the _CST object that is located in the ACPI namespace for the processor.
The PEP_PPM_CST_STATES structure specifies the properties of the C states (ACPI processor power states) that are supported for a processor.
CountThe number of elements in the IdleStates array.
IdleStatesA pointer to an array of PEP_PPM_CST_STATE structures.
This structure is used by the PEP_NOTIFY_PPM_CST_STATES notification. The contents of this structure are obtained from the _CST object that is located in the ACPI namespace for the processor.