#ifndef _NTPSAPI_H
/**
* The PROCESS_CYCLE_TIME_INFORMATION structure contains information about the cycle time of a process.
*/
typedef struct _PROCESS_CYCLE_TIME_INFORMATION
{
ULONGLONG AccumulatedCycles; // The total number of cycles accumulated by the process.
ULONGLONG CurrentCycleCount; // The current cycle count of the process.
} PROCESS_CYCLE_TIME_INFORMATION, *PPROCESS_CYCLE_TIME_INFORMATION;
View code on GitHub
No description available.