2020-12-01 12:59:19 +00:00
|
|
|
#ifndef HEADER_LibSensors
|
|
|
|
#define HEADER_LibSensors
|
|
|
|
|
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2021-04-29 18:13:36 +00:00
|
|
|
#include "linux/LinuxProcessList.h"
|
2020-12-01 12:59:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
int LibSensors_init(FILE* input);
|
|
|
|
void LibSensors_cleanup(void);
|
|
|
|
|
2020-12-13 15:46:10 +00:00
|
|
|
void LibSensors_getCPUTemperatures(CPUData* cpus, unsigned int cpuCount);
|
2020-12-01 12:59:19 +00:00
|
|
|
|
|
|
|
#endif /* HEADER_LibSensors */
|