mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-14 08:22:25 -04:00
Mutter has done the same [1] a while back. This simplifies the code and removes support for this legacy feature. [1]: https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1424
10 lines
204 B
C
10 lines
204 B
C
#ifndef XWAYLAND_SOCKETS_H
|
|
#define XWAYLAND_SOCKETS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool set_cloexec(int fd, bool cloexec);
|
|
void unlink_display_sockets(int display);
|
|
int open_display_sockets(int *sock);
|
|
|
|
#endif
|