12345678910111213141516171819 |
- #ifndef HEADER_GPUMeter
- #define HEADER_GPUMeter
- /*
- htop - GPUMeter.h
- (C) 2023 htop dev team
- Released under the GNU GPLv2+, see the COPYING file
- in the source distribution for its full text.
- */
- #include <stdbool.h>
- #include "Meter.h"
- extern const MeterClass GPUMeter_class;
- bool GPUMeter_active(void);
- #endif /* HEADER_GPUMeter */
|