]> git.sur5r.net Git - i3/i3/blobdiff - include/all.h
Merge branch 'release-4.16.1'
[i3/i3] / include / all.h
index 648b0e0ac40727115d0b5f9e238cd9969a1c71fd..e93b066bc59f64058dce80ae77f7d775a61a8bc7 100644 (file)
@@ -2,7 +2,7 @@
  * vim:ts=4:sw=4:expandtab
  *
  * i3 - an improved dynamic tiling window manager
- * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
+ * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
  *
  * This header file includes all relevant files of i3 and the most often used
  * system header files. This reduces boilerplate (the amount of code duplicated
@@ -10,8 +10,9 @@
  * compile-time.
  *
  */
-#ifndef _ALL_H
-#define _ALL_H
+#pragma once
+
+#include <config.h>
 
 #include <assert.h>
 #include <stdbool.h>
@@ -27,6 +28,7 @@
 #include <errno.h>
 #include <err.h>
 #include <stdint.h>
+#include <inttypes.h>
 #include <math.h>
 #include <limits.h>
 
 #include <xcb/xcb_keysyms.h>
 #include <xcb/xcb_icccm.h>
 
-/* Contains compatibility definitions for old libxcb versions */
-#ifdef XCB_COMPAT
-#include "xcb_compat.h"
-#endif
+#include <yajl/yajl_gen.h>
+#include <yajl/yajl_version.h>
 
 #include "data.h"
 #include "util.h"
@@ -51,8 +51,9 @@
 #include "i3.h"
 #include "x.h"
 #include "click.h"
+#include "key_press.h"
 #include "floating.h"
-#include "config.h"
+#include "configuration.h"
 #include "handlers.h"
 #include "randr.h"
 #include "xinerama.h"
 #include "scratchpad.h"
 #include "commands.h"
 #include "commands_parser.h"
-
-#endif
+#include "bindings.h"
+#include "config_directives.h"
+#include "config_parser.h"
+#include "fake_outputs.h"
+#include "display_version.h"
+#include "restore_layout.h"
+#include "sync.h"
+#include "main.h"