mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
13 lines
254 B
C
13 lines
254 B
C
#ifndef _SWAY_DECORATION_H
|
|
#define _SWAY_DECORATION_H
|
|
|
|
#include <wlr/types/wlr_server_decoration.h>
|
|
|
|
struct sway_server_decoration {
|
|
struct wlr_server_decoration *wlr_server_decoration;
|
|
|
|
struct wl_listener destroy;
|
|
struct wl_listener mode;
|
|
};
|
|
|
|
#endif
|