]> git.sur5r.net Git - i3/i3/blob - i3bar/include/common.h
Merge branch 'master' into next
[i3/i3] / i3bar / include / common.h
1 /*
2  * i3bar - an xcb-based status- and ws-bar for i3
3  *
4  * © 2010-2011 Axel Wagner and contributors
5  *
6  * See file LICNSE for license information
7  *
8  */
9 #ifndef COMMON_H_
10 #define COMMON_H_
11
12 #include <stdbool.h>
13
14 typedef struct rect_t rect;
15
16 struct ev_loop* main_loop;
17 char            *statusline;
18 char            *statusline_buffer;
19
20 struct rect_t {
21     int x;
22     int y;
23     int w;
24     int h;
25 };
26
27 #include "queue.h"
28 #include "child.h"
29 #include "ipc.h"
30 #include "outputs.h"
31 #include "util.h"
32 #include "workspaces.h"
33 #include "trayclients.h"
34 #include "xcb.h"
35 #include "ucs2_to_utf8.h"
36 #include "config.h"
37
38 #endif