From 45892bf057dc3dcf967689f79559ac9451a8ead4 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Thu, 12 Jul 2001 12:26:42 +0000 Subject: 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. --- PC/WinMain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #include "Python.h" -- cgit v0.12