swayfx/sway/layout.h
2015-08-06 08:24:14 -04:00

15 lines
240 B
C

#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