~ubuntu-branches/debian/sid/conky/sid

« back to all changes in this revision

Viewing changes to src/i8k.h

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Tirabassi
  • Date: 2010-03-28 21:19:51 UTC
  • mfrom: (1.3.1 upstream) (16.1.17 lucid)
  • Revision ID: james.westby@ubuntu.com-20100328211951-ejq536k2r858srli
Tags: 1.8.0-1
* New upstream release:
  - add AF_UNIX socket support
  - fix sigsegv if config file is deleted (LP: #525926)
  - the following debian bugs are closed by this upload:
    + change automake1.10 to automake1.11 (Closes: #550929)
    + hwmon made compatible with kernels >= 2.6.31 (Closes: #556926)
    + text_buffer_size change is well documented (Closes: #519401)
    + fix diskio for not existing devices (Closes: #536557)
    + fix wrong mixer values on some systems (Closes: #540282)
    + fix minor memory leak (Closes: #566524)
    + fix some documentation error re. graphs (Closes: #564518)
    + add -p/--pause startup option (Closes: #513440)
    + fix documentation about mixer values (Closes: #538760)
* This release is based on the Ubuntu package with the following changes
  necessary for Debian (Closes: #536320):
  - change control and rules to build correctly on non-Linux arches
    (Closes: #536326)
  - updated NEWS, descriptions in control and changelog
  - change archive area to contrib
* Change priority of metapackage to extra
* My utmost thanks go to Kapil Hari Paranjape for his packaging work and to
  Luca Falavigna for being so kind to review and sponsor this release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */