diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2016-06-06 23:44:26 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2016-06-29 17:32:00 +0800 |
commit | ce097c062ea079bf7888d2b2f1f7b17d34f976b6 (patch) | |
tree | 7727f8b7d82acd0c4e2f09ef911bbb4bc8805a11 /pango/pango-engine.h | |
parent | 57964efb280369db2731bfc070f3e73c9a860d18 (diff) | |
download | pango-ce097c062ea079bf7888d2b2f1f7b17d34f976b6.tar.gz |
Decorate the symbols in the headers with version macros
From the last commit, decorate all the symbols with the version
macros. Also add the version macros in the docs.
https://bugzilla.gnome.org/show_bug.cgi?id=767587
Diffstat (limited to 'pango/pango-engine.h')
-rw-r--r-- | pango/pango-engine.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pango/pango-engine.h b/pango/pango-engine.h index 9645c2c5..ce5c8880 100644 --- a/pango/pango-engine.h +++ b/pango/pango-engine.h @@ -79,6 +79,7 @@ struct _PangoEngineClass GObjectClass parent_class; }; +PANGO_DEPRECATED_IN_1_38 GType pango_engine_get_type (void) G_GNUC_CONST; /** @@ -145,6 +146,7 @@ struct _PangoEngineLangClass int attrs_len); }; +PANGO_DEPRECATED_IN_1_38 GType pango_engine_lang_get_type (void) G_GNUC_CONST; /** @@ -232,6 +234,7 @@ struct _PangoEngineShapeClass gunichar wc); }; +PANGO_DEPRECATED_IN_1_38 GType pango_engine_shape_get_type (void) G_GNUC_CONST; typedef struct _PangoEngineInfo PangoEngineInfo; @@ -293,7 +296,7 @@ struct _PangoEngineInfo * * Deprecated: 1.38 **/ -G_DEPRECATED +PANGO_DEPRECATED_IN_1_38 void script_engine_list (PangoEngineInfo **engines, int *n_engines); @@ -306,7 +309,7 @@ void script_engine_list (PangoEngineInfo **engines, * * Deprecated: 1.38 **/ -G_DEPRECATED +PANGO_DEPRECATED_IN_1_38 void script_engine_init (GTypeModule *module); @@ -317,7 +320,7 @@ void script_engine_init (GTypeModule *module); * * Deprecated: 1.38 **/ -G_DEPRECATED +PANGO_DEPRECATED_IN_1_38 void script_engine_exit (void); /** @@ -328,7 +331,7 @@ void script_engine_exit (void); * * Deprecated: 1.38 **/ -G_DEPRECATED +PANGO_DEPRECATED_IN_1_38 PangoEngine *script_engine_create (const char *id); /* Utility macro used by PANGO_ENGINE_LANG_DEFINE_TYPE and |