No need to include windows.h twice

This commit is contained in:
Amaury Forgeot d'Arc 2007-11-10 13:55:44 +00:00
parent e018b305f6
commit 06cfe95237

View file

@ -23,7 +23,7 @@ Data members:
#ifdef MS_WINDOWS
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
#include <windows.h>
#endif /* MS_WINDOWS */
#ifdef MS_COREDLL
@ -36,10 +36,6 @@ extern const char *PyWin_DLLVersionString;
#include <unixlib.h>
#endif
#ifdef MS_WINDOWS
#include <windows.h>
#endif
#ifdef HAVE_LANGINFO_H
#include <locale.h>
#include <langinfo.h>