minor Windows include tweak

Needed a minor change to test committing from a new development system.
This commit is contained in:
Mike Erwin
2015-02-08 12:41:45 -05:00
parent 0d766aa532
commit 8aeb9d2158
2 changed files with 5 additions and 0 deletions

View File

@@ -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"

View File

@@ -33,6 +33,9 @@
#include "PIL_time.h"
#ifdef WIN32
#define _WIN32_WINNT 0x501 /* Windows XP or newer */
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
double PIL_check_seconds_timer(void)