15 lines
236 B
C
15 lines
236 B
C
#ifndef XCB_H_
|
|
#define XCB_H_
|
|
|
|
int font_height;
|
|
|
|
void init_xcb();
|
|
void clean_xcb();
|
|
void get_atoms();
|
|
void destroy_windows();
|
|
void reconfig_windows();
|
|
void draw_bars();
|
|
int get_string_width(xcb_char2b_t *string, int glyph_len);
|
|
|
|
#endif
|