Skip to content

Commit d29abb9

Browse files
committed
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.
1 parent b3ca303 commit d29abb9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ Nicholas Riley
323323
Jean-Claude Rimbault
324324
Andy Robinson
325325
Jim Robinson
326+
Kevin Rodgers
326327
Mike Romberg
327328
Case Roole
328329
Timothy Roscoe

PC/WinMain.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Minimal main program -- everything is loaded from the library. */
22

3-
#define WINDOWS_LEAN_AND_MEAN
3+
#define WIN32_LEAN_AND_MEAN
44
#include <windows.h>
55

66
#include "Python.h"

0 commit comments

Comments
 (0)