Top | ![]() |
![]() |
![]() |
![]() |
PangoMap * | pango_find_map () |
PangoEngine * | pango_map_get_engine () |
void | pango_map_get_engines () |
void | pango_module_register () |
Functions and macros in this section were used to support loading dynamic modules that add engines to Pango at run time.
That is no longer the case, and these APIs should not be used anymore.
PangoMap * pango_find_map (PangoLanguage *language
,guint engine_type_id
,guint render_type_id
);
pango_find_map
has been deprecated since version 1.38 and should not be used in newly-written code.
Do not use. Does not do anything.
[skip]
PangoEngine * pango_map_get_engine (PangoMap *map
,PangoScript script
);
pango_map_get_engine
has been deprecated since version 1.38 and should not be used in newly-written code.
Do not use. Does not do anything.
[skip]
void pango_map_get_engines (PangoMap *map
,PangoScript script
,GSList **exact_engines
,GSList **fallback_engines
);
pango_map_get_engines
has been deprecated since version 1.38 and should not be used in newly-written code.
Do not use. Does not do anything.
[skip]
map |
a PangoMap |
|
script |
||
exact_engines |
location to store list of engines that exactly handle this script. |
[nullable] |
fallback_engines |
location to store list of engines that approximately handle this script. |
[nullable] |
Since: 1.4
void
pango_module_register (PangoIncludedModule *module
);
pango_module_register
has been deprecated since version 1.38 and should not be used in newly-written code.
Do not use. Does not do anything.
[skip]
struct PangoIncludedModule { void (*list) (PangoEngineInfo **engines, int *n_engines); void (*init) (GTypeModule *module); void (*exit) (void); PangoEngine *(*create) (const char *id); };
PangoIncludedModule
has been deprecated since version 1.38 and should not be used in newly-written code.
The PangoIncludedModule structure for a statically linked module contains the functions that would otherwise be loaded from a dynamically loaded module.
typedef struct _PangoMap PangoMap;
PangoMap
is deprecated and should not be used in newly-written code.