Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / ksysguard / ksysguardd / Linux / acpi.h
blobae01ecad1b6e3ec44a9dbce43a2ac722e1be1723
1 /*
2 KSysGuard, the KDE System Guard
4 Copyright (c) 2003 Stephan Uhlmann <su@su2.info>
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of version 2 of the GNU General Public
8 License as published by the Free Software Foundation.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #ifndef KSG_ACPI_H
21 #define KSG_ACPI_H
23 void initAcpi( struct SensorModul* );
24 void exitAcpi( void );
26 int updateAcpi( void );
28 void initAcpiBattery( struct SensorModul* );
29 int updateAcpiBattery(void);
30 void printAcpiBatFill( const char* );
31 void printAcpiBatFillInfo( const char* );
32 void printAcpiBatUsage( const char* );
33 void printAcpiBatUsageInfo( const char* );
35 void initAcpiThermal( struct SensorModul * );
36 int updateAcpiThermal(void);
37 void printThermalZoneTemperature(const char *cmd);
38 void printThermalZoneTemperatureInfo(const char *cmd);
40 void initAcpiFan( struct SensorModul * );
41 int updateAcpiFan(void);
42 void printFanState(const char *cmd);
43 void printFanStateInfo(const char *cmd);
45 #endif