X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fi3.h;h=f1912fd55eb633df71f999aa3ebe793932bee62a;hb=884214f14fdbd0a4a368d2a36d5e50324fa1d52a;hp=1bc8b55da13bd81a3b5aa6f93a1ee84c98a69016;hpb=13147978c50b4efa5b4eb0b65d8175aa596a76fe;p=i3%2Fi3 diff --git a/include/i3.h b/include/i3.h index 1bc8b55d..f1912fd5 100644 --- a/include/i3.h +++ b/include/i3.h @@ -2,18 +2,18 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * i3.h: global variables that are used all over i3. * */ -#ifndef I3_I3_H -#define I3_I3_H +#pragma once #include #include #include +#include #include @@ -24,6 +24,9 @@ #include "data.h" #include "xcb.h" +/** Git commit identifier, from version.c */ +extern const char *i3_version; + /** The original value of RLIMIT_CORE when i3 was started. We need to restore * this before starting any other process, since we set RLIMIT_CORE to * RLIM_INFINITY for i3 debugging versions. */ @@ -43,7 +46,7 @@ extern xcb_key_symbols_t *keysyms; extern char **start_argv; extern Display *xlibdpy, *xkbdpy; extern int xkb_current_group; -extern TAILQ_HEAD(bindings_head, Binding) *bindings; +extern TAILQ_HEAD(bindings_head, Binding) * bindings; extern TAILQ_HEAD(autostarts_head, Autostart) autostarts; extern TAILQ_HEAD(autostarts_always_head, Autostart) autostarts_always; extern TAILQ_HEAD(ws_assignments_head, Workspace_Assignment) ws_assignments; @@ -62,5 +65,3 @@ extern bool xcursor_supported, xkb_supported; extern xcb_window_t root; extern struct ev_loop *main_loop; extern bool only_check_config; - -#endif