Moved AE module to the core toolbox set: it is needed by Nav and it isn't all _that_ huge.

This commit is contained in:
Jack Jansen 2000-06-07 20:13:05 +00:00
parent 1c0fceeaa7
commit d1fb71121b
3 changed files with 2 additions and 6 deletions

Binary file not shown.

View File

@ -1,4 +0,0 @@
initAE
AEDesc_New
AEDesc_Convert
AEDesc_Type

View File

@ -95,7 +95,6 @@ extern void initmactcp();
#ifndef USE_CORE_TOOLBOX
#define USE_CORE_TOOLBOX
#endif
extern void initAE();
extern void initApp();
extern void initEvt();
extern void initFm();
@ -111,6 +110,7 @@ extern void initPrinting();
extern void initDrag();
#endif
#ifdef USE_CORE_TOOLBOX
extern void initAE();
extern void initCtl();
extern void initDlg();
extern void initMenu();
@ -205,6 +205,7 @@ struct _inittab _PyImport_Inittab[] = {
{"mactcp", initmactcp},
#endif
#ifdef USE_CORE_TOOLBOX
{"AE", initAE},
{"Ctl", initCtl},
{"Dlg", initDlg},
{"Menu", initMenu},
@ -214,7 +215,6 @@ struct _inittab _PyImport_Inittab[] = {
{"Res", initRes},
#endif
#ifdef USE_TOOLBOX
{"AE", initAE},
{"App", initApp},
{"Evt", initEvt},
{"Fm", initFm},