diff options
author | Thomas Wouters <thomas@python.org> | 2001-07-12 12:26:42 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2001-07-12 12:26:42 (GMT) |
commit | 45892bf057dc3dcf967689f79559ac9451a8ead4 (patch) | |
tree | cb27a1508e253b9d6ed84fb40dd46adbd60286c3 | |
parent | cac2498815dc526a5888fa534386c0f778667ad6 (diff) | |
download | cpython-45892bf057dc3dcf967689f79559ac9451a8ead4.zip cpython-45892bf057dc3dcf967689f79559ac9451a8ead4.tar.gz cpython-45892bf057dc3dcf967689f79559ac9451a8ead4.tar.bz2 |
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.
-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" |