ZramMeter.h 460 B

123456789101112131415161718192021
  1. #ifndef HEADER_ZramMeter
  2. #define HEADER_ZramMeter
  3. /*
  4. htop - linux/ZramMeter.h
  5. (C) 2020 Murloc Knight
  6. (C) 2020-2023 htop dev team
  7. Released under the GNU GPLv2+, see the COPYING file
  8. in the source distribution for its full text.
  9. */
  10. #include "Meter.h"
  11. typedef enum {
  12. ZRAM_METER_COMPRESSED = 0,
  13. ZRAM_METER_UNCOMPRESSED = 1,
  14. ZRAM_METER_ITEMCOUNT = 2, // number of entries in this enum
  15. } ZramMeterValues;
  16. extern const MeterClass ZramMeter_class;
  17. #endif