1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-12 16:52:07 +01:00
wlroots-hyprland/include/wlr/backend/session/interface.h

15 lines
428 B
C
Raw Normal View History

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