2018-07-13 14:40:56 +02:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
2017-09-23 10:26:01 +02:00
|
|
|
#ifndef WLR_BACKEND_SESSION_INTERFACE_H
|
|
|
|
#define WLR_BACKEND_SESSION_INTERFACE_H
|
2017-05-03 04:11:22 +02:00
|
|
|
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2017-05-03 04:11:22 +02:00
|
|
|
|
2017-06-05 01:30:37 +02:00
|
|
|
struct session_impl {
|
2017-08-26 01:56:43 +02:00
|
|
|
struct wlr_session *(*create)(struct wl_display *disp);
|
|
|
|
void (*destroy)(struct wlr_session *session);
|
2017-07-09 07:53:13 +02:00
|
|
|
int (*open)(struct wlr_session *session, const char *path);
|
2017-05-03 04:11:22 +02:00
|
|
|
void (*close)(struct wlr_session *session, int fd);
|
2017-07-09 07:53:13 +02:00
|
|
|
bool (*change_vt)(struct wlr_session *session, unsigned vt);
|
2017-05-03 04:11:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|