diff options
author | okan | 2009-12-15 03:24:36 +0000 |
---|---|---|
committer | okan | 2009-12-15 03:24:36 +0000 |
commit | 9be5b221efa55fac8e10a5c9640b97d2174f154e (patch) | |
tree | 52790f3b7085b7721fb57fd4f6c94971e2bd2e24 /calmwm.h | |
parent | 43facbcfdbfdb0b3d82e353f16830a9dfd9170a2 (diff) | |
download | cwm-9be5b221efa55fac8e10a5c9640b97d2174f154e.tar.gz |
merge the 2 common header files; specific includes to be pulled out as
separate commits.
ok oga@
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 29 |
1 files changed, 28 insertions, 1 deletions
@@ -15,12 +15,39 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.h,v 1.110 2009/12/14 16:39:01 oga Exp $ + * $Id: calmwm.h,v 1.111 2009/12/15 03:24:36 okan Exp $ */ #ifndef _CALMWM_H_ #define _CALMWM_H_ +#include <sys/param.h> +#include <sys/queue.h> +#include <sys/stat.h> +#include <sys/wait.h> + +#include <assert.h> +#include <ctype.h> +#include <err.h> +#include <errno.h> +#include <dirent.h> +#include <getopt.h> +#include <signal.h> +#include <stdlib.h> +#include <string.h> +#include <stdio.h> +#include <unistd.h> + +#include <X11/Xatom.h> +#include <X11/Xft/Xft.h> +#include <X11/Xlib.h> +#include <X11/Xproto.h> +#include <X11/Xutil.h> +#include <X11/cursorfont.h> +#include <X11/extensions/Xinerama.h> +#include <X11/extensions/Xrandr.h> +#include <X11/keysym.h> + #define CALMWM_MAXNAMELEN 256 #undef MIN |