typedefs: abc

This commit is contained in:
Leonardo Hernández Hernández 2022-04-05 22:15:46 -05:00
parent 02ac9378c4
commit af741e586b
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 8 additions and 8 deletions

16
dwl.c
View File

@ -120,6 +120,14 @@ typedef struct {
int isfullscreen;
} Client;
typedef struct {
uint32_t singular_anchor;
uint32_t anchor_triplet;
int *positive_axis;
int *negative_axis;
int margin;
} Edge;
typedef struct {
uint32_t mod;
xkb_keysym_t keysym;
@ -152,14 +160,6 @@ typedef struct {
struct wlr_box geo;
} LayerSurface;
typedef struct {
uint32_t singular_anchor;
uint32_t anchor_triplet;
int *positive_axis;
int *negative_axis;
int margin;
} Edge;
typedef struct {
const char *symbol;
void (*arrange)(Monitor *);