diff options
Diffstat (limited to 'ext/rpc/xmlrpc/libxmlrpc/xmlrpc_win32.h')
-rw-r--r-- | ext/rpc/xmlrpc/libxmlrpc/xmlrpc_win32.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/rpc/xmlrpc/libxmlrpc/xmlrpc_win32.h b/ext/rpc/xmlrpc/libxmlrpc/xmlrpc_win32.h new file mode 100644 index 0000000000..58c54bbb80 --- /dev/null +++ b/ext/rpc/xmlrpc/libxmlrpc/xmlrpc_win32.h @@ -0,0 +1,11 @@ +#ifndef _XMLRPC_WIN32_H +#define _XMLRPC_WIN32_H +/* just some things needed to compile win32 */ +#include <windows.h> +#include <stdlib.h> +#define inline __inline +#define snprintf _snprintf +#define strcasecmp(s1, s2) stricmp(s1, s2) + + +#endif
\ No newline at end of file |