[Python-checkins] CVS: python/dist/src/Mac/Modules/win winsupport.py,1.25,1.26
Jack Jansen
jackjansen@users.sourceforge.net
2001年8月23日 06:51:48 -0700
Update of /cvsroot/python/python/dist/src/Mac/Modules/win
In directory usw-pr-cvs1:/tmp/cvs-serv27935/Python/Mac/Modules/win
Modified Files:
winsupport.py
Log Message:
The MacOS toolbox modules have acquired an _ in front of their name. Normal usage is through a wrapper module (without underscore) which lives in the Carbon package.
Index: winsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/win/winsupport.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** winsupport.py 2001年06月20日 21:20:22 1.25
--- winsupport.py 2001年08月23日 13:51:46 1.26
***************
*** 8,16 ****
# Declarations that change for each manager
MACHEADERFILE = 'Windows.h' # The Apple header file
! MODNAME = 'Win' # The name of the module
OBJECTNAME = 'Window' # The basic name of the objects used here
# The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME # The prefix for module-wide routines
OBJECTTYPE = OBJECTNAME + 'Ptr' # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
--- 8,16 ----
# Declarations that change for each manager
MACHEADERFILE = 'Windows.h' # The Apple header file
! MODNAME = '_Win' # The name of the module
OBJECTNAME = 'Window' # The basic name of the objects used here
# The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Win' # The prefix for module-wide routines
OBJECTTYPE = OBJECTNAME + 'Ptr' # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods