mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
12 lines
181 B
C
12 lines
181 B
C
#ifndef WLR_UTIL_EDGES_H
|
|
#define WLR_UTIL_EDGES_H
|
|
|
|
enum wlr_edges {
|
|
WLR_EDGE_NONE = 0,
|
|
WLR_EDGE_TOP = 1,
|
|
WLR_EDGE_BOTTOM = 2,
|
|
WLR_EDGE_LEFT = 4,
|
|
WLR_EDGE_RIGHT = 8,
|
|
};
|
|
|
|
#endif
|