From: Thomas Wouters Date: Thu, 12 Jul 2001 12:26:42 +0000 (+0000) Subject: Backport Tim's checkin 1.7: X-Git-Tag: v2.1.1c1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=45892bf057dc3dcf967689f79559ac9451a8ead4;p=thirdparty%2FPython%2Fcpython.git Backport Tim's checkin 1.7: SF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN. I believe Kevin Rodgers here! The old WINDOWS_LEAN_AND_MEAN has, AFAICT, always been wrong. --- diff --git a/PC/WinMain.c b/PC/WinMain.c index 4249567fa689..7ee1ad69f3e1 100644 --- a/PC/WinMain.c +++ b/PC/WinMain.c @@ -1,6 +1,6 @@ /* Minimal main program -- everything is loaded from the library. */ -#define WINDOWS_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN #include #include "Python.h"