mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
New session interface.
This commit is contained in:
parent
e446a5300b
commit
762ac7f4c0
6 changed files with 316 additions and 2 deletions
20
include/session/interface.h
Normal file
20
include/session/interface.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef WLR_SESSION_INTERFACE_H
|
||||
#define WLR_SESSION_INTERFACE_H
|
||||
|
||||
struct wlr_session;
|
||||
|
||||
struct session_interface {
|
||||
struct wlr_session *(*start)(void);
|
||||
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);
|
||||
};
|
||||
|
||||
struct wlr_session {
|
||||
struct session_interface iface;
|
||||
};
|
||||
|
||||
extern const struct session_interface session_logind_iface;
|
||||
|
||||
#endif
|
||||
12
include/wlr/session.h
Normal file
12
include/wlr/session.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef WLR_SESSION_H
|
||||
#define WLR_SESSION_H
|
||||
|
||||
struct wlr_session;
|
||||
|
||||
struct wlr_session *wlr_session_start(void);
|
||||
void wlr_session_finish(struct wlr_session *session);
|
||||
int wlr_session_open_file(struct wlr_session *restrict session,
|
||||
const char *restrict path);
|
||||
void wlr_session_close_file(struct wlr_session *session, int fd);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue