xmlrpc_win32.h 312 B

12345678910111213141516
  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. #endif