Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2020-02-06 06:03:06 +0300
committerRay Molenkamp <github@lazydodo.com>2020-02-06 06:03:06 +0300
commit02226ef653e1e871be6004a51f08b74c0c9dd8e4 (patch)
treeca663ba3d60b510e6d8c3b04ec0eee49d5bbf113 /source/blender/blenlib/intern/dynlib.c
parentdc1db0791ec3b2d52e6734054a001814cd6998ee (diff)
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
Diffstat (limited to 'source/blender/blenlib/intern/dynlib.c')
-rw-r--r--source/blender/blenlib/intern/dynlib.c3
1 files changed, 0 insertions, 3 deletions
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 <windows.h>
# include "utf_winfunc.h"