mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Added font manager initialization.
This commit is contained in:
parent
e543a94746
commit
2abc7a6a9a
1 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue