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 /PC/WinMain.c | |
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.
Diffstat (limited to 'PC/WinMain.c')
-rw-r--r-- | PC/WinMain.c | 2 |
1 files changed, 1 insertions, 1 deletions
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" |