wmapm: Add version 3.1 to repository.
[dockapps.git] / wmapm / wmapm / wmapm.h
blob769b2383724ba7ce22e4cfa3b172ab8d09a3debc
1 /*
2 * wmapm.h -- Header file for WMAPM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
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 (see the file COPYING); if not, write to the
17 * Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
26 #define DELAY 10000L /* Delay between refreshes (in microseconds) */
28 #define WMAPM_VERSION "3.1"
30 #ifdef FreeBSD
31 # define APMDEV "/dev/apm"
32 #else
33 # ifdef Linux
34 # define APMDEV "/proc/apm"
35 # endif
36 #endif
38 typedef struct my_apm_info {
39 const char driver_version[10];
40 int apm_version_major;
41 int apm_version_minor;
42 int apm_flags;
43 int ac_line_status;
44 int battery_status;
45 int battery_flags;
46 int battery_percentage;
47 int battery_time;
48 int using_minutes;
49 } my_apm_info;
51 #ifdef Linux
52 struct my_apm_info apm_info;
53 # ifndef APM_32_BIT_SUPPORT
54 # define APM_32_BIT_SUPPORT 0x0002
55 # endif
56 #endif