diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-04-24 05:16:29 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-04-24 05:16:29 (GMT) |
commit | d29abb991518d61cfcfcdbdedfec8655cb211c1d (patch) | |
tree | 6301ea2935fd24a77d53d124e08398c4b5bb53ae | |
parent | b3ca303a4e9549f955c76f4783b49cb9ca9115a6 (diff) | |
download | cpython-d29abb991518d61cfcfcdbdedfec8655cb211c1d.zip cpython-d29abb991518d61cfcfcdbdedfec8655cb211c1d.tar.gz cpython-d29abb991518d61cfcfcdbdedfec8655cb211c1d.tar.bz2 |
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.
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | PC/WinMain.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 4249567..7ee1ad6 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 <windows.h> #include "Python.h" |