Cleanups, first strike. Move stuff to separate files, eliminate warnings

This commit is contained in:
Michael Stapelberg
2009-02-13 19:04:45 +01:00
parent af6aee4f4f
commit 7c0317c8a3
18 changed files with 1263 additions and 1128 deletions

18
i3.h Normal file
View File

@ -0,0 +1,18 @@
#include <xcb/xcb.h>
#include <xcb/xcb_event.h>
#include <X11/XKBlib.h>
#include "queue.h"
#ifndef _I3_H
#define _I3_H
extern Display *xkbdpy;
extern TAILQ_HEAD(bindings_head, Binding) bindings;
extern xcb_event_handlers_t evenths;
extern char *pattern;
extern char **environment;
extern int num_screens;
#endif