1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-24 21:33:51 +03:00
libxml2/include/win32config.h

23 lines
441 B
C
Raw Normal View History

#ifndef __LIBXML_WIN32_CONFIG__
#define __LIBXML_WIN32_CONFIG__
2002-09-29 21:51:32 +04:00
#define HAVE_SYS_STAT_H
#define HAVE_STAT
2001-02-23 20:55:21 +03:00
#define HAVE_FCNTL_H
2002-04-17 22:35:57 +04:00
#if defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER >= 1600)
2022-12-08 05:58:41 +03:00
#define HAVE_STDINT_H
#endif
#if defined(_MSC_VER)
2022-12-08 05:58:41 +03:00
#if _MSC_VER < 1900
#define snprintf _snprintf
#endif
#if _MSC_VER < 1500
#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
#endif
2002-11-14 20:43:55 +03:00
#endif
2001-02-23 20:55:21 +03:00
#endif /* __LIBXML_WIN32_CONFIG__ */