Move stuff to include/ and src/

This commit is contained in:
Michael Stapelberg
2009-02-13 19:09:25 +01:00
parent 7c0317c8a3
commit 82dd64ff24
21 changed files with 15 additions and 13 deletions

18
include/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