]> git.sur5r.net Git - i3/i3/blob - i3bar/include/common.h
Update changelog and copyright, bump version and more
[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 typedef struct rect_t rect;
13 typedef int bool;
14
15 struct ev_loop* main_loop;
16 char            *statusline;
17 char            *statusline_buffer;
18
19 struct rect_t {
20         int     x;
21         int     y;
22         int     w;
23         int     h;
24 };
25
26 #include "queue.h"
27 #include "child.h"
28 #include "ipc.h"
29 #include "outputs.h"
30 #include "util.h"
31 #include "workspaces.h"
32 #include "xcb.h"
33 #include "ucs2_to_utf8.h"
34 #include "config.h"
35
36 #endif