[Python-checkins] CVS: python/dist/src/PC WinMain.c,1.6,1.6.6.1

Thomas Wouters twouters@users.sourceforge.net
Thu, 12 Jul 2001 05:26:44 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory usw-pr-cvs1:/tmp/cvs-serv18231/PC

Modified Files:
      Tag: release21-maint
	WinMain.c 
Log Message:

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.



Index: WinMain.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/WinMain.c,v
retrieving revision 1.6
retrieving revision 1.6.6.1
diff -C2 -r1.6 -r1.6.6.1
*** WinMain.c	2000/07/22 23:59:33	1.6
--- WinMain.c	2001/07/12 12:26:42	1.6.6.1
***************
*** 1,5 ****
  /* Minimal main program -- everything is loaded from the library. */
  
! #define WINDOWS_LEAN_AND_MEAN
  #include <windows.h>
  
--- 1,5 ----
  /* Minimal main program -- everything is loaded from the library. */
  
! #define WIN32_LEAN_AND_MEAN
  #include <windows.h>