dockapps/wmbattery/sonypi.h
Doug Torrance 02bce1c90f wmbattery: Restore BSD support.
Code that was ripped out of wmbattery for version 1.22, which introduced the
dependency on libapm but dropped support for the BSDs, has been restored.
2014-10-05 19:18:50 +01:00

18 lines
602 B
C

int sonypi_supported(void);
int sonypi_read(apm_info *info);
/* There's no good place to get these constants, so I must define them
* myself. */
/* get battery full capacity/remaining capacity */
#define SONYPI_IOCGBAT1CAP _IOR('v', 2, uint16_t)
#define SONYPI_IOCGBAT1REM _IOR('v', 3, uint16_t)
#define SONYPI_IOCGBAT2CAP _IOR('v', 4, uint16_t)
#define SONYPI_IOCGBAT2REM _IOR('v', 5, uint16_t)
/* get battery flags: battery1/battery2/ac adapter present */
#define SONYPI_BFLAGS_B1 0x01
#define SONYPI_BFLAGS_B2 0x02
#define SONYPI_BFLAGS_AC 0x04
#define SONYPI_IOCGBATFLAGS _IOR('v', 7, uint8_t)