diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-08-28 10:29:53 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-08-28 10:29:53 -0400 |
commit | 5c845f14ed72bcdbd45a2e719223c441846f62ad (patch) | |
tree | ac07487864f4886d37bec799b77ee0a43a4fbf0b /include | |
parent | df0ee7f25ff628360f38d87b8a74daaa2cc742a8 (diff) |
handle input device destroy
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_input_device.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_input_device.h b/include/wlr/types/wlr_input_device.h index 642892ff..5a41ce9d 100644 --- a/include/wlr/types/wlr_input_device.h +++ b/include/wlr/types/wlr_input_device.h @@ -40,6 +40,10 @@ struct wlr_input_device { struct wlr_tablet_pad *tablet_pad; }; + struct { + struct wl_signal destroy; + } events; + void *data; }; |