mirror of https://github.com/xzeldon/htop.git
11 lines
217 B
C
11 lines
217 B
C
|
#ifndef HEADER_ZramStats
|
||
|
#define HEADER_ZramStats
|
||
|
|
||
|
typedef struct ZramStats_ {
|
||
|
unsigned long long int totalZram;
|
||
|
unsigned long long int usedZramComp;
|
||
|
unsigned long long int usedZramOrig;
|
||
|
} ZramStats;
|
||
|
|
||
|
#endif
|