Bug 626169 - [Win2k3 SDK] "nsExceptionHandler.cpp(739) : error C2065: 'MiniDumpWithFullMemoryInfo' : undeclared identifier"; (Av1) Match existing |ifdef XP_WIN32|, Add |#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN|.

r=ted.mielczarek a-2.0=benjamin.
This commit is contained in:
Serge Gautherie 2011-02-02 18:32:19 +01:00
Родитель a79a118821
Коммит fdaee8754f
1 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -717,10 +717,13 @@ nsresult SetExceptionHandler(nsILocalFile* aXREDirectory,
}
#endif
#ifdef XP_WIN
#ifdef XP_WIN32
MINIDUMP_TYPE minidump_type = MiniDumpNormal;
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
// Try to determine what version of dbghelp.dll we're using.
// MinidumpWithFullMemoryInfo is only available in 6.1.x or newer.
MINIDUMP_TYPE minidump_type = MiniDumpNormal;
DWORD version_size = GetFileVersionInfoSizeW(L"dbghelp.dll", NULL);
if (version_size > 0) {
std::vector<BYTE> buffer(version_size);
@ -740,7 +743,8 @@ nsresult SetExceptionHandler(nsILocalFile* aXREDirectory,
}
}
}
#endif
#endif // MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
#endif // XP_WIN32
// now set the exception handler
gExceptionHandler = new google_breakpad::