diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/backend/session.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/wlr/backend/session.h b/include/wlr/backend/session.h index 82f22a3f..b63c356c 100644 --- a/include/wlr/backend/session.h +++ b/include/wlr/backend/session.h @@ -43,10 +43,15 @@ struct wlr_session { struct wl_listener display_destroy; struct { + struct wl_signal add_drm_card; // struct wlr_session_add_event struct wl_signal destroy; } events; }; +struct wlr_session_add_event { + const char *path; +}; + /* * Opens a session, taking control of the current virtual terminal. * This should not be called if another program is already in control |