Commit d29abb99 authored by Tim Peters's avatar Tim Peters

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.
parent b3ca303a
...@@ -323,6 +323,7 @@ Nicholas Riley ...@@ -323,6 +323,7 @@ Nicholas Riley
Jean-Claude Rimbault Jean-Claude Rimbault
Andy Robinson Andy Robinson
Jim Robinson Jim Robinson
Kevin Rodgers
Mike Romberg Mike Romberg
Case Roole Case Roole
Timothy Roscoe Timothy Roscoe
......
/* Minimal main program -- everything is loaded from the library. */ /* Minimal main program -- everything is loaded from the library. */
#define WINDOWS_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#include "Python.h" #include "Python.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment