i3/i3-nagbar/i3-nagbar.h
2012-09-22 13:31:08 +02:00

22 lines
378 B
C

#ifndef I3_NAGBAR
#define I3_NAGBAR
#include <err.h>
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
#define FREE(pointer) do { \
if (pointer != NULL) { \
free(pointer); \
pointer = NULL; \
} \
} \
while (0)
#define xmacro(atom) xcb_atom_t A_ ## atom;
#include "atoms.xmacro"
#undef xmacro
extern xcb_window_t root;
#endif