backlight_class.h 302 B

1234567891011121314151617
  1. #ifndef BACKEND_BACKLIGHT_CLASS_H_
  2. #define BACKEND_BACKLIGHT_CLASS_H_
  3. #include "backlight.h"
  4. struct backlight_class {
  5. struct backlight backlight;
  6. struct fileaccess *actual_br_file;
  7. struct fileaccess *set_br_file;
  8. int max_brightness;
  9. int brightness;
  10. };
  11. #endif /* BACKEND_BACKLIGHT_CLASS_H_ */