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.
16 lines
417 B
16 lines
417 B
8 years ago
|
#ifndef WLR_SESSION_INTERFACE_H
|
||
|
#define WLR_SESSION_INTERFACE_H
|
||
|
|
||
8 years ago
|
#include <wlr/session.h>
|
||
8 years ago
|
|
||
8 years ago
|
struct session_impl {
|
||
8 years ago
|
struct wlr_session *(*start)(struct wl_display *disp);
|
||
8 years ago
|
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);
|
||
8 years ago
|
bool (*change_vt)(struct wlr_session *session, int vt);
|
||
8 years ago
|
};
|
||
|
|
||
|
#endif
|