]> granicus.if.org Git - curl/commitdiff
Chris Lewis mentioned that he doesn't get WIN32 defined, only _WIN32 so we
authorDaniel Stenberg <daniel@haxx.se>
Mon, 26 May 2003 07:57:53 +0000 (07:57 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 26 May 2003 07:57:53 +0000 (07:57 +0000)
make an adjustment to catch this.

include/curl/multi.h

index 60291a6f093ceb0496c3d4f43716b9a5591603a0..6e5c933b91d7bcb28c7bae8b00a37a8b17c5a2b0 100644 (file)
     file descriptors simultaneous easily.
   
 */
+#if defined(_WIN32) && !defined(WIN32)
+/* Chris Lewis mentioned that he doesn't get WIN32 defined, only _WIN32
+   so we make this like adjustment to catch this. */
+#define WIN32 1
+#endif
 
 #if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
 #include <winsock.h>