mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
Moved session/ into backend/
This commit is contained in:
parent
ae4478e17f
commit
2ae5cd6539
7 changed files with 0 additions and 0 deletions
14
include/wlr/backend/session/interface.h
Normal file
14
include/wlr/backend/session/interface.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef WLR_SESSION_INTERFACE_H
|
||||
#define WLR_SESSION_INTERFACE_H
|
||||
|
||||
#include <wlr/session.h>
|
||||
|
||||
struct session_impl {
|
||||
struct wlr_session *(*start)(struct wl_display *disp);
|
||||
void (*finish)(struct wlr_session *session);
|
||||
int (*open)(struct wlr_session *session, const char *path);
|
||||
void (*close)(struct wlr_session *session, int fd);
|
||||
bool (*change_vt)(struct wlr_session *session, unsigned vt);
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue