php-src/ext/xmlrpc/libxmlrpc/xmlrpc_win32.h
2015-01-10 15:07:38 -08:00

16 lines
313 B
C

#ifndef _XMLRPC_WIN32_H
#define _XMLRPC_WIN32_H
/* just some things needed to compile win32 */
#include <windows.h>
#include <stdlib.h>
#ifndef inline
# define inline __inline
#endif
#ifndef snprintf
# define snprintf _snprintf
#endif
#ifndef strcasecmp
# define strcasecmp(s1, s2) stricmp(s1, s2)
#endif
#endif