mirror of
https://github.com/NickHu/sway
synced 2024-12-30 22:23:30 +01:00
5421198489
For extending wlr_surface with additional things.
11 lines
181 B
C
11 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
|