diff options
author | Colin Walters <walters@src.gnome.org> | 2008-09-29 19:03:37 +0000 |
---|---|---|
committer | Colin Walters <walters@src.gnome.org> | 2008-09-29 19:03:37 +0000 |
commit | 62d3aea7d2b161710f6b8964cf26baa79b010c5b (patch) | |
tree | 3d788e970e8a81fb12f97c06336f6249d49936bb /tests/scanner/annotation.h | |
parent | 3de4dd3835dd294dc76e186cf0d756356cfe281e (diff) | |
download | gobject-introspection-62d3aea7d2b161710f6b8964cf26baa79b010c5b.tar.gz |
Write out list and map types, parse 'array' annotation
svn path=/trunk/; revision=634
Diffstat (limited to 'tests/scanner/annotation.h')
-rw-r--r-- | tests/scanner/annotation.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/scanner/annotation.h b/tests/scanner/annotation.h index 124237fa..0e660015 100644 --- a/tests/scanner/annotation.h +++ b/tests/scanner/annotation.h @@ -21,7 +21,7 @@ gint annotation_object_out (AnnotationObject *object, int *outarg); GObject* annotation_object_create_object(AnnotationObject *object); GObject* annotation_object_allow_none (AnnotationObject *object, - gchar *allow_none); + gchar *somearg); gint annotation_object_inout (AnnotationObject *object, int *inoutarg); gint annotation_object_inout2 (AnnotationObject *object, @@ -38,6 +38,9 @@ gint annotation_object_calleesowns (AnnotationObject *object, GList* annotation_object_get_strings (AnnotationObject *object); GSList* annotation_object_get_objects (AnnotationObject *object); +void annotation_object_use_buffer (AnnotationObject *object, + guchar *bytes); + void annotation_object_compute_sum (AnnotationObject *object, int *nums); |