Check for multi backend before using it

This commit is contained in:
Drew DeVault 2017-08-05 23:08:35 -04:00
parent f1a069d50d
commit 5bf61ca7ed
3 changed files with 12 additions and 4 deletions

View file

@ -10,6 +10,8 @@ struct wlr_backend *wlr_multi_backend_create(struct wlr_session *session,
void wlr_multi_backend_add(struct wlr_backend *multi,
struct wlr_backend *backend);
bool wlr_backend_is_multi(struct wlr_backend *backend);
struct wlr_session *wlr_multi_get_session(struct wlr_backend *base);
#endif