// pep_x.h
typedef struct _PEP_PPM_PLATFORM_STATE_RESIDENCY {
ULONG64 Residency;
ULONG64 TransitionCount;
} PEP_PPM_PLATFORM_STATE_RESIDENCY, *PPEP_PPM_PLATFORM_STATE_RESIDENCY;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef struct _PEP_PPM_PLATFORM_STATE_RESIDENCY {
ULONG64 Residency;
ULONG64 TransitionCount;
} PEP_PPM_PLATFORM_STATE_RESIDENCY, *PPEP_PPM_PLATFORM_STATE_RESIDENCY;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_PPM_PLATFORM_STATE_RESIDENCY structure specifies the accumulated residency time and transition count for a particular platform idle state.
ResidencyThe accumulated residency time, in 100-nanosecond units. This is the total amount of time that the hardware platform has spent in this idle state since system startup.
TransitionCountThe total number of times that the platform has entered this idle state since system startup.
The States member of the PEP_PPM_PLATFORM_STATE_RESIDENCIES structure is a pointer to an array of PEP_PPM_PLATFORM_STATE_RESIDENCY structures.
PEP_PPM_PLATFORM_STATE_RESIDENCIES
The PEP_PPM_PLATFORM_STATE_RESIDENCY structure specifies the accumulated residency time and transition count for a particular platform idle state.
ResidencyThe accumulated residency time, in 100-nanosecond units. This is the total amount of time that the hardware platform has spent in this idle state since system startup.
TransitionCountThe total number of times that the platform has entered this idle state since system startup.
The States member of the PEP_PPM_PLATFORM_STATE_RESIDENCIES structure is a pointer to an array of PEP_PPM_PLATFORM_STATE_RESIDENCY structures.
PEP_PPM_PLATFORM_STATE_RESIDENCIES