Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasAdam committed May 19, 2024
1 parent 18ffc47 commit 4df1668
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion fvwm/fvwm.h
Original file line number Diff line number Diff line change
Expand Up @@ -572,12 +572,19 @@ typedef struct style_flags

typedef struct style_id_t
{
char *name;
XID window_id;
char *name;
char *class;
char *resource;
char *icon;
struct
{
unsigned has_name:1;
unsigned has_window_id:1;
unsigned has_class:1;
unsigned has_icon:1;
unsigned has_name:1;
unsigned has_window_id:1;
} flags;
} style_id_t;

Expand Down
1 change: 1 addition & 0 deletions fvwm/style.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
/* ---------------------------- forward declarations ----------------------- */

static int style_set_border_colorset(window_style *, char *, int);
static bool parse_v3_style_id(char *, style_id_t);

/* ---------------------------- local variables ---------------------------- */

Expand Down

0 comments on commit 4df1668

Please sign in to comment.