mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-09 13:29:46 -05:00
Refactor type implementations
This commit is contained in:
parent
7051d0e79d
commit
7d82476590
10 changed files with 33 additions and 37 deletions
|
|
@ -1,18 +0,0 @@
|
|||
#ifndef WLR_SESSION_INTERFACE_H
|
||||
#define WLR_SESSION_INTERFACE_H
|
||||
|
||||
#include <wlr/session.h>
|
||||
|
||||
struct session_interface {
|
||||
struct wlr_session *(*start)(struct wl_display *disp);
|
||||
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);
|
||||
bool (*change_vt)(struct wlr_session *session, int vt);
|
||||
};
|
||||
|
||||
extern const struct session_interface session_logind_iface;
|
||||
extern const struct session_interface session_direct_iface;
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue