SYSTEM_CPUUSAGE
This structure represents CPU usage statistics for the entire system and a specific process.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
Total CPU usage percentage |
|
4 |
|
|
CPU usage percentage of the monitored process |
Total size: 8 bytes
Defined in: DRFS.h
typedef struct _SYSTEM_CPUUSAGE
{
/* total cpu usage */
float _iTotalUsage;
/* specific process usage */
float _iProcessUsage;
} SYSTEM_CPUUSAGE, *LPSYSTEM_CPUUSAGE;