mirror of
https://github.com/labwc/labwc.git
synced 2026-04-12 08:21:13 -04:00
12 lines
275 B
C
12 lines
275 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
#ifndef LABWC_SERVER_UNPRIV_H
|
||
|
|
#define LABWC_SERVER_UNPRIV_H
|
||
|
|
|
||
|
|
struct server;
|
||
|
|
struct wl_client;
|
||
|
|
|
||
|
|
void unpriv_socket_start(struct server *server);
|
||
|
|
bool is_unpriv_client(const struct wl_client *wl_client);
|
||
|
|
|
||
|
|
#endif /* LABWC_UNPRIV_H */
|