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
#ifdef USE_GL
extern void initgl();
#ifdef USE_FM
extern void initfm();
#endif
#ifdef USE_PANEL
extern void initpanel();
#endif
@ -167,6 +170,9 @@ struct {
#ifdef USE_GL
{"gl", initgl},
#ifdef USE_FM
{"fm", initfm},
#endif
#ifdef USE_PANEL
{"pnl", initpanel},
#endif