New session interface.

This commit is contained in:
Scott Anderson 2017-05-03 14:11:22 +12:00
parent e446a5300b
commit 762ac7f4c0
6 changed files with 316 additions and 2 deletions

View file

@ -0,0 +1,20 @@
#ifndef WLR_SESSION_INTERFACE_H
#define WLR_SESSION_INTERFACE_H
struct wlr_session;
struct session_interface {
struct wlr_session *(*start)(void);
void (*finish)(struct wlr_session *session);
int (*open)(struct wlr_session *restrict session,
const char *restrict path);
void (*close)(struct wlr_session *session, int fd);
};
struct wlr_session {
struct session_interface iface;
};
extern const struct session_interface session_logind_iface;
#endif

12
include/wlr/session.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef WLR_SESSION_H
#define WLR_SESSION_H
struct wlr_session;
struct wlr_session *wlr_session_start(void);
void wlr_session_finish(struct wlr_session *session);
int wlr_session_open_file(struct wlr_session *restrict session,
const char *restrict path);
void wlr_session_close_file(struct wlr_session *session, int fd);
#endif