#ifndef _NTEXAPI_H
/**
* The PROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX type represents the cycle type (user vs. kernel)
* used as the second index of the Cycles, AttributedCycles, and WorkOnBehalfCycles.
*/
typedef enum _PROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX
{
// User-mode cycles accumulated by threads in this QoS bucket.
ProcessEnergyValuesCycleTypeUser = 0,
// Kernel-mode cycles accumulated by threads in this QoS bucket.
ProcessEnergyValuesCycleTypeKernel = 1,
// The maximum number of cycle types.
ProcessEnergyValuesCycleTypeMax = 2
} PROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX, *PPROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX;
View code on GitHubNo description available.