wlroots-hyprland/include/wlr/backend/session/interface.h

15 lines
410 B
C
Raw Normal View History

2017-05-03 04:11:22 +02:00
#ifndef WLR_SESSION_INTERFACE_H
#define WLR_SESSION_INTERFACE_H
2017-07-11 09:18:34 +02:00
#include <wlr/backend/session.h>
2017-05-03 04:11:22 +02:00
2017-06-05 01:30:37 +02:00
struct session_impl {
2017-05-13 13:56:40 +02:00
struct wlr_session *(*start)(struct wl_display *disp);
2017-05-03 04:11:22 +02:00
void (*finish)(struct wlr_session *session);
2017-07-09 07:53:13 +02:00
int (*open)(struct wlr_session *session, const char *path);
2017-05-03 04:11:22 +02:00
void (*close)(struct wlr_session *session, int fd);
2017-07-09 07:53:13 +02:00
bool (*change_vt)(struct wlr_session *session, unsigned vt);
2017-05-03 04:11:22 +02:00
};
#endif