Moved session/ into backend/

This commit is contained in:
Scott Anderson 2017-07-11 19:03:09 +12:00
parent ae4478e17f
commit 2ae5cd6539
7 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#ifndef WLR_SESSION_INTERFACE_H
#define WLR_SESSION_INTERFACE_H
#include <wlr/session.h>
struct session_impl {
struct wlr_session *(*start)(struct wl_display *disp);
void (*finish)(struct wlr_session *session);
int (*open)(struct wlr_session *session, const char *path);
void (*close)(struct wlr_session *session, int fd);
bool (*change_vt)(struct wlr_session *session, unsigned vt);
};
#endif