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:
authorMike Erwin <significant.bit@gmail.com>2015-02-08 20:41:45 +0300
committerMike Erwin <significant.bit@gmail.com>2015-02-08 20:41:45 +0300
commit8aeb9d2158a4624c43219a0e2c01c322e88ff12e (patch)
treeaecc0ee8cdd42c3c7ea791b5c51b9ca656942c92 /source/blender/blenlib/intern/dynlib.c
parent0d766aa5327098b2b0fa1eb9af88533025a3153d (diff)
minor Windows include tweak
Needed a minor change to test committing from a new development system.
Diffstat (limited to 'source/blender/blenlib/intern/dynlib.c')
-rw-r--r--source/blender/blenlib/intern/dynlib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/dynlib.c b/source/blender/blenlib/intern/dynlib.c
index b66eda4f141..e916b01e859 100644
--- a/source/blender/blenlib/intern/dynlib.c
+++ b/source/blender/blenlib/intern/dynlib.c
@@ -43,6 +43,8 @@ struct DynamicLibrary {
#ifdef WIN32
+#define _WIN32_WINNT 0x501 /* Windows XP or newer */
+#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "utf_winfunc.h"
#include "utfconv.h"