diff options
author | Tomeu Vizoso <tomeu@sugarlabs.org> | 2010-05-04 16:57:51 +0200 |
---|---|---|
committer | Tomeu Vizoso <tomeu@sugarlabs.org> | 2010-05-04 16:58:15 +0200 |
commit | f84400b39b966289d6a98548f606b247b05fb6c1 (patch) | |
tree | 4d56b0cdee22ca172da53614ce68db1faa33cd25 /gir/gimarshallingtests.h | |
parent | 39f2997b9f32598fa2288cdac36f513fcab590b5 (diff) | |
download | gobject-introspection-f84400b39b966289d6a98548f606b247b05fb6c1.tar.gz |
Add support for GArrays: add g_type_info_get_array_type() and properly scan GArray args
Based on a previous patch by C. Scott Ananian <cscott@litl.com>
https://bugzilla.gnome.org/show_bug.cgi?id=581687
Diffstat (limited to 'gir/gimarshallingtests.h')
-rw-r--r-- | gir/gimarshallingtests.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gir/gimarshallingtests.h b/gir/gimarshallingtests.h index 298f5443..dd41866f 100644 --- a/gir/gimarshallingtests.h +++ b/gir/gimarshallingtests.h @@ -296,6 +296,26 @@ void g_i_marshalling_tests_array_zero_terminated_out (gchar ***utf8s); void g_i_marshalling_tests_array_zero_terminated_inout (gchar ***utf8s); +/* GArray */ + +GArray *g_i_marshalling_tests_garray_int_none_return (void); +GArray *g_i_marshalling_tests_garray_utf8_none_return (void); +GArray *g_i_marshalling_tests_garray_utf8_container_return (void); +GArray *g_i_marshalling_tests_garray_utf8_full_return (void); + +void g_i_marshalling_tests_garray_int_none_in (GArray *array_); +void g_i_marshalling_tests_garray_utf8_none_in (GArray *array_); +void g_i_marshalling_tests_garray_utf8_container_in (GArray *array_); +void g_i_marshalling_tests_garray_utf8_full_in (GArray *array_); + +void g_i_marshalling_tests_garray_utf8_none_out (GArray **array_); +void g_i_marshalling_tests_garray_utf8_container_out (GArray **array_); +void g_i_marshalling_tests_garray_utf8_full_out (GArray **array_); + +void g_i_marshalling_tests_garray_utf8_none_inout (GArray **array_); +void g_i_marshalling_tests_garray_utf8_container_inout (GArray **array_); +void g_i_marshalling_tests_garray_utf8_full_inout (GArray **array_); + /* GList */ GList *g_i_marshalling_tests_glist_int_none_return (void); |