2005-12-08 23:55:40 +00:00
|
|
|
#ifndef __LIBXML_WIN32_CONFIG__
|
|
|
|
#define __LIBXML_WIN32_CONFIG__
|
|
|
|
|
2014-10-17 10:58:01 +00:00
|
|
|
#define SEND_ARG2_CAST
|
|
|
|
#define GETHOSTBYNAME_ARG_CAST
|
2005-12-08 23:55:40 +00:00
|
|
|
|
|
|
|
#define HAVE_SYS_STAT_H
|
|
|
|
#define HAVE_STAT
|
|
|
|
#define HAVE_FCNTL_H
|
2009-10-19 19:59:37 +00:00
|
|
|
|
2022-11-20 15:17:45 +00:00
|
|
|
#if defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER >= 1600)
|
|
|
|
#define HAVE_STDINT_H
|
2005-12-08 23:55:40 +00:00
|
|
|
#endif
|
|
|
|
|
2022-11-20 15:45:09 +00:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#if _MSC_VER < 1900
|
2005-12-08 23:55:40 +00:00
|
|
|
#define snprintf _snprintf
|
2022-11-20 15:45:09 +00:00
|
|
|
#endif
|
|
|
|
#if _MSC_VER < 1500
|
|
|
|
#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
|
|
|
|
#endif
|
2005-12-08 23:55:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __LIBXML_WIN32_CONFIG__ */
|
|
|
|
|