mirror of
https://github.com/NickHu/sway
synced 2024-12-30 22:23:30 +01:00
14 lines
240 B
C
14 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
|