@ -17,7 +17,7 @@
|
||||
|
||||
typedef struct rect_t rect;
|
||||
|
||||
struct ev_loop *main_loop;
|
||||
extern struct ev_loop *main_loop;
|
||||
|
||||
struct rect_t {
|
||||
int x;
|
||||
@ -82,8 +82,8 @@ struct status_block {
|
||||
blocks;
|
||||
};
|
||||
|
||||
TAILQ_HEAD(statusline_head, status_block)
|
||||
statusline_head;
|
||||
extern TAILQ_HEAD(statusline_head, status_block)
|
||||
statusline_head;
|
||||
|
||||
#include "child.h"
|
||||
#include "ipc.h"
|
||||
|
@ -74,7 +74,7 @@ typedef struct config_t {
|
||||
S_SHOW = 1 } hidden_state;
|
||||
} config_t;
|
||||
|
||||
config_t config;
|
||||
extern config_t config;
|
||||
|
||||
/**
|
||||
* Start parsing the received bar configuration JSON string
|
||||
|
@ -19,7 +19,7 @@
|
||||
typedef struct i3_output i3_output;
|
||||
|
||||
SLIST_HEAD(outputs_head, i3_output);
|
||||
struct outputs_head* outputs;
|
||||
extern struct outputs_head* outputs;
|
||||
|
||||
/*
|
||||
* Start parsing the received JSON string
|
||||
|
@ -53,7 +53,7 @@ struct xcb_color_strings_t {
|
||||
typedef struct xcb_colors_t xcb_colors_t;
|
||||
|
||||
/* Cached width of the custom separator if one was set */
|
||||
int separator_symbol_width;
|
||||
extern int separator_symbol_width;
|
||||
|
||||
/*
|
||||
* Early initialization of the connection to X11: Everything which does not
|
||||
|
Reference in New Issue
Block a user