Add sway_surface

For extending wlr_surface with additional things.
This commit is contained in:
Ivan Molodetskikh 2019-10-09 16:06:30 +03:00 committed by Simon Ser
parent 022df2542b
commit 5421198489
5 changed files with 43 additions and 0 deletions

11
include/sway/surface.h Normal file
View file

@ -0,0 +1,11 @@
#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