devicelock_n810.h 378 B

12345678910111213141516171819
  1. #ifndef BACKEND_DEVICELOCK_N810_H_
  2. #define BACKEND_DEVICELOCK_N810_H_
  3. #include "devicelock.h"
  4. #include "fileaccess.h"
  5. struct devicelock_n810 {
  6. struct devicelock devicelock;
  7. int switch_state;
  8. int kb_lock_evdev_fd;
  9. struct fileaccess *kb_lock_state_file;
  10. struct fileaccess *kb_disable_file;
  11. struct fileaccess *ts_disable_file;
  12. };
  13. #endif /* BACKEND_DEVICELOCK_N810_H_ */