(svn r25677) -Codechange: [Win32] There are no 64-bit Windows versions below XP and we can safely assume it as the target platform.

This commit is contained in:
michi_cc
2013-08-05 20:36:58 +00:00
parent 765e7d349e
commit b96ef5c758
2 changed files with 17 additions and 14 deletions

View File

@@ -10,12 +10,6 @@
/** @file crashlog_win.cpp Implementation of a crashlogger for Windows */
#include "../../stdafx.h"
#if defined(_MSC_VER) && defined(_M_AMD64)
/* Redefine WinNT version to get RtlCaptureContext prototype. */
#undef _WIN32_WINNT
#undef NTDDI_VERSION
#define _WIN32_WINNT _WIN32_WINNT_WINXP
#endif /* defined(_MSC_VER) && defined(_M_AMD64) */
#include "../../crashlog.h"
#include "win32.h"
#include "../../core/alloc_func.hpp"