Windows 开发中系统相关宏
>操作系统相关定义
- _WIN32_WINNT
操作系统 | _WIN32_WINNT/WINVER |
---|---|
win7 | 0x0601 |
vista/Server 2008 | 0x0600 |
Server 2003 | 0x502 |
XP | 0x0501 |
2000 | 0x0500 |
NT 4.0 | 0x400 |
Me | 0x500 |
98 | 0x410 |
95 | 0x400 |
- _WIN32_WINNT
IE | _WIN32_IE |
---|---|
Internet Explorer 7.0 | _WIN32_IE>=0x0700 |
Internet Explorer 6.0 SP2 | _WIN32_IE>=0x0603 |
Internet Explorer 6.0 SP1 | _WIN32_IE>=0x0601 |
Internet Explorer 6.0 | _WIN32_IE>=0x0600 |
Internet Explorer 5.5 | _WIN32_IE>=0x0550 |
Internet Explorer 5.01 | _WIN32_IE>=0x0501 |
Internet Explorer 5.0, 5.0a, 5.0b | _WIN32_IE>=0x0500 |
Internet Explorer 4.01 | _WIN32_IE>=0x0401 |
Internet Explorer 4.0 | _WIN32_IE>=0x0400 |
Internet Explorer 3.0, 3.01, 3.02 | _WIN32_IE>=0x0300 |