From: Tim Peters Date: Tue, 24 Apr 2001 05:16:29 +0000 (+0000) Subject: SF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN. X-Git-Tag: v2.2a3~1965 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d29abb991518d61cfcfcdbdedfec8655cb211c1d;p=thirdparty%2FPython%2Fcpython.git 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/Misc/ACKS b/Misc/ACKS index 410d5cd6da50..33260969b79b 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -323,6 +323,7 @@ Nicholas Riley Jean-Claude Rimbault Andy Robinson Jim Robinson +Kevin Rodgers Mike Romberg Case Roole Timothy Roscoe 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"