diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2015-04-13 23:40:38 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2015-05-10 16:48:22 +0200 |
commit | f79b50df9d6116759cca5b043692e8d67e3c0984 (patch) | |
tree | 632983aade597aa0fe2b963507bade1714bbe7f4 /pango/pango-utils.h | |
parent | 733f1edc6f3a5e01fc9b0e661fcb61f288d800af (diff) | |
download | pango-f79b50df9d6116759cca5b043692e8d67e3c0984.tar.gz |
Deprecate much of pango-utils.h
These all are general utility functions that do not belong to Pango’s
public interface. Most of them are unused internally now, the few ones
that are still used should be made private at some point.
https://bugzilla.gnome.org/show_bug.cgi?id=682840
Diffstat (limited to 'pango/pango-utils.h')
-rw-r--r-- | pango/pango-utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pango/pango-utils.h b/pango/pango-utils.h index 1af5372b..40100f6a 100644 --- a/pango/pango-utils.h +++ b/pango/pango-utils.h @@ -28,16 +28,23 @@ G_BEGIN_DECLS +G_DEPRECATED char ** pango_split_file_list (const char *str); +G_DEPRECATED char *pango_trim_string (const char *str); +G_DEPRECATED gint pango_read_line (FILE *stream, GString *str); +G_DEPRECATED gboolean pango_skip_space (const char **pos); +G_DEPRECATED gboolean pango_scan_word (const char **pos, GString *out); +G_DEPRECATED gboolean pango_scan_string (const char **pos, GString *out); +G_DEPRECATED gboolean pango_scan_int (const char **pos, int *out); @@ -52,6 +59,7 @@ void pango_lookup_aliases (const char *fontname, int *n_families); #endif /* PANGO_ENABLE_BACKEND */ +G_DEPRECATED gboolean pango_parse_enum (GType type, const char *str, int *value, |