diff options
author | Martin Pitt <martinpitt@gnome.org> | 2012-10-11 16:05:37 +0200 |
---|---|---|
committer | Martin Pitt <martinpitt@gnome.org> | 2012-10-11 16:05:37 +0200 |
commit | 5287a96a48c487866994353de9d1ac96b98f16e3 (patch) | |
tree | bda9d2b1368a11fbc36855348b98b1be20a174d6 /tests/gimarshallingtests.h | |
parent | 62c67bcc35967a3628ff9c09f7c8c77144dd4b6d (diff) | |
download | gobject-introspection-5287a96a48c487866994353de9d1ac96b98f16e3.tar.gz |
gimarshallingtests: Add array/GList uint32/64 in/out API
Add in/out API for testing arrays containing uint64, as well as GList
containing uint32 (GList and GHash can't contain 64 bit values as they store
them in pointers).
https://bugzilla.gnome.org/show_bug.cgi?id=685860
Diffstat (limited to 'tests/gimarshallingtests.h')
-rw-r--r-- | tests/gimarshallingtests.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/gimarshallingtests.h b/tests/gimarshallingtests.h index cdcb08e6..7768a881 100644 --- a/tests/gimarshallingtests.h +++ b/tests/gimarshallingtests.h @@ -422,11 +422,13 @@ GVariant **gi_marshalling_tests_array_gvariant_full_in (GVariant **variants); /* GArray */ GArray *gi_marshalling_tests_garray_int_none_return (void); +GArray *gi_marshalling_tests_garray_uint64_none_return (void); GArray *gi_marshalling_tests_garray_utf8_none_return (void); GArray *gi_marshalling_tests_garray_utf8_container_return (void); GArray *gi_marshalling_tests_garray_utf8_full_return (void); void gi_marshalling_tests_garray_int_none_in (GArray *array_); +void gi_marshalling_tests_garray_uint64_none_in (GArray *array_); void gi_marshalling_tests_garray_utf8_none_in (GArray *array_); void gi_marshalling_tests_garray_utf8_none_out (GArray **array_); @@ -467,11 +469,13 @@ void gi_marshalling_tests_gstrv_inout (GStrv *g_strv); /* GList */ GList *gi_marshalling_tests_glist_int_none_return (void); +GList *gi_marshalling_tests_glist_uint32_none_return (void); GList *gi_marshalling_tests_glist_utf8_none_return (void); GList *gi_marshalling_tests_glist_utf8_container_return (void); GList *gi_marshalling_tests_glist_utf8_full_return (void); void gi_marshalling_tests_glist_int_none_in (GList *list); +void gi_marshalling_tests_glist_uint32_none_in (GList *list); void gi_marshalling_tests_glist_utf8_none_in (GList *list); void gi_marshalling_tests_glist_utf8_none_out (GList **list); |