dockapps/wmpower/src/power_management/power_management.h
Alexey I. Froloff 792a5d290a Mass update FSF address
Signed-off-by: Alexey I. Froloff <raorn@raorn.name>
2012-06-05 20:50:13 +01:00

68 lines
2.6 KiB
C

/***************************************************************************
power_management.h - description
-------------------
begin : Feb 10 2003
copyright : (C) 2003 by Noberasco Michele
e-mail : 2001s098@educ.disi.unige.it
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
* *
***************************************************************************/
#define PM_Error -1
#define PM_ACPI 2
#define PM_APM 3
typedef enum
{
IS_2_6 = 0,
IS_OTHER
} kernel_versions;
kernel_versions kernel_version;
typedef struct
{
int battery_percentage;
int battery_charging;
int battery_time;
int battery_present;
int ac_on_line;
int fan_status;
int temperature;
int temp_is_celsius;
} pm_status;
int minBrightness;
int maxBrightness;
int waittime; /* /proc polling time */
char *cpufreq_online_governor;
char *cpufreq_offline_governor;
int pm_support(int which_battery);
void get_power_status(pm_status *power_status);
void set_pm_features(void);
int fast_battery_charge(int toggle);
int get_fast_battery_charge_mode(void);
void set_noflushd_use(int toggle);
void set_toshiba_hardware_use(int toggle);
void set_cpufreq_use(int toggle);
void lcdBrightness_UpOneStep();
void lcdBrightness_DownOneStep();