Windows, Visual Studio Version


* WINVER
Using the Windows Headers
http://msdn.microsoft.com/en-us/library/aa383745(VS.85).aspx


https://msdn.microsoft.com/en-us/library/6sehtctf.aspx


_WIN32_WINNT ,WINVER

//
// _WIN32_WINNT version constants
//
#define _WIN32_WINNT_NT4                    0x0400 // Windows NT 4.0
#define _WIN32_WINNT_WIN2K               0x0500 // Windows 2000


#define _WIN32_WINNT_WINXP               0x0501 // Windows XP


#define _WIN32_WINNT_WS03                 0x0502 // Windows Server 2003
#define _WIN32_WINNT_WIN6                  0x0600 // Windows Vista
#define _WIN32_WINNT_VISTA                  0x0600 // Windows Vista
#define _WIN32_WINNT_WS08                 0x0600 // Windows Server 2008
#define _WIN32_WINNT_LONGHORN       0x0600 // Windows Vista


#define _WIN32_WINNT_WIN7                  0x0601 // Windows 7
#define _WIN32_WINNT_WIN8                  0x0602 // Windows 8
#define _WIN32_WINNT_WINBLUE            0x0603 // Windows 8.1


#define _WIN32_WINNT_WINTHRESHOLD           0x0A00 // Windows 10
#define _WIN32_WINNT_WIN10                 0x0A00 // Windows 10



참고 : http://en.wikipedia.org/wiki/Ver_%28command%29



//====================================
* _MSC_VER
Visual Studio Version ( visual c++, msc_ver )
https://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Version_history


http://stackoverflow.com/questions/27754492/vs-2015-compiling-cocos2d-x-3-3-error-fatal-error-c1189-error-macro-definiti



MSVC++ 14.1 _MSC_VER == 1910 (Visual Studio 2017)

MSVC++ 14.0 _MSC_VER == 1900 (Visual Studio 2015)


MSVC++ 12.0 _MSC_VER == 1800 (Visual Studio 2013)
MSVC++ 11.0 _MSC_VER == 1700 (Visual Studio 2012)
MSVC++ 10.0 _MSC_VER == 1600 (Visual Studio 2010)
MSVC++ 9.0  _MSC_VER == 1500 (Visual Studio 2008)
MSVC++ 8.0  _MSC_VER == 1400 (Visual Studio 2005)
MSVC++ 7.1  _MSC_VER == 1310 (Visual Studio .NET 2003)


MSVC++ 7.0  _MSC_VER == 1300 [2002출시]
MSVC++ 6.0  _MSC_VER == 1200 [1998출시]
MSVC++ 5.0  _MSC_VER == 1100 [1997출시]
MSVC++ 4.0  _MSC_VER == 1000 [1995출시]


MSVC++ 2.0  _MSC_VER ==  900
MSVC++ 1.0  _MSC_VER ==  800
C/C++     7.0  _MSC_VER ==  700
C             6.0  _MSC_VER ==  600



//

윈도 스토어(Windows Store)
    - Windows 8, Visual Studio 2013



반응형

'Code' 카테고리의 다른 글

Ajax  (0) 2012.08.19
_ERROR Log  (0) 2012.08.19
Window, Process, Module, Thread 정보  (1) 2012.08.19
Time  (0) 2012.08.19
OEP 찾는 방법들  (0) 2012.08.19
Posted by codens