mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
Make all listeners private
This commit is contained in:
parent
3bbfae73ae
commit
1520be3c5c
44 changed files with 365 additions and 180 deletions
|
|
@ -60,13 +60,16 @@ struct wlr_session {
|
|||
struct wl_list devices; // wlr_device.link
|
||||
|
||||
struct wl_event_loop *event_loop;
|
||||
struct wl_listener event_loop_destroy;
|
||||
|
||||
struct {
|
||||
struct wl_signal active;
|
||||
struct wl_signal add_drm_card; // struct wlr_session_add_event
|
||||
struct wl_signal destroy;
|
||||
} events;
|
||||
|
||||
struct {
|
||||
struct wl_listener event_loop_destroy;
|
||||
} WLR_PRIVATE;
|
||||
};
|
||||
|
||||
struct wlr_session_add_event {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue