// pep_x.h
typedef enum _PEP_PERF_STATE_TYPE {
PepPerfStateTypeDiscrete,
PepPerfStateTypeRange,
PepPerfStateTypeMax
} PEP_PERF_STATE_TYPE, *PPEP_PERF_STATE_TYPE;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef enum _PEP_PERF_STATE_TYPE {
PepPerfStateTypeDiscrete,
PepPerfStateTypeRange,
PepPerfStateTypeMax
} PEP_PERF_STATE_TYPE, *PPEP_PERF_STATE_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_PERF_STATE_TYPE enumeration indicates the type of performance information that is specified for a performance state (P-state) of a component.
PepPerfStateTypeDiscreteThe performance information is specified as a set of discrete values.
PepPerfStateTypeRangeThe performance information is specified as a range of values.
PepPerfStateTypeMaxReserved for use by operating system.
The Type member of the PEP_COMPONENT_PERF_SET structure is a PEP_PERF_STATE_TYPE enumeration value.
The PEP_PERF_STATE_TYPE enumeration indicates the type of performance information that is specified for a performance state (P-state) of a component.
PepPerfStateTypeDiscreteThe performance information is specified as a set of discrete values.
PepPerfStateTypeRangeThe performance information is specified as a range of values.
PepPerfStateTypeMaxReserved for use by operating system.
The Type member of the PEP_COMPONENT_PERF_SET structure is a PEP_PERF_STATE_TYPE enumeration value.