Commit 71c5b028 authored by Jack Jansen's avatar Jack Jansen

Got rid of mactcp cruft, added Mlte and CF modules.

parent b927285c
...@@ -87,10 +87,6 @@ extern void initctb(); ...@@ -87,10 +87,6 @@ extern void initctb();
#ifdef USE_MACSPEECH #ifdef USE_MACSPEECH
extern void initmacspeech(); extern void initmacspeech();
#endif #endif
#ifdef USE_MACTCP
extern void initmacdnr();
extern void initmactcp();
#endif
#ifdef USE_IC #ifdef USE_IC
extern void initicglue(); extern void initicglue();
#endif #endif
...@@ -103,6 +99,7 @@ extern void initFm(); ...@@ -103,6 +99,7 @@ extern void initFm();
extern void initHelp(); extern void initHelp();
extern void initIcn(); extern void initIcn();
extern void initList(); extern void initList();
extern void initMlte();
extern void initQdoffs(); extern void initQdoffs();
extern void initSnd(); extern void initSnd();
extern void initSndihooks(); extern void initSndihooks();
...@@ -110,6 +107,7 @@ extern void initScrap(); ...@@ -110,6 +107,7 @@ extern void initScrap();
extern void initTE(); extern void initTE();
extern void initColorPicker(); extern void initColorPicker();
extern void initPrinting(); extern void initPrinting();
extern void initCF();
#endif #endif
#ifdef USE_CORE_TOOLBOX #ifdef USE_CORE_TOOLBOX
extern void initAE(); extern void initAE();
...@@ -215,10 +213,6 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -215,10 +213,6 @@ struct _inittab _PyImport_Inittab[] = {
#ifdef USE_MACSPEECH #ifdef USE_MACSPEECH
{"macspeech", initmacspeech}, {"macspeech", initmacspeech},
#endif #endif
#ifdef USE_MACTCP
{"macdnr", initmacdnr},
{"mactcp", initmactcp},
#endif
#ifdef USE_IC #ifdef USE_IC
{"icglue", initicglue}, {"icglue", initicglue},
#endif #endif
...@@ -238,6 +232,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -238,6 +232,7 @@ struct _inittab _PyImport_Inittab[] = {
{"Fm", initFm}, {"Fm", initFm},
{"Icn", initIcn}, {"Icn", initIcn},
{"List", initList}, {"List", initList},
{"Mlte", initMlte},
{"Qdoffs", initQdoffs}, {"Qdoffs", initQdoffs},
{"Snd", initSnd}, {"Snd", initSnd},
{"Sndihooks", initSndihooks}, {"Sndihooks", initSndihooks},
...@@ -249,6 +244,9 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -249,6 +244,9 @@ struct _inittab _PyImport_Inittab[] = {
{"Help", initHelp}, {"Help", initHelp},
{"Printing", initPrinting}, {"Printing", initPrinting},
#endif #endif
#if TARGET_API_MAC_CARBON
{"CF", initCF},
#endif
#endif #endif
#ifdef USE_QT #ifdef USE_QT
{"Cm", initCm}, {"Cm", initCm},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment