root/ext/xmlrpc/libxmlrpc/xmlrpc_win32.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   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 #if !defined(snprintf) && _MSC_VER < 1900
  10 # define snprintf _snprintf
  11 #endif
  12 #ifndef strcasecmp
  13 # define strcasecmp(s1, s2) stricmp(s1, s2)
  14 #endif
  15 
  16 #endif

/* [<][>][^][v][top][bottom][index][help] */