SwapMeter.h 452 B

123456789101112131415161718192021
  1. #ifndef HEADER_SwapMeter
  2. #define HEADER_SwapMeter
  3. /*
  4. htop - SwapMeter.h
  5. (C) 2004-2011 Hisham H. Muhammad
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "Meter.h"
  10. typedef enum {
  11. SWAP_METER_USED = 0,
  12. SWAP_METER_CACHE = 1,
  13. SWAP_METER_FRONTSWAP = 2,
  14. SWAP_METER_ITEMCOUNT = 3, // number of entries in this enum
  15. } SwapMeterValues;
  16. extern const MeterClass SwapMeter_class;
  17. #endif