Move border-struct to common/border.h for sharing

This commit is contained in:
Johan Malm 2023-06-05 21:48:47 +01:00
parent 3bd441caa0
commit dc0d75ca36
2 changed files with 13 additions and 7 deletions

12
include/common/border.h Normal file
View file

@ -0,0 +1,12 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_BORDER_H
#define LABWC_BORDER_H
struct border {
int top;
int right;
int bottom;
int left;
};
#endif /* LABWC_BORDER_H */