mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-04 20:18:08 +08:00
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:
parent
7e057e3197
commit
f517db5df0
@ -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
|
||||
* @{
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user