Move includes out of extern "C" block (#435)

"mbdtools.h" couldn't be included from C++ files, because the "glib.h"
include is in the extern "C" block. The latter includes C++ headers
for C++ source files, which define templates. These don't work with
extern "C" linkage and the compilation falls apart with numerous
errors.

To fix this problem, move the includes out of the extern "C" block.
This commit is contained in:
bstoeger 2024-05-13 15:12:45 +02:00 committed by GitHub
parent 7e057e3197
commit f517db5df0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,9 +21,6 @@
#define MDBTOOLS_H_HAVE_ICONV_H @HAVE_ICONV_H@
#define MDBTOOLS_H_HAVE_XLOCALE_H @HAVE_XLOCALE_H@
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
@ -48,6 +45,10 @@
#include <io.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
/** \addtogroup mdbtools
* @{
*/