diff options
author | Timidger <APragmaticPlace@gmail.com> | 2018-04-03 15:23:37 -0400 |
---|---|---|
committer | Timidger <APragmaticPlace@gmail.com> | 2018-04-03 15:23:37 -0400 |
commit | 920ab9f108488e973612fa9533bbef388fc6632d (patch) | |
tree | f23acb33560fe9e06175ebe5f5da545916e1800e | |
parent | 31c6ce13cde01bbb3921a520b6a8db6427da3094 (diff) |
Added user data field for wlr_cursor
This is required for wlroots-rs.
-rw-r--r-- | include/wlr/types/wlr_cursor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_cursor.h b/include/wlr/types/wlr_cursor.h index 0883f3ca..b764e6d2 100644 --- a/include/wlr/types/wlr_cursor.h +++ b/include/wlr/types/wlr_cursor.h @@ -54,6 +54,8 @@ struct wlr_cursor { struct wl_signal tablet_tool_tip; struct wl_signal tablet_tool_button; } events; + + void *data; }; struct wlr_cursor *wlr_cursor_create(); |