You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
395 B
22 lines
395 B
#ifndef HEADER_MeterMode |
|
#define HEADER_MeterMode |
|
/* |
|
htop - MeterMode.h |
|
(C) 2024 htop dev team |
|
Released under the GNU GPLv2+, see the COPYING file |
|
in the source distribution for its full text. |
|
*/ |
|
|
|
|
|
enum MeterModeId_ { |
|
/* Meter mode 0 is reserved */ |
|
BAR_METERMODE = 1, |
|
TEXT_METERMODE, |
|
GRAPH_METERMODE, |
|
LED_METERMODE, |
|
LAST_METERMODE |
|
}; |
|
|
|
typedef unsigned int MeterModeId; |
|
|
|
#endif
|
|
|