blob: a6fb35a7adde7d305c239e960e29276dad02054c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _SWAY_LAYOUT_H
#define _SWAY_LAYOUT_H
#include <wlc/wlc.h>
#include "list.h"
struct sway_container {
wlc_handle output; // May be NULL
list_t children;
};
wlc_handle get_topmost(wlc_handle output, size_t offset);
#endif
|