xref: /PHP-7.1/ext/xmlrpc/libxmlrpc/xmlrpc_win32.h (revision e570bb43)
1 #ifndef _XMLRPC_WIN32_H
2 #define _XMLRPC_WIN32_H
3 /* just some things needed to compile win32 */
4 #include <windows.h>
5 #include <stdlib.h>
6 #ifndef inline
7 # define inline __inline
8 #endif
9 #if !defined(snprintf) && _MSC_VER < 1900
10 # define snprintf _snprintf
11 #endif
12 #ifndef strcasecmp
13 # define strcasecmp(s1, s2) stricmp(s1, s2)
14 #endif
15 
16 #endif
17