diff options
author | Owen Taylor <otaylor@src.gnome.org> | 2000-06-08 18:48:32 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-06-08 18:48:32 +0000 |
commit | 1e916c95bb218660ed34e9d712969462d9d9c161 (patch) | |
tree | 61eb5424ddc5f16b9524d0278893797d1e6079ba /pango/modules.c | |
parent | 40bf30500165bd6a5116dc5214890781eb156a8c (diff) | |
download | pango-1e916c95bb218660ed34e9d712969462d9d9c161.tar.gz |
*** empty log message ***
Diffstat (limited to 'pango/modules.c')
-rw-r--r-- | pango/modules.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pango/modules.c b/pango/modules.c index db173e88..c109c3ef 100644 --- a/pango/modules.c +++ b/pango/modules.c @@ -24,8 +24,8 @@ #include <string.h> #include <gmodule.h> -#include <pango/pango.h> +#include "pango-modules.h" #include "modules.h" #include "utils.h" @@ -71,9 +71,9 @@ static void build_map (PangoMapInfo *info); static void init_modules (void); PangoMap * -_pango_find_map (const char *lang, - guint engine_type_id, - guint render_type_id) +pango_find_map (const char *lang, + guint engine_type_id, + guint render_type_id) { GList *tmp_list = maps; PangoMapInfo *map_info = NULL; @@ -461,16 +461,16 @@ build_map (PangoMapInfo *info) } PangoMapEntry * -_pango_map_get_entry (PangoMap *map, - guint32 wc) +pango_map_get_entry (PangoMap *map, + guint32 wc) { PangoSubmap *submap = &map->submaps[wc / 256]; return submap->is_leaf ? &submap->d.entry : &submap->d.leaves[wc % 256]; } PangoEngine * -_pango_map_get_engine (PangoMap *map, - guint32 wc) +pango_map_get_engine (PangoMap *map, + guint32 wc) { PangoSubmap *submap = &map->submaps[wc / 256]; PangoMapEntry *entry = submap->is_leaf ? &submap->d.entry : &submap->d.leaves[wc % 256]; |