| Christian Göttsche | f8c5bdd | 2023-08-29 13:03:31 +0200 | [diff] [blame] | 1 | #ifndef HEADER_GPUMeter |
| 2 | #define HEADER_GPUMeter | ||||
| 3 | /* | ||||
| 4 | htop - GPUMeter.h | ||||
| 5 | (C) 2023 htop dev team | ||||
| 6 | Released under the GNU GPLv2+, see the COPYING file | ||||
| 7 | in the source distribution for its full text. | ||||
| 8 | */ | ||||
| 9 | |||||
| 10 | #include <stdbool.h> | ||||
| 11 | |||||
| 12 | #include "Meter.h" | ||||
| 13 | |||||
| 14 | |||||
| 15 | extern const MeterClass GPUMeter_class; | ||||
| 16 | |||||
| 17 | bool GPUMeter_active(void); | ||||
| 18 | |||||
| 19 | #endif /* HEADER_GPUMeter */ | ||||