mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-03 09:01:40 -05:00
xwayland: split xwm structure out, initial xwm.c
This commit is contained in:
parent
60451521bd
commit
b2bab1af5c
7 changed files with 117 additions and 5 deletions
|
|
@ -1,6 +1,22 @@
|
|||
#ifndef XWAYLAND_INTERNALS_H
|
||||
#define XWAYLAND_INTERNALS_H
|
||||
#include <xcb/xcb.h>
|
||||
#include <wayland-server-core.h>
|
||||
#include <wlr/xwayland.h>
|
||||
|
||||
struct wlr_xwm {
|
||||
struct wlr_xwayland *xwayland;
|
||||
struct wl_event_source *event_source;
|
||||
struct wl_listener surface_listener;
|
||||
|
||||
xcb_connection_t *xcb_connection;
|
||||
xcb_screen_t *xcb_screen;
|
||||
};
|
||||
|
||||
void unlink_sockets(int display);
|
||||
int open_display_sockets(int socks[2]);
|
||||
|
||||
void xwm_destroy(struct wlr_xwm *xwm);
|
||||
struct wlr_xwm *xwm_create(struct wlr_xwayland *wlr_xwayland);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue