GPUMeter.h 336 B

12345678910111213141516171819
  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. #include <stdbool.h>
  10. #include "Meter.h"
  11. extern const MeterClass GPUMeter_class;
  12. bool GPUMeter_active(void);
  13. #endif /* HEADER_GPUMeter */