Refactor type implementations

This commit is contained in:
Drew DeVault 2017-06-04 19:30:37 -04:00
parent 7051d0e79d
commit 7d82476590
10 changed files with 33 additions and 37 deletions

View file

@ -0,0 +1,15 @@
#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 *restrict session,
const char *restrict path);
void (*close)(struct wlr_session *session, int fd);
bool (*change_vt)(struct wlr_session *session, int vt);
};
#endif