summaryrefslogtreecommitdiff
path: root/girepository/gitypeinfo.h
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2014-07-04 18:18:32 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2014-08-15 09:45:41 +0800
commit94380459c1e33c0f47a7f21a3608d7966aaf9208 (patch)
treebb539aaae0e903289c62a3407d79b140d33e0f94 /girepository/gitypeinfo.h
parent4bfe7f1da88c6bd73cc51666a13840661ab9edb1 (diff)
downloadgobject-introspection-94380459c1e33c0f47a7f21a3608d7966aaf9208.tar.gz
girepository: Add Header for Version Macros
This adds a header to the girepository library, which is then included either directly or indirectly by the other headers so that all the public symbols (and the 2 symbols in gitypelib-internal.h used by the tools) are decorated by a macro, that can later be used to export the symbols and also to be used to display compile-time warnings for usage of deprecated APIs, which is like what is now being done in GLib (and GTK+, Clutter, and so on). This marks the first step that we begin to stop depending on the .symbols/ .def files to export the symbols. https://bugzilla.gnome.org/show_bug.cgi?id=732669
Diffstat (limited to 'girepository/gitypeinfo.h')
-rw-r--r--girepository/gitypeinfo.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/girepository/gitypeinfo.h b/girepository/gitypeinfo.h
index 7591799a..4d5679c9 100644
--- a/girepository/gitypeinfo.h
+++ b/girepository/gitypeinfo.h
@@ -48,17 +48,36 @@ G_BEGIN_DECLS
*/
#define G_TYPE_TAG_IS_BASIC(tag) (tag < GI_TYPE_TAG_ARRAY || tag == GI_TYPE_TAG_UNICHAR)
+GI_AVAILABLE_IN_ALL
const gchar* g_type_tag_to_string (GITypeTag type);
+
+GI_AVAILABLE_IN_ALL
const gchar* g_info_type_to_string (GIInfoType type);
+
+GI_AVAILABLE_IN_ALL
gboolean g_type_info_is_pointer (GITypeInfo *info);
+
+GI_AVAILABLE_IN_ALL
GITypeTag g_type_info_get_tag (GITypeInfo *info);
+
+GI_AVAILABLE_IN_ALL
GITypeInfo * g_type_info_get_param_type (GITypeInfo *info,
gint n);
+
+GI_AVAILABLE_IN_ALL
GIBaseInfo * g_type_info_get_interface (GITypeInfo *info);
+
+GI_AVAILABLE_IN_ALL
gint g_type_info_get_array_length (GITypeInfo *info);
+
+GI_AVAILABLE_IN_ALL
gint g_type_info_get_array_fixed_size(GITypeInfo *info);
+
+GI_AVAILABLE_IN_ALL
gboolean g_type_info_is_zero_terminated (GITypeInfo *info);
+
+GI_AVAILABLE_IN_ALL
GIArrayType g_type_info_get_array_type (GITypeInfo *info);
G_END_DECLS