Move the manage_*-functions into their own file as they got quite large

This commit is contained in:
Michael Stapelberg
2009-05-16 18:25:04 +02:00
parent d5d44e66a2
commit b35599004a
5 changed files with 398 additions and 330 deletions

View File

@ -32,9 +32,4 @@ extern xcb_event_handlers_t evenths;
extern int num_screens;
extern xcb_atom_t atoms[NUM_ATOMS];
void manage_window(xcb_property_handlers_t *prophs, xcb_connection_t *conn, xcb_window_t window, window_attributes_t wa);
void reparent_window(xcb_connection_t *conn, xcb_window_t child,
xcb_visualid_t visual, xcb_window_t root, uint8_t depth,
int16_t x, int16_t y, uint16_t width, uint16_t height);
#endif