summaryrefslogtreecommitdiff
path: root/gir/gimarshallingtests.c
diff options
context:
space:
mode:
Diffstat (limited to 'gir/gimarshallingtests.c')
-rw-r--r--gir/gimarshallingtests.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/gir/gimarshallingtests.c b/gir/gimarshallingtests.c
index 0f576a82..25ce4846 100644
--- a/gir/gimarshallingtests.c
+++ b/gir/gimarshallingtests.c
@@ -2622,6 +2622,16 @@ g_i_marshalling_tests_object_method_array_return (GIMarshallingTestsObject *obje
return ints;
}
+/**
+ * g_i_marshalling_tests_object_method_int8_in:
+ * @in: (in):
+ */
+void
+g_i_marshalling_tests_object_method_int8_in (GIMarshallingTestsObject *self, gint8 in)
+{
+ G_I_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->method_int8_in (self, in);
+}
+
/**
* g_i_marshalling_tests__object_none_return:
@@ -2739,6 +2749,16 @@ g_i_marshalling_tests__object_inout_same (GIMarshallingTestsObject **object)
(*object)->int_ = 0;
}
+/**
+ * g_i_marshalling_tests__object_test_int8_in:
+ * @in: (in):
+ */
+void
+g_i_marshalling_tests__object_int8_in (GIMarshallingTestsObject *object, gint8 in)
+{
+ g_i_marshalling_tests_object_method_int8_in (object, in);
+}
+
G_DEFINE_TYPE (GIMarshallingTestsSubObject, g_i_marshalling_tests_sub_object, G_I_MARSHALLING_TESTS_TYPE_OBJECT);