libxml2/include/win32config.h

23 lines
423 B
C
Raw Normal View History

#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
#if defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER >= 1600)
#define HAVE_STDINT_H
#endif
#if defined(_MSC_VER)
#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 17:43:55 +00:00
#endif
2001-02-23 17:55:21 +00:00
#endif /* __LIBXML_WIN32_CONFIG__ */