brightness.h 155 B

123456789101112
  1. #ifndef BRIGHTNESS_H
  2. #define BRIGHTNESS_H
  3. #include <stdint.h>
  4. struct brightness_data {
  5. int fd;
  6. uint32_t max_brightness;
  7. };
  8. #endif /* BRIGHTNESS_H */