summaryrefslogtreecommitdiff
path: root/gir/everything.c
diff options
context:
space:
mode:
Diffstat (limited to 'gir/everything.c')
-rw-r--r--gir/everything.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/gir/everything.c b/gir/everything.c
index 563a05f3..f968bbeb 100644
--- a/gir/everything.c
+++ b/gir/everything.c
@@ -261,6 +261,19 @@ GSList *test_filename_return (void)
/* multiple output arguments */
/**
+ * test_multi_double_args:
+ * @in:
+ * @one: (out):
+ * @two: (out):
+ */
+void
+test_multi_double_args (gdouble in, gdouble *one, gdouble *two)
+{
+ *one = in * 2;
+ *two = in * 3;
+}
+
+/**
* test_utf8_out_out:
* @out0: (out) (transfer full): a copy of "first"
* @out1: (out) (transfer full): a copy of "second"