1 /*
2  * This is a stable interface of wlroots. Future changes will be limited to:
3  *
4  * - New functions
5  * - New struct members
6  * - New enum members
7  *
8  * Note that wlroots does not make an ABI compatibility promise - in the future,
9  * the layout and size of structs used by wlroots may change, requiring code
10  * depending on this header to be recompiled (but not edited).
11  *
12  * Breaking changes are announced by email and follow a 1-year deprecation
13  * schedule. Send an email to ~sircmpwn/wlroots-announce+subscribe@lists.sr.ht
14  * to receive these announcements.
15  */
16 
17 #ifndef WLR_UTIL_EDGES_H
18 #define WLR_UTIL_EDGES_H
19 
20 enum wlr_edges {
21 	WLR_EDGE_NONE = 0,
22 	WLR_EDGE_TOP = 1 << 0,
23 	WLR_EDGE_BOTTOM = 1 << 1,
24 	WLR_EDGE_LEFT = 1 << 2,
25 	WLR_EDGE_RIGHT = 1 << 3,
26 };
27 
28 #endif
29