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

16 lines
418 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-05-13 15:12:47 +02:00
#include <wlr/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);
int (*open)(struct wlr_session *restrict session,
2017-06-09 17:28:10 +02:00
const char *restrict path);
2017-05-03 04:11:22 +02:00
void (*close)(struct wlr_session *session, int fd);
2017-05-13 13:56:40 +02:00
bool (*change_vt)(struct wlr_session *session, int vt);
2017-05-03 04:11:22 +02:00
};
#endif