From 35a84ad5767689bc6f89ebac87cf862054060391 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 26 May 2003 07:57:53 +0000 Subject: Chris Lewis mentioned that he doesn't get WIN32 defined, only _WIN32 so we make an adjustment to catch this. --- include/curl/multi.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include') diff --git a/include/curl/multi.h b/include/curl/multi.h index 60291a6f0..6e5c933b9 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -45,6 +45,11 @@ 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 -- cgit v1.2.3