From 02226ef653e1e871be6004a51f08b74c0c9dd8e4 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Wed, 5 Feb 2020 20:03:06 -0700 Subject: Code_Cleanup_Day/Windows: Clean-up windows API Level. Not sure when this happened but apparently the lower bar is now windows 7 [1] This patch bumps to API version to 0x0601 (Win7) and cleans up any uses that worked around the globally set API version. [1] https://www.blender.org/download/requirements/ Reviewed By: brecht Differential Revision: https://developer.blender.org/D6758 --- source/blender/blenlib/intern/dynlib.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'source/blender/blenlib/intern/dynlib.c') diff --git a/source/blender/blenlib/intern/dynlib.c b/source/blender/blenlib/intern/dynlib.c index c648a212fef..2aceff45b3e 100644 --- a/source/blender/blenlib/intern/dynlib.c +++ b/source/blender/blenlib/intern/dynlib.c @@ -34,9 +34,6 @@ struct DynamicLibrary { }; #ifdef WIN32 -# ifndef _WIN32_WINNT -# define _WIN32_WINNT 0x501 /* Windows XP or newer */ -# endif # define WIN32_LEAN_AND_MEAN # include # include "utf_winfunc.h" -- cgit v1.2.3