From e61c74dba5dd3cd2a3e48aa1fc7ff2658e5cb6e1 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 6 Jun 2026 20:39:36 +0200 Subject: misc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- common.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 common.h (limited to 'common.h') diff --git a/common.h b/common.h new file mode 100644 index 0000000..a7cd690 --- /dev/null +++ b/common.h @@ -0,0 +1,27 @@ +/* See LICENSE file for copyright and license details. */ +#ifndef COMMON_H_ +#define COMMON_H_ + +#include +#include +#include +#if defined(__GNUC__) +# pragma GCC diagnostic push +# pragma GCC diagnostic ignored "-Wdeprecated-declarations" +# pragma GCC diagnostic ignored "-Wstrict-prototypes" +#endif +#include +#include +#if defined(__GNUC__) +# pragma GCC diagnostic pop +#endif + +#if GTK_CHECK_VERSION(2, 12, 0) +# define HAVE_ITEM_TOOLTIPS +#endif + +#define COMMA , + +#include "char-table.h" + +#endif -- cgit v1.3.1