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

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