Added font manager initialization.

This commit is contained in:
Guido van Rossum 1991-04-03 19:01:18 +00:00
parent e543a94746
commit 2abc7a6a9a
1 changed files with 6 additions and 0 deletions

View File

@ -134,6 +134,9 @@ extern void initamoeba();
#endif #endif
#ifdef USE_GL #ifdef USE_GL
extern void initgl(); extern void initgl();
#ifdef USE_FM
extern void initfm();
#endif
#ifdef USE_PANEL #ifdef USE_PANEL
extern void initpanel(); extern void initpanel();
#endif #endif
@ -167,6 +170,9 @@ struct {
#ifdef USE_GL #ifdef USE_GL
{"gl", initgl}, {"gl", initgl},
#ifdef USE_FM
{"fm", initfm},
#endif
#ifdef USE_PANEL #ifdef USE_PANEL
{"pnl", initpanel}, {"pnl", initpanel},
#endif #endif