1 /*
2  * The libuna header wrapper
3  *
4  * Copyright (C) 2013-2021, Joachim Metz <joachim.metz@gmail.com>
5  *
6  * Refer to AUTHORS for acknowledgements.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #if !defined( _CREG_TEST_LIBUNA_H )
23 #define _CREG_TEST_LIBUNA_H
24 
25 #include <common.h>
26 
27 /* Define HAVE_LOCAL_LIBUNA for local use of libuna
28  */
29 #if defined( HAVE_LOCAL_LIBUNA )
30 
31 #include <libuna_base16_stream.h>
32 #include <libuna_base32_stream.h>
33 #include <libuna_base64_stream.h>
34 #include <libuna_byte_stream.h>
35 #include <libuna_unicode_character.h>
36 #include <libuna_url_stream.h>
37 #include <libuna_utf16_stream.h>
38 #include <libuna_utf16_string.h>
39 #include <libuna_utf32_stream.h>
40 #include <libuna_utf32_string.h>
41 #include <libuna_utf7_stream.h>
42 #include <libuna_utf8_stream.h>
43 #include <libuna_utf8_string.h>
44 #include <libuna_types.h>
45 
46 #else
47 
48 /* If libtool DLL support is enabled set LIBUNA_DLL_IMPORT
49  * before including libuna.h
50  */
51 #if defined( _WIN32 ) && defined( DLL_IMPORT )
52 #define LIBUNA_DLL_IMPORT
53 #endif
54 
55 #include <libuna.h>
56 
57 #endif /* defined( HAVE_LOCAL_LIBUNA ) */
58 
59 #endif /* !defined( _CREG_TEST_LIBUNA_H ) */
60 
61