[Python-checkins] CVS: python/dist/src/Mac/Modules macconfig.c,1.26,1.27
Jack Jansen
jackjansen@users.sourceforge.net
2001年8月23日 06:49:56 -0700
Update of /cvsroot/python/python/dist/src/Mac/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv27428/Python/Mac/Modules
Modified Files:
macconfig.c
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: macconfig.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/macconfig.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** macconfig.c 2001年08月07日 15:29:17 1.26
--- macconfig.c 2001年08月23日 13:49:54 1.27
***************
*** 95,127 ****
#define USE_CORE_TOOLBOX
#endif
! extern void initApp();
! extern void initFm();
! extern void initHelp();
! extern void initIcn();
! extern void initList();
! extern void initMlte();
! extern void initQdoffs();
! extern void initSnd();
! extern void initSndihooks();
! extern void initScrap();
! extern void initTE();
extern void initColorPicker();
extern void initPrinting();
! extern void initCF();
#endif
#ifdef USE_CORE_TOOLBOX
! extern void initAE();
! extern void initCtl();
! extern void initDlg();
! extern void initDrag();
! extern void initEvt();
! extern void initMenu();
! extern void initQd();
! extern void initRes();
! extern void initWin();
#endif
#ifdef USE_QT
! extern void initCm();
! extern void initQt();
#endif
--- 95,127 ----
#define USE_CORE_TOOLBOX
#endif
! extern void init_App();
! extern void init_Fm();
! extern void init_Help();
! extern void init_Icn();
! extern void init_List();
! extern void init_Mlte();
! extern void init_Qdoffs();
! extern void init_Snd();
! extern void init_Sndihooks();
! extern void init_Scrap();
! extern void init_TE();
extern void initColorPicker();
extern void initPrinting();
! extern void init_CF();
#endif
#ifdef USE_CORE_TOOLBOX
! extern void init_AE();
! extern void init_Ctl();
! extern void init_Dlg();
! extern void init_Drag();
! extern void init_Evt();
! extern void init_Menu();
! extern void init_Qd();
! extern void init_Res();
! extern void init_Win();
#endif
#ifdef USE_QT
! extern void init_Cm();
! extern void init_Qt();
#endif
***************
*** 218,255 ****
#endif
#ifdef USE_CORE_TOOLBOX
! {"AE", initAE},
! {"Ctl", initCtl},
! {"Dlg", initDlg},
! {"Drag", initDrag},
! {"Evt", initEvt},
! {"Menu", initMenu},
! {"Qd", initQd},
! {"Win", initWin},
! {"Res", initRes},
#endif
#ifdef USE_TOOLBOX
! {"App", initApp},
! {"Fm", initFm},
! {"Icn", initIcn},
! {"List", initList},
! {"Mlte", initMlte},
! {"Qdoffs", initQdoffs},
! {"Snd", initSnd},
! {"Sndihooks", initSndihooks},
/* Carbon scrap manager is completely different */
! {"Scrap", initScrap},
! {"TE", initTE},
{"ColorPicker", initColorPicker},
#if !TARGET_API_MAC_CARBON
! {"Help", initHelp},
{"Printing", initPrinting},
#endif
#if TARGET_API_MAC_CARBON
! {"CF", initCF},
#endif
#endif
#ifdef USE_QT
! {"Cm", initCm},
! {"Qt", initQt},
#endif
#ifdef USE_IMG
--- 218,255 ----
#endif
#ifdef USE_CORE_TOOLBOX
! {"_AE", init_AE},
! {"_Ctl", init_Ctl},
! {"_Dlg", init_Dlg},
! {"_Drag", init_Drag},
! {"_Evt", init_Evt},
! {"_Menu", init_Menu},
! {"_Qd", init_Qd},
! {"_Win", init_Win},
! {"_Res", init_Res},
#endif
#ifdef USE_TOOLBOX
! {"_App", init_App},
! {"_Fm", init_Fm},
! {"_Icn", init_Icn},
! {"_List", init_List},
! {"_Mlte", init_Mlte},
! {"_Qdoffs", init_Qdoffs},
! {"_Snd", init_Snd},
! {"_Sndihooks", init_Sndihooks},
/* Carbon scrap manager is completely different */
! {"_Scrap", init_Scrap},
! {"_TE", init_TE},
{"ColorPicker", initColorPicker},
#if !TARGET_API_MAC_CARBON
! {"_Help", init_Help},
{"Printing", initPrinting},
#endif
#if TARGET_API_MAC_CARBON
! {"_CF", init_CF},
#endif
#endif
#ifdef USE_QT
! {"_Cm", init_Cm},
! {"_Qt", init_Qt},
#endif
#ifdef USE_IMG