[Python-checkins] CVS: python/dist/src/Mac/Modules/win _Winmodule.c,1.6,1.7

Jack Jansen jackjansen@users.sourceforge.net
Tue, 18 Dec 2001 07:36:08 -0800


Update of /cvsroot/python/python/dist/src/Mac/Modules/win
In directory usw-pr-cvs1:/tmp/cvs-serv14831/python/Mac/Modules/win

Modified Files:
	_Winmodule.c 
Log Message:
Updated to Universal Headers 3.4

Index: _Winmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/win/_Winmodule.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** _Winmodule.c	2001/12/08 18:02:54	1.6
--- _Winmodule.c	2001/12/18 15:36:06	1.7
***************
*** 6,11 ****
--- 6,15 ----
  
  
+ #ifdef _WIN32
+ #include "pywintoolbox.h"
+ #else
  #include "macglue.h"
  #include "pymactoolbox.h"
+ #endif
  
[...1029 lines suppressed...]
--- 3746,3764 ----
  	{"CollapseAllWindows", (PyCFunction)Win_CollapseAllWindows, 1,
  	 "(Boolean collapse) -> None"},
+ 
+ #if !TARGET_API_MAC_OS8
+ 	{"GetAvailableWindowPositioningBounds", (PyCFunction)Win_GetAvailableWindowPositioningBounds, 1,
+ 	 "(GDHandle inDevice) -> (Rect availableRect)"},
+ #endif
+ 
+ #if !TARGET_API_MAC_OS8
+ 	{"DisableScreenUpdates", (PyCFunction)Win_DisableScreenUpdates, 1,
+ 	 "() -> None"},
+ #endif
+ 
+ #if !TARGET_API_MAC_OS8
+ 	{"EnableScreenUpdates", (PyCFunction)Win_EnableScreenUpdates, 1,
+ 	 "() -> None"},
+ #endif
  	{"PinRect", (PyCFunction)Win_PinRect, 1,
  	 "(Rect theRect, Point thePt) -> (long _rv)"},