Im currently developing a cross-platform C application. Is there any compiler macro which is defined only during compilation on Windows, so I can #ifdef some Windows specific #includes?

Typical example is selecting between WinSock and Berkeley sockets headers:

#ifdef _WINDOWS
   #include <winsock.h>    
#else
   #include <sys/socket.h>
   #include <netinet/in.h>
   #include <sys/un.h>
   #include <arpa/inet.h>
   #include <netdb.h>
#endif

So the thing Im looking for is something like that _WINDOWS macro. Thanks for any tips.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

Your best bet is to use

_WIN32

It is guaranteed to be defined when compiling for a 32-bit or 64-bit Windows platform using the Visual C++ compiler. I would expect other compilers for Windows to define it as well (the Intel C++ compiler defines it, as does the MinGW gcc).

link|improve this answer
And what in case of 64-bit Windows? I presume _WIN32 is defined only on 32 bit systems, right? – NumberFour Apr 5 '10 at 15:21
@NumberFour: No, it is defined when compiling for both 32-bit and 64-bit platforms. – James McNellis Apr 5 '10 at 15:23
2  
The 32 is really there to separate it from ancient 16-bit versions of Windows. Removing that definition in Win64 would've broken too much stuff, so it was less hassle to leave it in. – Matti Virkkunen Apr 5 '10 at 15:28
feedback
_WIN32  

Defined for applications for Win32 and Win64. Always defined.

_WIN64  

Defined for applications for Win64.

Source : Lists the predefined ANSI C and Microsoft C++ implementation macros.

link|improve this answer
feedback

Use _WIN32.

Reference:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.