battery_powerbook.h 301 B

123456789101112131415161718
  1. #ifndef BACKEND_BATTERY_POWERBOOK_H_
  2. #define BACKEND_BATTERY_POWERBOOK_H_
  3. #include "battery.h"
  4. struct battery_powerbook {
  5. struct battery battery;
  6. struct fileaccess *info_file;
  7. struct fileaccess *stat_file;
  8. int on_ac;
  9. int max_charge;
  10. int charge;
  11. };
  12. #endif /* BACKEND_BATTERY_POWERBOOK_H_ */