php-src/ext/xmlrpc/libxmlrpc/xmlrpc_win32.h
2008-07-05 18:17:37 +00:00

16 lines
312 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