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 /tests/scanner/foo.c | |
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 'tests/scanner/foo.c')
-rw-r--r-- | tests/scanner/foo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/scanner/foo.c b/tests/scanner/foo.c index d2fb23b2..a404aac9 100644 --- a/tests/scanner/foo.c +++ b/tests/scanner/foo.c @@ -455,6 +455,16 @@ foo_test_string_array (char **array) } /** + * foo_test_array: + * Returns: (element-type utf8) (transfer container): + */ +GArray * +foo_test_array (void) +{ + return NULL; +} + +/** * foo_rectangle_add: * @r1: (inout): add to this rect * @r2: source rectangle |