include: add config/types.h

This commit is contained in:
John Lindgren 2025-08-17 16:01:50 -04:00 committed by Hiroaki Yamamoto
parent 6dea8c0dcc
commit 9d49d19cd2
54 changed files with 414 additions and 368 deletions

View file

@ -27,6 +27,7 @@
#include "common/macros.h"
#include "common/mem.h"
#include "common/scene-helpers.h"
#include "config/rcxml.h"
#include "labwc.h"
#include "layers.h"
#include "node.h"
@ -977,7 +978,7 @@ output_nearest_to_cursor(struct server *server)
}
struct output *
output_get_adjacent(struct output *output, enum view_edge edge, bool wrap)
output_get_adjacent(struct output *output, enum lab_edge edge, bool wrap)
{
if (!output_is_usable(output)) {
wlr_log(WLR_ERROR,
@ -986,7 +987,7 @@ output_get_adjacent(struct output *output, enum view_edge edge, bool wrap)
}
enum wlr_direction direction;
if (!direction_from_view_edge(edge, &direction)) {
if (!direction_from_edge(edge, &direction)) {
return NULL;
}