mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-24 19:54:25 -04:00
drop support for WDK's Windows XP targets
* Die, XP, die!!! * Also fix a Coverity warning in checksum.c
This commit is contained in:
parent
2c90a06668
commit
e4bb1a6eb8
7 changed files with 13 additions and 33 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue