[Python-checkins] python/dist/src/Mac/Include macglue.h,1.62,1.63

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Thu, 12 Dec 2002 02:32:21 -0800


Update of /cvsroot/python/python/dist/src/Mac/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv21368/Include

Modified Files:
	macglue.h 
Log Message:
Getting rid of pre-Carbon (MacOS8) support. All code depending on
TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some
TARGET_API_MAC_OSX conditional code is gone, because it is no longer
used on OSX-only Python (only in MacPython-OS9).


Index: macglue.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Include/macglue.h,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** macglue.h	10 Sep 2002 12:32:47 -0000	1.62
--- macglue.h	12 Dec 2002 10:31:49 -0000	1.63
***************
*** 84,93 ****
  struct filedescr *PyMac_FindModuleExtension(char *, size_t *, char *); /* Look for module in single folder */
  
- #if TARGET_API_MAC_OS8
- int PyMac_GetDirectory(FSSpec *dirfss, char *prompt);		/* Ask user for a directory */
- void PyMac_PromptGetFile(short numTypes, ConstSFTypeListPtr typeList, 
- 	StandardFileReply *reply, char *prompt);	/* Ask user for file, with prompt */
- #endif /* TARGET_API_MAC_OS8 */
- 
  void PyMac_InitApplet(void);			/* Initialize and run an Applet */
  void PyMac_Initialize(void);			/* Initialize function for embedding Python */
--- 84,87 ----