]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Backport Tim's checkin 1.7:
authorThomas Wouters <thomas@python.org>
Thu, 12 Jul 2001 12:26:42 +0000 (12:26 +0000)
committerThomas Wouters <thomas@python.org>
Thu, 12 Jul 2001 12:26:42 +0000 (12:26 +0000)
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.

PC/WinMain.c

index 4249567fa689c19b1d8b8f9f338db7a823edbf62..7ee1ad69f3e1fcbcac97839f78ff47cf2c8c636c 100644 (file)
@@ -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"