mirror of https://github.com/python/cpython
Added font manager initialization.
This commit is contained in:
parent
e543a94746
commit
2abc7a6a9a
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue