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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d29abb991518d61cfcfcdbdedfec8655cb211c1d;p=python 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 410d5cd6da..33260969b7 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 4249567fa6..7ee1ad69f3 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"