i3/i3bar/include/xcb.h
Axel Wagner 7d7867acce Be more strict with encapsulation
I.e. move the xcb-event-handling into xcb.c and the
child-process-communications into newly created child.c.
Also change some includes.
2010-08-05 05:09:59 +02:00

15 lines
211 B
C

#ifndef XCB_H_
#define XCB_H_
int font_height;
void init_xcb();
void clean_xcb();
void get_atoms();
void destroy_windows();
void create_windows();
void draw_bars();
int get_string_width(char *string);
#endif