mirror of
https://github.com/xzeldon/htop.git
synced 2025-02-07 12:23:38 +03:00
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
|