xref: /PHP-5.5/ext/xmlrpc/libxmlrpc/xmlrpc_win32.h (revision 53c53ed7)
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 #ifndef snprintf
10 # define snprintf _snprintf
11 #endif
12 #ifndef strcasecmp
13 # define strcasecmp(s1, s2) stricmp(s1, s2)
14 #endif
15 
16 #endif