mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-30 22:23:28 +01:00
12 lines
181 B
C
12 lines
181 B
C
|
#ifndef _SWAY_SURFACE_H
|
||
|
#define _SWAY_SURFACE_H
|
||
|
#include <wlr/types/wlr_surface.h>
|
||
|
|
||
|
struct sway_surface {
|
||
|
struct wlr_surface *wlr_surface;
|
||
|
|
||
|
struct wl_listener destroy;
|
||
|
};
|
||
|
|
||
|
#endif
|