mirror of
https://github.com/curl/curl.git
synced 2026-08-25 21:03:34 +03:00
Define WIN32 when build target is Win32 API.
This also defines it for WinCE even though it is a subset of WIN32.
This commit is contained in:
parent
b99a61c5b0
commit
32195c673d
6 changed files with 36 additions and 24 deletions
|
|
@ -29,6 +29,14 @@
|
|||
|
||||
#include "curlver.h" /* the libcurl version defines */
|
||||
|
||||
/*
|
||||
* Define WIN32 when build target is Win32 API
|
||||
*/
|
||||
|
||||
#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
|
||||
#define WIN32
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
|
||||
|
|
@ -41,12 +49,6 @@
|
|||
# include <time.h>
|
||||
#endif /* defined (vms) */
|
||||
|
||||
#if defined(_WIN32) && !defined(WIN32)
|
||||
/* Chris Lewis mentioned that he doesn't get WIN32 defined, only _WIN32 so we
|
||||
make this adjustment to catch this. */
|
||||
#define WIN32 1
|
||||
#endif
|
||||
|
||||
#if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__GNUC__) && \
|
||||
!defined(__CYGWIN__) || defined(__MINGW32__)
|
||||
#if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue