1 /*
2  * XML Security Library (http://www.aleksey.com/xmlsec).
3  *
4  * Internal header only used during the compilation,
5  *
6  * This is free software; see Copyright file in the source
7  * distribution for preciese wording.
8  *
9  * Copyright (C) 2002-2016 Aleksey Sanin <aleksey@aleksey.com>. All Rights Reserved.
10  */
11 
12 #ifndef __XMLSEC_GLOBALS_H__
13 #define __XMLSEC_GLOBALS_H__
14 
15 /**
16  * Use autoconf defines if present.
17  */
18 #ifdef HAVE_CONFIG_H
19 #include "config.h"
20 #endif /* HAVE_CONFIG_H */
21 
22 #define IN_XMLSEC
23 #define XMLSEC_PRIVATE
24 
25 /* Include common error helper macros. */
26 #include "errors_helpers.h"
27 
28 #endif /* __XMLSEC_GLOBALS_H__ */
29