Bug 730212 - Set _WIN32_IE to 0x0603 (XPSP2). r=jimm

This commit is contained in:
Makoto Kato 2012-02-26 00:20:36 +09:00
parent f318a67971
commit 6096edb8e8
3 changed files with 4 additions and 9 deletions

View File

@ -964,8 +964,8 @@ EOF
AC_DEFINE_UNQUOTED(WINVER,0x$WINVER)
AC_DEFINE_UNQUOTED(_WIN32_WINNT,0x$WINVER)
# Require OS features provided by IE 5.0
AC_DEFINE_UNQUOTED(_WIN32_IE,0x0500)
# Require OS features provided by IE 6.0 SP2 (XP SP2)
AC_DEFINE_UNQUOTED(_WIN32_IE,0x0603)
# If the maximum version supported by this SDK is lower than the target
# version, error out

View File

@ -920,8 +920,8 @@ EOF
AC_DEFINE_UNQUOTED(WINVER,0x$WINVER)
AC_DEFINE_UNQUOTED(_WIN32_WINNT,0x$WINVER)
# Require OS features provided by IE 5.0
AC_DEFINE_UNQUOTED(_WIN32_IE,0x0500)
# Require OS features provided by IE 6.0 SP2 (XP SP2)
AC_DEFINE_UNQUOTED(_WIN32_IE,0x0603)
# If the maximum version supported by this SDK is lower than the target
# version, error out

View File

@ -11,11 +11,6 @@
#include <windows.h>
#define AVVENDOR
#include <msoav.h>
// To cope with both msvs8 header and sdk6 header
#ifdef _WIN32_IE_IE60SP2
#undef _WIN32_IE
#define _WIN32_IE _WIN32_IE_IE60SP2
#endif
#include <shlobj.h>
#include "nsAutoPtr.h"