diff options
Diffstat (limited to 'linux/LibSensors.h')
-rw-r--r-- | linux/LibSensors.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/linux/LibSensors.h b/linux/LibSensors.h new file mode 100644 index 0000000..6f05448 --- /dev/null +++ b/linux/LibSensors.h @@ -0,0 +1,19 @@ +#ifndef HEADER_LibSensors +#define HEADER_LibSensors +/* +htop - linux/LibSensors.h +(C) 2020-2023 htop dev team +Released under the GNU GPLv2+, see the COPYING file +in the source distribution for its full text. +*/ + +#include "linux/LinuxMachine.h" + + +int LibSensors_init(void); +void LibSensors_cleanup(void); +int LibSensors_reload(void); + +void LibSensors_getCPUTemperatures(CPUData* cpus, unsigned int existingCPUs, unsigned int activeCPUs); + +#endif /* HEADER_LibSensors */ |