mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
11 lines
346 B
C
11 lines
346 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_DIRECTION_H
|
|
#define LABWC_DIRECTION_H
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
|
#include "common/edge.h"
|
|
|
|
bool direction_from_edge(enum lab_edge edge, enum wlr_direction *direction);
|
|
enum wlr_direction direction_get_opposite(enum wlr_direction direction);
|
|
|
|
#endif /* LABWC_DIRECTION_H */
|