1
0
Fork 0

allow C++ to include the header

This commit is contained in:
ehofman 2009-05-01 08:05:37 +00:00 committed by Tim Moore
parent 09adb5ee05
commit fd2361ef55

View file

@ -28,6 +28,10 @@
#ifndef __XML_CONFIG
#define __XML_CONFIG 1
#ifdef __cplusplus
extern "C" {
#endif
enum
{
XML_NO_ERROR = 0,
@ -359,5 +363,9 @@ size_t xmlErrorGetColumnNo(const void *, int);
const char *xmlErrorGetString(const void *, int);
#endif
#ifdef __cplusplus
}
#endif
#endif /* __XML_CONFIG */