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

Tim Peters tim_one@users.sourceforge.net
Mon, 23 Apr 2001 22:16:32 -0700


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

Modified Files:
	WinMain.c 
Log Message:
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.7
diff -C2 -r1.6 -r1.7
*** WinMain.c	2000/07/22 23:59:33	1.6
--- WinMain.c	2001/04/24 05:16:29	1.7
***************
*** 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>