summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2001-07-12 12:26:42 (GMT)
committerThomas Wouters <thomas@python.org>2001-07-12 12:26:42 (GMT)
commit45892bf057dc3dcf967689f79559ac9451a8ead4 (patch)
treecb27a1508e253b9d6ed84fb40dd46adbd60286c3
parentcac2498815dc526a5888fa534386c0f778667ad6 (diff)
downloadcpython-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.c2
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"