ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
22 lines
460 B
C
22 lines
460 B
C
#ifndef HEADER_ZramMeter
|
|
#define HEADER_ZramMeter
|
|
/*
|
|
htop - linux/ZramMeter.h
|
|
(C) 2020 Murloc Knight
|
|
(C) 2020-2023 htop dev team
|
|
Released under the GNU GPLv2+, see the COPYING file
|
|
in the source distribution for its full text.
|
|
*/
|
|
|
|
#include "Meter.h"
|
|
|
|
typedef enum {
|
|
ZRAM_METER_COMPRESSED = 0,
|
|
ZRAM_METER_UNCOMPRESSED = 1,
|
|
ZRAM_METER_ITEMCOUNT = 2, // number of entries in this enum
|
|
} ZramMeterValues;
|
|
|
|
extern const MeterClass ZramMeter_class;
|
|
|
|
#endif
|