2001-06-22 10:48:57 +00:00
|
|
|
#ifndef __LIBXML_WIN32_CONFIG__
|
|
|
|
#define __LIBXML_WIN32_CONFIG__
|
|
|
|
|
2002-09-29 17:51:32 +00:00
|
|
|
#define HAVE_SYS_STAT_H
|
|
|
|
#define HAVE_STAT
|
2001-02-23 17:55:21 +00:00
|
|
|
#define HAVE_FCNTL_H
|
2002-04-17 18:35:57 +00:00
|
|
|
|
2022-03-04 01:32:04 +01:00
|
|
|
#if defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER >= 1600)
|
|
|
|
#define HAVE_STDINT_H
|
|
|
|
#endif
|
|
|
|
|
2022-10-11 13:00:33 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#if _MSC_VER < 1900
|
2001-04-16 17:46:18 +00:00
|
|
|
#define snprintf _snprintf
|
2022-10-11 13:00:33 +02:00
|
|
|
#endif
|
|
|
|
#if _MSC_VER < 1500
|
|
|
|
#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
|
|
|
|
#endif
|
2002-11-14 17:43:55 +00:00
|
|
|
#endif
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2001-06-22 10:48:57 +00:00
|
|
|
#endif /* __LIBXML_WIN32_CONFIG__ */
|
|
|
|
|