X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fi3.h;h=d64532545bb1a12179e115bf0194162c9a0279f6;hb=c92aa648cb969e7a6d9938b6463962f5089ec7e3;hp=f2b97824268266598447f554b2baaba1fdf82f23;hpb=2a29d9c2c16ebd939d6729fe755747799472dd6c;p=i3%2Fi3 diff --git a/include/i3.h b/include/i3.h index f2b97824..d6453254 100644 --- a/include/i3.h +++ b/include/i3.h @@ -2,25 +2,41 @@ * 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 file LICENSE for license information. + * i3.h: global variables that are used all over i3. * */ +#ifndef _I3_H +#define _I3_H + +#include +#include + #include #include +#define SN_API_NOT_YET_FROZEN 1 +#include + #include "queue.h" #include "data.h" #include "xcb.h" -#ifndef _I3_H -#define _I3_H - +/** 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. */ +extern struct rlimit original_rlimit_core; +/** Whether this version of i3 is a debug build or a release build. */ +extern bool debug_build; extern xcb_connection_t *conn; extern int conn_screen; +/** The last timestamp we got from X11 (timestamps are included in some events + * and are used for some things, like determining a unique ID in startup + * notification). */ +extern xcb_timestamp_t last_timestamp; +extern SnDisplay *sndisplay; extern xcb_key_symbols_t *keysyms; extern char **start_argv; extern Display *xlibdpy, *xkbdpy; @@ -36,5 +52,6 @@ extern uint8_t root_depth; extern bool xcursor_supported, xkb_supported; extern xcb_window_t root; extern struct ev_loop *main_loop; +extern bool only_check_config; #endif