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.
35 lines
802 B
35 lines
802 B
#ifndef HEADER_DynamicMeter |
|
#define HEADER_DynamicMeter |
|
/* |
|
htop - DynamicMeter.h |
|
(C) 2021 htop dev team |
|
(C) 2021 Red Hat, Inc. All Rights Reserved. |
|
Released under the GNU GPLv2+, see the COPYING file |
|
in the source distribution for its full text. |
|
*/ |
|
|
|
#include <stdbool.h> |
|
|
|
#include "Hashtable.h" |
|
#include "Meter.h" |
|
|
|
|
|
typedef struct DynamicMeter_ { |
|
char name[32]; /* unique name, cannot contain spaces */ |
|
char* caption; |
|
char* description; |
|
unsigned int type; |
|
double maximum; |
|
} DynamicMeter; |
|
|
|
Hashtable* DynamicMeters_new(void); |
|
|
|
void DynamicMeters_delete(Hashtable* dynamics); |
|
|
|
const char* DynamicMeter_lookup(Hashtable* dynamics, unsigned int key); |
|
|
|
bool DynamicMeter_search(Hashtable* dynamics, const char* name, unsigned int* key); |
|
|
|
extern const MeterClass DynamicMeter_class; |
|
|
|
#endif
|
|
|