summaryrefslogtreecommitdiff
path: root/girepository/gicallableinfo.c
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2011-10-30 16:31:23 +0100
committerMartin Pitt <martinpitt@gnome.org>2012-03-27 17:42:30 +0200
commit4d8e35ecdc756fa7439a1dc4e08ebd9964d92a73 (patch)
treeae1b48a7a2df48cddc0fb552fdd4b8a71fe87a58 /girepository/gicallableinfo.c
parent9406a644ba29c3df59c6493843fe06dea5614c24 (diff)
downloadgobject-introspection-4d8e35ecdc756fa7439a1dc4e08ebd9964d92a73.tar.gz
Make g_callable_info_invoke public
So it can be used for invoking callbacks https://bugzilla.gnome.org/show_bug.cgi?id=663052 Signed-off-by: Martin Pitt <martinpitt@gnome.org>
Diffstat (limited to 'girepository/gicallableinfo.c')
-rw-r--r--girepository/gicallableinfo.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/girepository/gicallableinfo.c b/girepository/gicallableinfo.c
index 25372ffa..95fa2fc2 100644
--- a/girepository/gicallableinfo.c
+++ b/girepository/gicallableinfo.c
@@ -432,16 +432,16 @@ gi_type_info_extract_ffi_return_value (GITypeInfo *return_info,
}
gboolean
-_g_callable_info_invoke (GIFunctionInfo *info,
- gpointer function,
- const GIArgument *in_args,
- int n_in_args,
- const GIArgument *out_args,
- int n_out_args,
- GIArgument *return_value,
- gboolean is_method,
- gboolean throws,
- GError **error)
+g_callable_info_invoke (GIFunctionInfo *info,
+ gpointer function,
+ const GIArgument *in_args,
+ int n_in_args,
+ const GIArgument *out_args,
+ int n_out_args,
+ GIArgument *return_value,
+ gboolean is_method,
+ gboolean throws,
+ GError **error)
{
ffi_cif cif;
ffi_type *rtype;