diff options
| author | Shane Caraveo <shane@php.net> | 2001-12-03 22:33:32 +0000 |
|---|---|---|
| committer | Shane Caraveo <shane@php.net> | 2001-12-03 22:33:32 +0000 |
| commit | 7b03b7571bb934c6309e58675a3c89f55c3e41c9 (patch) | |
| tree | 9a05b5f4a66e23982b6518ce58a34722d9a220ea /ext/xmlrpc/libxmlrpc/xmlrpc_win32.h | |
| parent | 288d96229e9c12efffb045231c01f1f0e6d63a47 (diff) | |
| download | php-git-7b03b7571bb934c6309e58675a3c89f55c3e41c9.tar.gz | |
Make xmlrpc module compilable on windows. compiles, but untested.
Diffstat (limited to 'ext/xmlrpc/libxmlrpc/xmlrpc_win32.h')
| -rw-r--r-- | ext/xmlrpc/libxmlrpc/xmlrpc_win32.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/xmlrpc/libxmlrpc/xmlrpc_win32.h b/ext/xmlrpc/libxmlrpc/xmlrpc_win32.h new file mode 100644 index 0000000000..58c54bbb80 --- /dev/null +++ b/ext/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 |
