mirror of
https://github.com/i3/i3.git
synced 2026-03-06 16:06:52 +00:00
17 lines
283 B
C
17 lines
283 B
C
/*
|
|
* vim:ts=4:sw=4:expandtab
|
|
*/
|
|
|
|
#ifndef _X_H
|
|
#define _X_H
|
|
|
|
void x_con_init(Con *con);
|
|
void x_reinit(Con *con);
|
|
void x_con_kill(Con *con);
|
|
void x_window_kill(xcb_window_t window);
|
|
void x_draw_decoration(Con *con);
|
|
void x_push_changes(Con *con);
|
|
void x_raise_con(Con *con);
|
|
|
|
#endif
|