Webternet and Updater extensions now load on Windows 2000 (bug 4234, r=dvander).

This commit is contained in:
Scott Ehlert
2010-01-20 15:12:57 -06:00
parent 0708e7f8f6
commit 68a0d10443
2 changed files with 8 additions and 666 deletions
+6 -6
View File
@@ -376,17 +376,17 @@
# endif
#endif
/* VS2008 does not support Windows build targets prior to WinXP, */
/* so, if no build target has been defined we will target WinXP. */
/* VS2008 does not support Windows build targets prior to Windows 2000, */
/* so, if no build target has been defined we will target Windows 2000. */
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
# ifndef _WIN32_WINNT
# define _WIN32_WINNT 0x0501
# define _WIN32_WINNT 0x0500
# endif
# ifndef WINVER
# define WINVER 0x0501
# define WINVER 0x0500
# endif
# if (_WIN32_WINNT < 0x0501) || (WINVER < 0x0501)
# error VS2008 does not support Windows build targets prior to WinXP
# if (_WIN32_WINNT < 0x0500) || (WINVER < 0x0500)
# error VS2008 does not support Windows build targets prior to Windows 2000
# endif
#endif