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.
This commit is contained in:
Tim Peters 2001-04-24 05:16:29 +00:00
parent b3ca303a4e
commit d29abb9915
2 changed files with 2 additions and 1 deletions

View File

@ -323,6 +323,7 @@ Nicholas Riley
Jean-Claude Rimbault
Andy Robinson
Jim Robinson
Kevin Rodgers
Mike Romberg
Case Roole
Timothy Roscoe

View 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"