2003-08-25 09:15:36 +00:00
|
|
|
/*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Summary: macros for marking symbols as exportable/importable.
|
|
|
|
* Description: macros for marking symbols as exportable/importable.
|
2003-08-25 09:15:36 +00:00
|
|
|
*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Copy: See Copyright for the status of this software.
|
2003-08-25 09:15:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_EXPORTS_H__
|
|
|
|
#define __XML_EXPORTS_H__
|
|
|
|
|
2020-06-04 23:02:08 +02:00
|
|
|
/** DOC_DISABLE */
|
2023-12-23 04:50:47 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Symbol visibility
|
|
|
|
*/
|
|
|
|
|
2022-12-08 03:37:24 +01:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
#ifdef LIBXML_STATIC
|
|
|
|
#define XMLPUBLIC
|
|
|
|
#elif defined(IN_LIBXML)
|
|
|
|
#define XMLPUBLIC __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define XMLPUBLIC __declspec(dllimport)
|
|
|
|
#endif
|
2020-06-04 23:02:08 +02:00
|
|
|
#else /* not Windows */
|
2022-12-08 03:37:24 +01:00
|
|
|
#define XMLPUBLIC
|
2020-06-04 23:02:08 +02:00
|
|
|
#endif /* platform switch */
|
2003-08-25 09:15:36 +00:00
|
|
|
|
2020-06-04 23:02:08 +02:00
|
|
|
#define XMLPUBFUN XMLPUBLIC
|
2003-08-25 09:15:36 +00:00
|
|
|
|
2020-06-04 23:02:08 +02:00
|
|
|
#define XMLPUBVAR XMLPUBLIC extern
|
2003-08-25 09:15:36 +00:00
|
|
|
|
|
|
|
/* Compatibility */
|
2022-12-08 02:51:52 +01:00
|
|
|
#define XMLCALL
|
|
|
|
#define XMLCDECL
|
2023-12-23 04:50:47 +01:00
|
|
|
#ifndef LIBXML_DLL_IMPORT
|
|
|
|
#define LIBXML_DLL_IMPORT XMLPUBVAR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attributes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(__clang__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 403)
|
|
|
|
#define LIBXML_ATTR_ALLOC_SIZE(x) __attribute__((alloc_size(x)))
|
|
|
|
#else
|
|
|
|
#define LIBXML_ATTR_ALLOC_SIZE(x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __GNUC__ * 100 + __GNUC_MINOR__ >= 303
|
|
|
|
#define LIBXML_ATTR_FORMAT(fmt,args) \
|
|
|
|
__attribute__((__format__(__printf__,fmt,args)))
|
|
|
|
#else
|
|
|
|
#define LIBXML_ATTR_FORMAT(fmt,args)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef XML_DEPRECATED
|
|
|
|
#if defined(IN_LIBXML)
|
|
|
|
#define XML_DEPRECATED
|
|
|
|
#elif __GNUC__ * 100 + __GNUC_MINOR__ >= 301
|
|
|
|
#define XML_DEPRECATED __attribute__((deprecated))
|
2024-09-04 16:19:42 +02:00
|
|
|
#elif defined(_MSC_VER) && _MSC_VER >= 1400
|
2023-12-23 04:50:47 +01:00
|
|
|
/* Available since Visual Studio 2005 */
|
|
|
|
#define XML_DEPRECATED __declspec(deprecated)
|
|
|
|
#else
|
|
|
|
#define XML_DEPRECATED
|
|
|
|
#endif
|
2003-08-25 09:15:36 +00:00
|
|
|
#endif
|
2023-12-23 04:50:47 +01:00
|
|
|
|
2024-06-10 23:06:13 +02:00
|
|
|
#ifndef XML_DEPRECATED_MEMBER
|
|
|
|
#if defined(IN_LIBXML)
|
|
|
|
#define XML_DEPRECATED_MEMBER
|
|
|
|
#elif __GNUC__ * 100 + __GNUC_MINOR__ >= 301
|
|
|
|
#define XML_DEPRECATED_MEMBER __attribute__((deprecated))
|
|
|
|
#else
|
|
|
|
#define XML_DEPRECATED_MEMBER
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2023-12-23 04:50:47 +01:00
|
|
|
/*
|
|
|
|
* Originally declared in xmlversion.h which is generated
|
|
|
|
*/
|
2024-06-05 17:43:32 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2023-12-23 04:50:47 +01:00
|
|
|
XMLPUBFUN void xmlCheckVersion(int version);
|
2003-08-25 09:15:36 +00:00
|
|
|
|
2024-06-05 17:43:32 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-08-25 09:15:36 +00:00
|
|
|
#endif /* __XML_EXPORTS_H__ */
|
|
|
|
|
|
|
|
|