diff options
author | bernd | 2007-04-27 17:58:48 +0000 |
---|---|---|
committer | bernd | 2007-04-27 17:58:48 +0000 |
commit | 055eec93ac495df814cc5585fd55712a6cac06c4 (patch) | |
tree | a7f9e9b6a1231b28b552199ac2e27c45d64a9ba7 /headers.h | |
download | cwm-055eec93ac495df814cc5585fd55712a6cac06c4.tar.gz |
Initial import of cwm-3.
tested by sturm@, ok matthieu@
Diffstat (limited to 'headers.h')
-rw-r--r-- | headers.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/headers.h b/headers.h new file mode 100644 index 0000000..4ae8719 --- /dev/null +++ b/headers.h @@ -0,0 +1,52 @@ +/* + * calmwm - the calm window manager + * + * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> + * All rights reserved. + * + * $Id: headers.h,v 1.1.1.1 2007/04/27 17:58:48 bernd Exp $ + */ + +#ifndef _CALMWM_HEADERS_H_ +#define _CALMWM_HEADERS_H_ + +#include <sys/types.h> + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include <sys/queue.h> +#include <sys/wait.h> +#include <sys/param.h> +#include <sys/stat.h> + +#include <assert.h> +#include <stdlib.h> +#include <string.h> +#include <signal.h> +#include <dirent.h> +#include <getopt.h> +#include <stdio.h> +#include <errno.h> +#include <unistd.h> +#include <ctype.h> + +#include <X11/cursorfont.h> +#include <X11/extensions/shape.h> +#include <X11/Xlib.h> +#include <X11/Xutil.h> +#include <X11/keysym.h> +#include <X11/Xatom.h> +#include <X11/Xproto.h> +#include <X11/Intrinsic.h> +#include <X11/Xos.h> +#include <X11/Xft/Xft.h> + +#ifdef USE_XOSD +#include <xosd.h> +#endif /* USE_XOSD */ + +#include <err.h> + +#endif /* _CALMWM_HEADERS_H_ */ |