mirror of
https://github.com/swaywm/sway.git
synced 2026-04-20 06:47:03 -04:00
Add sway_surface
For extending wlr_surface with additional things.
This commit is contained in:
parent
022df2542b
commit
5421198489
5 changed files with 43 additions and 0 deletions
11
include/sway/surface.h
Normal file
11
include/sway/surface.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue