summaryrefslogtreecommitdiff
path: root/tests/scanner/annotation.c
diff options
context:
space:
mode:
authorColin Walters <walters@src.gnome.org>2008-11-17 17:01:36 +0000
committerColin Walters <walters@src.gnome.org>2008-11-17 17:01:36 +0000
commite123aa13f6478ff7486c610e49a9c2f5efab194b (patch)
tree13954f8af92ce9566b4ac18f691b407fd1304fd6 /tests/scanner/annotation.c
parent8ac2535d5e8f887dafdcfb6943144f347e1fec23 (diff)
downloadgobject-introspection-e123aa13f6478ff7486c610e49a9c2f5efab194b.tar.gz
Bug 552568 - All the argv parameters in Gtk.gir map char*** to int8
svn path=/trunk/; revision=939
Diffstat (limited to 'tests/scanner/annotation.c')
-rw-r--r--tests/scanner/annotation.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/scanner/annotation.c b/tests/scanner/annotation.c
index e4c44e13..3a67a01a 100644
--- a/tests/scanner/annotation.c
+++ b/tests/scanner/annotation.c
@@ -258,6 +258,22 @@ annotation_object_compute_sum_nz(AnnotationObject *object,
}
/**
+ * annotation_object_parse_args:
+ * @object: a #AnnotationObject
+ * @argc: (inout): Length of the argument vector
+ * @argv: (inout) (array length=argc zero-terminated=1): Argument vector
+ *
+ * Test taking a zero-terminated array with length parameter
+ **/
+void
+annotation_object_parse_args(AnnotationObject *object,
+ int *argc,
+ char ***argv)
+{
+
+}
+
+/**
* annotation_object_allow_none:
* @object: a #GObject
* @somearg: (allow-none):
@@ -293,4 +309,16 @@ annotation_object_do_not_use (AnnotationObject *object)
return NULL;
}
+/**
+ * annotation_init:
+ * @argc: (inout): The number of args.
+ * @argv: (inout) (array length=argc zero-terminated=1): The arguments.
+ **/
+void
+annotation_init (int *argc, char ***argv)
+{
+
+}
+
+
static char backslash_parsing_tester_2 = '\\';