diff options
author | emersion <contact@emersion.fr> | 2018-06-28 14:33:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-28 14:33:07 +0100 |
commit | ec7d4a09715e5c24ce4a7fd15289df0ad2298a93 (patch) | |
tree | be8bb1f4ea177dc990f52c23b5c5c2ae00a2c47a /include | |
parent | f01896c9d5e7555ff3e2ab914c068b13cf9189a6 (diff) | |
parent | 93a75769f0be0548b0c39eb8e56a9ecc17f76cfe (diff) |
Merge pull request #1092 from martinetd/idle_inhibit
Idle inhibit cleanup
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_idle_inhibit_v1.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_idle_inhibit_v1.h b/include/wlr/types/wlr_idle_inhibit_v1.h index a777ff43..8c20d2c8 100644 --- a/include/wlr/types/wlr_idle_inhibit_v1.h +++ b/include/wlr/types/wlr_idle_inhibit_v1.h @@ -25,6 +25,8 @@ struct wlr_idle_inhibit_manager_v1 { struct { struct wl_signal new_inhibitor; } events; + + void *data; }; struct wlr_idle_inhibitor_v1 { @@ -37,6 +39,8 @@ struct wlr_idle_inhibitor_v1 { struct { struct wl_signal destroy; } events; + + void *data; }; struct wlr_idle_inhibit_manager_v1 *wlr_idle_inhibit_v1_create(struct wl_display *display); |