blob: 41db0730259400df5e74409c5c5337e3a4a98df4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __ZENMONITOR_OS_H__
#define __ZENMONITOR_OS_H__
#include <glib.h>
gboolean os_init(void);
void os_update(void);
void os_clear_minmax(void);
GSList* os_get_sensors(void);
#endif /* __ZENMONITOR_OS_H__ */
|