diff options
author | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-02-22 16:17:48 -0500 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-03-02 18:18:05 +0000 |
commit | 9dd6e2b90521fd438c90837c646a1fb4092bfe1b (patch) | |
tree | 11c1405faf1a7371d7b12f3464793b96c122ef48 /include/backend/libinput.h | |
parent | 0a5a65cf4819ebffb74c410735ba676b288bb82d (diff) |
backend/libinput: add devices wl_list
This commit prepares the ground for a wlr_libinput_input_device refactoring.
Diffstat (limited to 'include/backend/libinput.h')
-rw-r--r-- | include/backend/libinput.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h index 39e6dfe5..e443c0ec 100644 --- a/include/backend/libinput.h +++ b/include/backend/libinput.h @@ -27,6 +27,7 @@ struct wlr_libinput_backend { struct wl_listener session_signal; struct wl_array wlr_device_lists; // struct wl_list * + struct wl_list devices; // wlr_libinput_device::link }; struct wlr_libinput_input_device { |