You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
460 B
21 lines
460 B
8 years ago
|
#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
|