x11.h (318B)
1 #ifndef X11_H 2 #define X11_H 3 4 #include <xcb/xcb.h> 5 6 typedef xcb_connection_t x11_connection; 7 8 x11_connection* x11_connection_open(void); 9 void x11_connection_close(x11_connection* const connection); 10 int x11_set_root_name(x11_connection* const connection, 11 const char* const name); 12 13 #endif // X11_H