a0fde0aa9098ccd229c6f0dc7d4d65e59fb44ccb
[monky] / src / i8k.h
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
13  * Copyright (c) 2007 Toni Spets
14  * Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
15  *      (see AUTHORS)
16  * All rights reserved.
17  *
18  * This program is free software: you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation, either version 3 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  * You should have received a copy of the GNU General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  *
30  */
31
32 #ifndef _I8K_H
33 #define _I8K_H
34
35 void update_i8k(void);
36 void print_i8k_left_fan_status(struct text_object *, char *, int);
37 void print_i8k_cpu_temp(struct text_object *, char *, int);
38 void print_i8k_right_fan_status(struct text_object *, char *, int);
39 void print_i8k_ac_status(struct text_object *, char *, int);
40 void print_i8k_version(struct text_object *, char *, int);
41 void print_i8k_bios(struct text_object *, char *, int);
42 void print_i8k_serial(struct text_object *, char *, int);
43 void print_i8k_left_fan_rpm(struct text_object *, char *, int);
44 void print_i8k_right_fan_rpm(struct text_object *, char *, int);
45 void print_i8k_buttons_status(struct text_object *, char *, int);
46
47 #endif /* _I8K_H */