Removed redundant (and wrong in terms of it's value) definitions for WINVER/_WIN32_WINNT
authorDominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
Sat, 7 Sep 2019 19:26:40 +0000 (21:26 +0200)
committerDominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
Sat, 7 Sep 2019 19:26:40 +0000 (21:26 +0200)
Signed-off-by: Dominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
shell_integration/windows/OCContextMenu/targetver.h

index ce2bc7493ed04ec6469cc1cec02ed30cbba0dcb0..e233d3572bf9327c96125ded1ea51a3d2d6557c9 100644 (file)
@@ -5,6 +5,8 @@
 // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
 // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
 
-#define WINVER 0x0501
-#define _WIN32_WINNT 0x0501
+// Note: Here was a #define for windows target version
+// e.g. WINVER / _WIN32_WINNT, see https://devblogs.microsoft.com/oldnewthing/20070411-00/?p=27283
+// Unnecessary because we define both in desktop/CMakeLists.txt
+
 #include <SDKDDKVer.h>