1#ifndef _GRECS_TYPES_H
2#define _GRECS_TYPES_H
3
4#define GRECS_VERSION_MAJOR 1
5#define GRECS_VERSION_MINOR 0
6
7#define GRECS_TREE_API @GRECS_TREE_API@
8#define GRECS_SOCKADDR_LIST @GRECS_SOCKADDR_LIST@
9
10#if ENABLE_NLS
11# include "gettext.h"
12#else
13# ifndef gettext
14#  define gettext(msgid) msgid
15# endif
16#endif
17#ifndef _
18# define _(msgid) gettext(msgid)
19#endif
20#ifndef N_
21# define N_(s) s
22#endif
23
24#endif
25