Is there any way to know if I'm compiling under Microsoft Visual Studio 2008 ?
|
1
|
|
|
|
|
|
Some values for the more recent versions of the compiler are:
The version number above of course refers to the major version of your Visual studio you see in the about box, not to the year in the name. |
||
|
|
|
|
This is a little old but should get you started: //************************************************************************** // Automated platform detection //************************************************************************** // _WIN32 is used by // Visual C++ ifdef _WIN32define NTendif// Define MAC platform indicator ifdef macintoshdefine MACendif// Define OSX platform indicator ifdef APPLEdefine OSXendif// Define WIN16 platform indicator ifdef Windowsifndef NTdefine WIN16endifendif// Define Windows CE platform indicator ifdef WIN32_PLATFORM_HPCPROdefine WINCEendifif (_WIN32_WCE == 300) // for Pocket PCdefine POCKETPCdefine WINCE//#if (_WIN32_WCE == 211) // for Palm-size PC 2.11 (Wyvern)
//#if (_WIN32_WCE == 201) // for Palm-size PC 2.01 (Gryphon) endif |
||
|
|
|
|
By using Visual Studio specific macros, more info is here. |
||
|
|
|
|
By using the |
||
|
|
|
|
I was talking from the code's "point of view" . I would like to add a #ifdef , that would change a bit the code , if compiling under WinCE . There are a couple of methods that are different from the PC version. |
||
|
|
|
_MSC_VER should be defined to a specific version number. You can either #ifdef on it, or you can use the actual define and do a runtime test. (If for some reason you wanted to run different code based on what compiler it was compiled with? Yeah, probably you were looking for the #ifdef. :)) |
||
|
|
|
|
In visual studio, go to help | about and look at the version of Visual Studio that you're using to compile your app. |
||
|
|
