mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
15 lines
431 B
C
15 lines
431 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef __LAB_DECORATIONS_H
|
|
#define __LAB_DECORATIONS_H
|
|
|
|
struct server;
|
|
struct view;
|
|
struct wlr_surface;
|
|
|
|
void kde_server_decoration_init(struct server *server);
|
|
void xdg_server_decoration_init(struct server *server);
|
|
|
|
void kde_server_decoration_update_default(void);
|
|
void kde_server_decoration_set_view(struct view *view, struct wlr_surface *surface);
|
|
|
|
#endif /* __LAB_DECORATIONS_H */
|