labwc/include/decorations.h
John Lindgren 9550bccef2 decorations: fix accidental rename
Fixes: 4f72e6775e
("tree-wide: rename g_server to just server")
2026-03-22 10:13:17 +01:00

18 lines
480 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_DECORATIONS_H
#define LABWC_DECORATIONS_H
struct server;
struct view;
struct wlr_surface;
void kde_server_decoration_init(void);
void xdg_server_decoration_init(void);
void kde_server_decoration_update_default(void);
void kde_server_decoration_set_view(struct view *view, struct wlr_surface *surface);
void kde_server_decoration_finish(void);
void xdg_server_decoration_finish(void);
#endif /* LABWC_DECORATIONS_H */