drop support for WDK's Windows XP targets

* Die, XP, die!!!
* Also fix a Coverity warning in checksum.c
This commit is contained in:
Pete Batard 2016-03-24 12:46:44 +00:00
parent 2c90a06668
commit e4bb1a6eb8
7 changed files with 13 additions and 33 deletions

View file

@ -24,6 +24,12 @@
#pragma warning(disable: 4996) // Ignore deprecated (eg. GetVersionEx()), as we have to contend with XP
#pragma warning(disable: 28159) // We use GetTickCount64() where possible, but it's not available on XP
#pragma warning(disable: 6258) // I know what I'm using TerminateThread for
// Burn in HELL Windows XP!!!
#ifdef DDKBUILD
#if (_WIN32_WINNT < _WIN32_WINNT_VISTA)
#error The Windows XP target is no longer supported for WDK compilation.
#endif
#endif
#endif
#pragma once