gobject-introspection 3.0.7-x86-mingw32 → 3.0.8-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -2
  3. data/ext/gobject-introspection/extconf.rb +1 -0
  4. data/ext/gobject-introspection/rb-gi-argument.c +123 -26
  5. data/ext/gobject-introspection/rb-gi-function-info.c +558 -19
  6. data/ext/gobject-introspection/rb-gi-repository.c +9 -0
  7. data/ext/gobject-introspection/rb-gobject-introspection.h +3 -0
  8. data/lib/2.2/gobject_introspection.so +0 -0
  9. data/lib/2.3/gobject_introspection.so +0 -0
  10. data/lib/gobject-introspection/loader.rb +1 -1
  11. data/vendor/local/bin/g-ir-compiler.exe +0 -0
  12. data/vendor/local/bin/g-ir-generate.exe +0 -0
  13. data/vendor/local/bin/libgirepository-1.0-1.dll +0 -0
  14. data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +4 -0
  15. data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
  16. data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
  17. data/vendor/local/lib/girepository-1.0/GModule-2.0.typelib +0 -0
  18. data/vendor/local/lib/girepository-1.0/GObject-2.0.typelib +0 -0
  19. data/vendor/local/lib/girepository-1.0/Gio-2.0.typelib +0 -0
  20. data/vendor/local/lib/gobject-introspection/giscanner/__init__.py +1 -1
  21. data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyc +0 -0
  22. data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyo +0 -0
  23. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.py +39 -11
  24. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc +0 -0
  25. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo +0 -0
  26. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.py +187 -164
  27. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc +0 -0
  28. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo +0 -0
  29. data/vendor/local/lib/gobject-introspection/giscanner/ast.py +191 -58
  30. data/vendor/local/lib/gobject-introspection/giscanner/ast.pyc +0 -0
  31. data/vendor/local/lib/gobject-introspection/giscanner/ast.pyo +0 -0
  32. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.py +42 -54
  33. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc +0 -0
  34. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo +0 -0
  35. data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.py +272 -82
  36. data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyc +0 -0
  37. data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyo +0 -0
  38. data/vendor/local/lib/gobject-introspection/giscanner/codegen.py +18 -11
  39. data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyc +0 -0
  40. data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyo +0 -0
  41. data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.py +4 -0
  42. data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyc +0 -0
  43. data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyo +0 -0
  44. data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyc +0 -0
  45. data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyo +0 -0
  46. data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.py +25 -13
  47. data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyc +0 -0
  48. data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyo +0 -0
  49. data/vendor/local/lib/gobject-introspection/giscanner/docmain.py +21 -19
  50. data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyc +0 -0
  51. data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyo +0 -0
  52. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +19 -16
  53. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc +0 -0
  54. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo +0 -0
  55. data/vendor/local/lib/gobject-introspection/giscanner/dumper.py +148 -158
  56. data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyc +0 -0
  57. data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyo +0 -0
  58. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py +31 -21
  59. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc +0 -0
  60. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo +0 -0
  61. data/vendor/local/lib/gobject-introspection/giscanner/girparser.py +13 -5
  62. data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyc +0 -0
  63. data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyo +0 -0
  64. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.py +12 -13
  65. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc +0 -0
  66. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo +0 -0
  67. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py +5 -1
  68. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc +0 -0
  69. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo +0 -0
  70. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py +11 -9
  71. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc +0 -0
  72. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo +0 -0
  73. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.py +150 -45
  74. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc +0 -0
  75. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo +0 -0
  76. data/vendor/local/lib/gobject-introspection/giscanner/message.py +56 -19
  77. data/vendor/local/lib/gobject-introspection/giscanner/message.pyc +0 -0
  78. data/vendor/local/lib/gobject-introspection/giscanner/message.pyo +0 -0
  79. data/vendor/local/lib/gobject-introspection/giscanner/msvccompiler.py +101 -0
  80. data/vendor/local/lib/gobject-introspection/giscanner/msvccompiler.pyc +0 -0
  81. data/vendor/local/lib/gobject-introspection/giscanner/msvccompiler.pyo +0 -0
  82. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.py +41 -22
  83. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc +0 -0
  84. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo +0 -0
  85. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.py +6 -1
  86. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc +0 -0
  87. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo +0 -0
  88. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.py +8 -2
  89. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc +0 -0
  90. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo +0 -0
  91. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py +42 -56
  92. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc +0 -0
  93. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo +0 -0
  94. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.py +19 -5
  95. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc +0 -0
  96. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo +0 -0
  97. data/vendor/local/lib/gobject-introspection/giscanner/transformer.py +73 -37
  98. data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyc +0 -0
  99. data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyo +0 -0
  100. data/vendor/local/lib/gobject-introspection/giscanner/utils.py +92 -14
  101. data/vendor/local/lib/gobject-introspection/giscanner/utils.pyc +0 -0
  102. data/vendor/local/lib/gobject-introspection/giscanner/utils.pyo +0 -0
  103. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py +30 -11
  104. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc +0 -0
  105. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo +0 -0
  106. data/vendor/local/lib/libgirepository-1.0.a +0 -0
  107. data/vendor/local/lib/libgirepository-1.0.dll.a +0 -0
  108. data/vendor/local/lib/libgirepository-1.0.la +1 -1
  109. data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +1 -1
  110. data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +1 -1
  111. data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +57 -13
  112. data/vendor/local/share/gir-1.0/GLib-2.0.gir +2018 -894
  113. data/vendor/local/share/gir-1.0/GModule-2.0.gir +2 -1
  114. data/vendor/local/share/gir-1.0/GObject-2.0.gir +1107 -674
  115. data/vendor/local/share/gir-1.0/Gio-2.0.gir +5589 -1287
  116. data/vendor/local/share/gobject-introspection-1.0/Makefile.introspection +4 -2
  117. data/vendor/local/share/gobject-introspection-1.0/gdump.c +8 -0
  118. data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +273 -323
  119. data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +58 -38
  120. data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +1 -1
  121. data/vendor/local/share/gobject-introspection-1.0/tests/regress.c +177 -23
  122. data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +40 -0
  123. data/vendor/local/share/man/man1/g-ir-compiler.1 +7 -7
  124. metadata +9 -7
  125. data/lib/2.0/gobject_introspection.so +0 -0
  126. data/lib/2.1/gobject_introspection.so +0 -0
@@ -68,7 +68,7 @@ _gir_export_packages = $(foreach pkg,$($(_gir_name)_EXPORT_PACKAGES),--pkg-expor
68
68
  # a command-line argument --libtool="/bin/sh ../../libtool" into
69
69
  # --libtool=c:/opt/msys/1.0/bin/libtool. So just use sh.exe without path
70
70
  # because we already "know" where the libtool configure produced is.
71
- _gir_libtool = $(if $(findstring MINGW32,$(shell uname -s)),--libtool="$(top_builddir)/libtool",$(if $(LIBTOOL),--libtool="$(LIBTOOL)"))
71
+ _gir_libtool = $(if $(findstring MINGW,$(shell uname -s)),--libtool="$(top_builddir)/libtool",$(if $(LIBTOOL),--libtool="$(LIBTOOL)"))
72
72
 
73
73
  # Macros for AM_SILENT_RULES prettiness
74
74
  _gir_verbosity = $(if $(AM_DEFAULT_VERBOSITY),$(AM_DEFAULT_VERBOSITY),1)
@@ -84,6 +84,8 @@ _gir_silent_compiler = $(_gir_silent_compiler_$(V))
84
84
  _gir_silent_compiler_ = $(_gir_silent_compiler_$(_gir_verbosity))
85
85
  _gir_silent_compiler_0 = @echo " GICOMP $(1)";
86
86
 
87
+ _gir_default_scanner_env = CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" CC="$(CC)" PKG_CONFIG="$(PKG_CONFIG)" DLLTOOL="$(DLLTOOL)"
88
+
87
89
  #
88
90
  # Creates a GIR by scanning C headers/sources
89
91
  # $(1) - Name of the gir file (output)
@@ -131,7 +133,7 @@ $(if $(or $(findstring --header-only,$($(_gir_name)_SCANNERFLAGS)),
131
133
  # needs to be added manually.
132
134
  $(1): $$($(_gir_name)_FILES)
133
135
  @ $(MKDIR_P) $(dir $(1))
134
- $(_gir_silent_scanner_prefix) $(INTROSPECTION_SCANNER_ENV) $(INTROSPECTION_SCANNER) $(_gir_silent_scanner_opts) \
136
+ $(_gir_silent_scanner_prefix) $(_gir_default_scanner_env) $(INTROSPECTION_SCANNER_ENV) $(INTROSPECTION_SCANNER) $(_gir_silent_scanner_opts) \
135
137
  $(INTROSPECTION_SCANNER_ARGS) \
136
138
  --namespace=$(_gir_namespace) \
137
139
  --nsversion=$(_gir_version) \
@@ -204,6 +204,7 @@ dump_signals (GType type, GOutputStream *out)
204
204
  }
205
205
  goutput_write (out, " </signal>\n");
206
206
  }
207
+ g_free (sig_ids);
207
208
  }
208
209
 
209
210
  static void
@@ -249,6 +250,8 @@ dump_object_type (GType type, const char *symbol, GOutputStream *out)
249
250
  escaped_printf (out, " <implements name=\"%s\"/>\n",
250
251
  g_type_name (itype));
251
252
  }
253
+ g_free (interfaces);
254
+
252
255
  dump_properties (type, out);
253
256
  dump_signals (type, out);
254
257
  goutput_write (out, " </class>\n");
@@ -280,6 +283,8 @@ dump_interface_type (GType type, const char *symbol, GOutputStream *out)
280
283
  escaped_printf (out, " <prerequisite name=\"%s\"/>\n",
281
284
  g_type_name (itype));
282
285
  }
286
+ g_free (interfaces);
287
+
283
288
  dump_properties (type, out);
284
289
  dump_signals (type, out);
285
290
  goutput_write (out, " </interface>\n");
@@ -379,6 +384,7 @@ dump_fundamental_type (GType type, const char *symbol, GOutputStream *out)
379
384
  escaped_printf (out, " <implements name=\"%s\"/>\n",
380
385
  g_type_name (itype));
381
386
  }
387
+ g_free (interfaces);
382
388
  goutput_write (out, " </fundamental>\n");
383
389
  }
384
390
 
@@ -471,6 +477,8 @@ g_irepository_dump (const char *arg, GError **error)
471
477
  input_file = g_file_new_for_path (args[0]);
472
478
  output_file = g_file_new_for_path (args[1]);
473
479
 
480
+ g_strfreev (args);
481
+
474
482
  input = g_file_read (input_file, NULL, error);
475
483
  if (input == NULL)
476
484
  return FALSE;
@@ -7,8 +7,6 @@
7
7
  * everything_nullfunc:
8
8
  *
9
9
  * Undocumented.
10
- *
11
- * Returns: (transfer none)
12
10
  */
13
11
  _GI_TEST_EXTERN
14
12
  void
@@ -17,12 +15,54 @@ everything_nullfunc (void)
17
15
  return;
18
16
  }
19
17
 
18
+ /**
19
+ * everything_const_return_gpointer:
20
+ *
21
+ * Undocumented.
22
+ *
23
+ * Returns: (transfer none)
24
+ */
25
+ _GI_TEST_EXTERN
26
+ gpointer
27
+ everything_const_return_gpointer (void)
28
+ {
29
+ return NULL;
30
+ }
31
+
32
+ /**
33
+ * everything_const_return_gintptr:
34
+ *
35
+ * Undocumented.
36
+ *
37
+ * Returns: (transfer none)
38
+ */
39
+ _GI_TEST_EXTERN
40
+ gintptr
41
+ everything_const_return_gintptr (void)
42
+ {
43
+ return 0;
44
+ }
45
+
46
+ /**
47
+ * everything_const_return_guintptr:
48
+ *
49
+ * Undocumented.
50
+ *
51
+ * Returns: (transfer none)
52
+ */
53
+ _GI_TEST_EXTERN
54
+ guintptr
55
+ everything_const_return_guintptr (void)
56
+ {
57
+ return 0;
58
+ }
59
+
20
60
  /**
21
61
  * everything_const_return_gboolean:
22
62
  *
23
63
  * Undocumented.
24
64
  *
25
- * Returns: (transfer none)
65
+ * Returns:
26
66
  */
27
67
  _GI_TEST_EXTERN
28
68
  gboolean
@@ -36,7 +76,7 @@ everything_const_return_gboolean (void)
36
76
  *
37
77
  * Undocumented.
38
78
  *
39
- * Returns: (transfer none)
79
+ * Returns:
40
80
  */
41
81
  _GI_TEST_EXTERN
42
82
  gint8
@@ -50,7 +90,7 @@ everything_const_return_gint8 (void)
50
90
  *
51
91
  * Undocumented.
52
92
  *
53
- * Returns: (transfer none)
93
+ * Returns:
54
94
  */
55
95
  _GI_TEST_EXTERN
56
96
  guint8
@@ -64,7 +104,7 @@ everything_const_return_guint8 (void)
64
104
  *
65
105
  * Undocumented.
66
106
  *
67
- * Returns: (transfer none)
107
+ * Returns:
68
108
  */
69
109
  _GI_TEST_EXTERN
70
110
  gint16
@@ -78,7 +118,7 @@ everything_const_return_gint16 (void)
78
118
  *
79
119
  * Undocumented.
80
120
  *
81
- * Returns: (transfer none)
121
+ * Returns:
82
122
  */
83
123
  _GI_TEST_EXTERN
84
124
  guint16
@@ -92,7 +132,7 @@ everything_const_return_guint16 (void)
92
132
  *
93
133
  * Undocumented.
94
134
  *
95
- * Returns: (transfer none)
135
+ * Returns:
96
136
  */
97
137
  _GI_TEST_EXTERN
98
138
  gint32
@@ -106,7 +146,7 @@ everything_const_return_gint32 (void)
106
146
  *
107
147
  * Undocumented.
108
148
  *
109
- * Returns: (transfer none)
149
+ * Returns:
110
150
  */
111
151
  _GI_TEST_EXTERN
112
152
  guint32
@@ -120,7 +160,7 @@ everything_const_return_guint32 (void)
120
160
  *
121
161
  * Undocumented.
122
162
  *
123
- * Returns: (transfer none)
163
+ * Returns:
124
164
  */
125
165
  _GI_TEST_EXTERN
126
166
  gint64
@@ -134,7 +174,7 @@ everything_const_return_gint64 (void)
134
174
  *
135
175
  * Undocumented.
136
176
  *
137
- * Returns: (transfer none)
177
+ * Returns:
138
178
  */
139
179
  _GI_TEST_EXTERN
140
180
  guint64
@@ -148,7 +188,7 @@ everything_const_return_guint64 (void)
148
188
  *
149
189
  * Undocumented.
150
190
  *
151
- * Returns: (transfer none)
191
+ * Returns:
152
192
  */
153
193
  _GI_TEST_EXTERN
154
194
  gchar
@@ -162,7 +202,7 @@ everything_const_return_gchar (void)
162
202
  *
163
203
  * Undocumented.
164
204
  *
165
- * Returns: (transfer none)
205
+ * Returns:
166
206
  */
167
207
  _GI_TEST_EXTERN
168
208
  gshort
@@ -176,7 +216,7 @@ everything_const_return_gshort (void)
176
216
  *
177
217
  * Undocumented.
178
218
  *
179
- * Returns: (transfer none)
219
+ * Returns:
180
220
  */
181
221
  _GI_TEST_EXTERN
182
222
  gushort
@@ -190,7 +230,7 @@ everything_const_return_gushort (void)
190
230
  *
191
231
  * Undocumented.
192
232
  *
193
- * Returns: (transfer none)
233
+ * Returns:
194
234
  */
195
235
  _GI_TEST_EXTERN
196
236
  gint
@@ -204,7 +244,7 @@ everything_const_return_gint (void)
204
244
  *
205
245
  * Undocumented.
206
246
  *
207
- * Returns: (transfer none)
247
+ * Returns:
208
248
  */
209
249
  _GI_TEST_EXTERN
210
250
  guint
@@ -218,7 +258,7 @@ everything_const_return_guint (void)
218
258
  *
219
259
  * Undocumented.
220
260
  *
221
- * Returns: (transfer none)
261
+ * Returns:
222
262
  */
223
263
  _GI_TEST_EXTERN
224
264
  glong
@@ -232,7 +272,7 @@ everything_const_return_glong (void)
232
272
  *
233
273
  * Undocumented.
234
274
  *
235
- * Returns: (transfer none)
275
+ * Returns:
236
276
  */
237
277
  _GI_TEST_EXTERN
238
278
  gulong
@@ -246,7 +286,7 @@ everything_const_return_gulong (void)
246
286
  *
247
287
  * Undocumented.
248
288
  *
249
- * Returns: (transfer none)
289
+ * Returns:
250
290
  */
251
291
  _GI_TEST_EXTERN
252
292
  gsize
@@ -260,7 +300,7 @@ everything_const_return_gsize (void)
260
300
  *
261
301
  * Undocumented.
262
302
  *
263
- * Returns: (transfer none)
303
+ * Returns:
264
304
  */
265
305
  _GI_TEST_EXTERN
266
306
  gssize
@@ -269,40 +309,12 @@ everything_const_return_gssize (void)
269
309
  return 0;
270
310
  }
271
311
 
272
- /**
273
- * everything_const_return_gintptr:
274
- *
275
- * Undocumented.
276
- *
277
- * Returns: (transfer none)
278
- */
279
- _GI_TEST_EXTERN
280
- gintptr
281
- everything_const_return_gintptr (void)
282
- {
283
- return 0;
284
- }
285
-
286
- /**
287
- * everything_const_return_guintptr:
288
- *
289
- * Undocumented.
290
- *
291
- * Returns: (transfer none)
292
- */
293
- _GI_TEST_EXTERN
294
- guintptr
295
- everything_const_return_guintptr (void)
296
- {
297
- return 0;
298
- }
299
-
300
312
  /**
301
313
  * everything_const_return_gfloat:
302
314
  *
303
315
  * Undocumented.
304
316
  *
305
- * Returns: (transfer none)
317
+ * Returns:
306
318
  */
307
319
  _GI_TEST_EXTERN
308
320
  gfloat
@@ -316,7 +328,7 @@ everything_const_return_gfloat (void)
316
328
  *
317
329
  * Undocumented.
318
330
  *
319
- * Returns: (transfer none)
331
+ * Returns:
320
332
  */
321
333
  _GI_TEST_EXTERN
322
334
  gdouble
@@ -330,7 +342,7 @@ everything_const_return_gdouble (void)
330
342
  *
331
343
  * Undocumented.
332
344
  *
333
- * Returns: (transfer none)
345
+ * Returns:
334
346
  */
335
347
  _GI_TEST_EXTERN
336
348
  gunichar
@@ -344,7 +356,7 @@ everything_const_return_gunichar (void)
344
356
  *
345
357
  * Undocumented.
346
358
  *
347
- * Returns: (transfer none)
359
+ * Returns:
348
360
  */
349
361
  _GI_TEST_EXTERN
350
362
  GType
@@ -358,7 +370,7 @@ everything_const_return_GType (void)
358
370
  *
359
371
  * Undocumented.
360
372
  *
361
- * Returns: (transfer none)
373
+ * Returns: (transfer none)
362
374
  */
363
375
  _GI_TEST_EXTERN
364
376
  const gchar*
@@ -372,7 +384,7 @@ everything_const_return_utf8 (void)
372
384
  *
373
385
  * Undocumented.
374
386
  *
375
- * Returns: (transfer none)
387
+ * Returns: (transfer none)
376
388
  */
377
389
  _GI_TEST_EXTERN
378
390
  const gchar*
@@ -382,12 +394,49 @@ everything_const_return_filename (void)
382
394
  }
383
395
 
384
396
  /**
385
- * everything_oneparam_gboolean:
386
- * @arg0: :
397
+ * everything_oneparam_gpointer:
398
+ * @arg0:
399
+ *
400
+ * Undocumented.
401
+ */
402
+ _GI_TEST_EXTERN
403
+ void
404
+ everything_oneparam_gpointer (gpointer arg0)
405
+ {
406
+ return;
407
+ }
408
+
409
+ /**
410
+ * everything_oneparam_gintptr:
411
+ * @arg0:
412
+ *
413
+ * Undocumented.
414
+ */
415
+ _GI_TEST_EXTERN
416
+ void
417
+ everything_oneparam_gintptr (gintptr arg0)
418
+ {
419
+ return;
420
+ }
421
+
422
+ /**
423
+ * everything_oneparam_guintptr:
424
+ * @arg0:
387
425
  *
388
426
  * Undocumented.
427
+ */
428
+ _GI_TEST_EXTERN
429
+ void
430
+ everything_oneparam_guintptr (guintptr arg0)
431
+ {
432
+ return;
433
+ }
434
+
435
+ /**
436
+ * everything_oneparam_gboolean:
437
+ * @arg0:
389
438
  *
390
- * Returns: (transfer none)
439
+ * Undocumented.
391
440
  */
392
441
  _GI_TEST_EXTERN
393
442
  void
@@ -398,11 +447,9 @@ everything_oneparam_gboolean (gboolean arg0)
398
447
 
399
448
  /**
400
449
  * everything_oneparam_gint8:
401
- * @arg0: :
450
+ * @arg0:
402
451
  *
403
452
  * Undocumented.
404
- *
405
- * Returns: (transfer none)
406
453
  */
407
454
  _GI_TEST_EXTERN
408
455
  void
@@ -413,11 +460,9 @@ everything_oneparam_gint8 (gint8 arg0)
413
460
 
414
461
  /**
415
462
  * everything_oneparam_guint8:
416
- * @arg0: :
463
+ * @arg0:
417
464
  *
418
465
  * Undocumented.
419
- *
420
- * Returns: (transfer none)
421
466
  */
422
467
  _GI_TEST_EXTERN
423
468
  void
@@ -428,11 +473,9 @@ everything_oneparam_guint8 (guint8 arg0)
428
473
 
429
474
  /**
430
475
  * everything_oneparam_gint16:
431
- * @arg0: :
476
+ * @arg0:
432
477
  *
433
478
  * Undocumented.
434
- *
435
- * Returns: (transfer none)
436
479
  */
437
480
  _GI_TEST_EXTERN
438
481
  void
@@ -443,11 +486,9 @@ everything_oneparam_gint16 (gint16 arg0)
443
486
 
444
487
  /**
445
488
  * everything_oneparam_guint16:
446
- * @arg0: :
489
+ * @arg0:
447
490
  *
448
491
  * Undocumented.
449
- *
450
- * Returns: (transfer none)
451
492
  */
452
493
  _GI_TEST_EXTERN
453
494
  void
@@ -458,11 +499,9 @@ everything_oneparam_guint16 (guint16 arg0)
458
499
 
459
500
  /**
460
501
  * everything_oneparam_gint32:
461
- * @arg0: :
502
+ * @arg0:
462
503
  *
463
504
  * Undocumented.
464
- *
465
- * Returns: (transfer none)
466
505
  */
467
506
  _GI_TEST_EXTERN
468
507
  void
@@ -473,11 +512,9 @@ everything_oneparam_gint32 (gint32 arg0)
473
512
 
474
513
  /**
475
514
  * everything_oneparam_guint32:
476
- * @arg0: :
515
+ * @arg0:
477
516
  *
478
517
  * Undocumented.
479
- *
480
- * Returns: (transfer none)
481
518
  */
482
519
  _GI_TEST_EXTERN
483
520
  void
@@ -488,11 +525,9 @@ everything_oneparam_guint32 (guint32 arg0)
488
525
 
489
526
  /**
490
527
  * everything_oneparam_gint64:
491
- * @arg0: :
528
+ * @arg0:
492
529
  *
493
530
  * Undocumented.
494
- *
495
- * Returns: (transfer none)
496
531
  */
497
532
  _GI_TEST_EXTERN
498
533
  void
@@ -503,11 +538,9 @@ everything_oneparam_gint64 (gint64 arg0)
503
538
 
504
539
  /**
505
540
  * everything_oneparam_guint64:
506
- * @arg0: :
541
+ * @arg0:
507
542
  *
508
543
  * Undocumented.
509
- *
510
- * Returns: (transfer none)
511
544
  */
512
545
  _GI_TEST_EXTERN
513
546
  void
@@ -518,11 +551,9 @@ everything_oneparam_guint64 (guint64 arg0)
518
551
 
519
552
  /**
520
553
  * everything_oneparam_gchar:
521
- * @arg0: :
554
+ * @arg0:
522
555
  *
523
556
  * Undocumented.
524
- *
525
- * Returns: (transfer none)
526
557
  */
527
558
  _GI_TEST_EXTERN
528
559
  void
@@ -533,11 +564,9 @@ everything_oneparam_gchar (gchar arg0)
533
564
 
534
565
  /**
535
566
  * everything_oneparam_gshort:
536
- * @arg0: :
567
+ * @arg0:
537
568
  *
538
569
  * Undocumented.
539
- *
540
- * Returns: (transfer none)
541
570
  */
542
571
  _GI_TEST_EXTERN
543
572
  void
@@ -548,11 +577,9 @@ everything_oneparam_gshort (gshort arg0)
548
577
 
549
578
  /**
550
579
  * everything_oneparam_gushort:
551
- * @arg0: :
580
+ * @arg0:
552
581
  *
553
582
  * Undocumented.
554
- *
555
- * Returns: (transfer none)
556
583
  */
557
584
  _GI_TEST_EXTERN
558
585
  void
@@ -563,11 +590,9 @@ everything_oneparam_gushort (gushort arg0)
563
590
 
564
591
  /**
565
592
  * everything_oneparam_gint:
566
- * @arg0: :
593
+ * @arg0:
567
594
  *
568
595
  * Undocumented.
569
- *
570
- * Returns: (transfer none)
571
596
  */
572
597
  _GI_TEST_EXTERN
573
598
  void
@@ -578,11 +603,9 @@ everything_oneparam_gint (gint arg0)
578
603
 
579
604
  /**
580
605
  * everything_oneparam_guint:
581
- * @arg0: :
606
+ * @arg0:
582
607
  *
583
608
  * Undocumented.
584
- *
585
- * Returns: (transfer none)
586
609
  */
587
610
  _GI_TEST_EXTERN
588
611
  void
@@ -593,11 +616,9 @@ everything_oneparam_guint (guint arg0)
593
616
 
594
617
  /**
595
618
  * everything_oneparam_glong:
596
- * @arg0: :
619
+ * @arg0:
597
620
  *
598
621
  * Undocumented.
599
- *
600
- * Returns: (transfer none)
601
622
  */
602
623
  _GI_TEST_EXTERN
603
624
  void
@@ -608,11 +629,9 @@ everything_oneparam_glong (glong arg0)
608
629
 
609
630
  /**
610
631
  * everything_oneparam_gulong:
611
- * @arg0: :
632
+ * @arg0:
612
633
  *
613
634
  * Undocumented.
614
- *
615
- * Returns: (transfer none)
616
635
  */
617
636
  _GI_TEST_EXTERN
618
637
  void
@@ -623,11 +642,9 @@ everything_oneparam_gulong (gulong arg0)
623
642
 
624
643
  /**
625
644
  * everything_oneparam_gsize:
626
- * @arg0: :
645
+ * @arg0:
627
646
  *
628
647
  * Undocumented.
629
- *
630
- * Returns: (transfer none)
631
648
  */
632
649
  _GI_TEST_EXTERN
633
650
  void
@@ -638,11 +655,9 @@ everything_oneparam_gsize (gsize arg0)
638
655
 
639
656
  /**
640
657
  * everything_oneparam_gssize:
641
- * @arg0: :
658
+ * @arg0:
642
659
  *
643
660
  * Undocumented.
644
- *
645
- * Returns: (transfer none)
646
661
  */
647
662
  _GI_TEST_EXTERN
648
663
  void
@@ -652,132 +667,130 @@ everything_oneparam_gssize (gssize arg0)
652
667
  }
653
668
 
654
669
  /**
655
- * everything_oneparam_gintptr:
656
- * @arg0: :
670
+ * everything_oneparam_gfloat:
671
+ * @arg0:
657
672
  *
658
673
  * Undocumented.
659
- *
660
- * Returns: (transfer none)
661
674
  */
662
675
  _GI_TEST_EXTERN
663
676
  void
664
- everything_oneparam_gintptr (gintptr arg0)
677
+ everything_oneparam_gfloat (gfloat arg0)
665
678
  {
666
679
  return;
667
680
  }
668
681
 
669
682
  /**
670
- * everything_oneparam_guintptr:
671
- * @arg0: :
683
+ * everything_oneparam_gdouble:
684
+ * @arg0:
672
685
  *
673
686
  * Undocumented.
674
- *
675
- * Returns: (transfer none)
676
687
  */
677
688
  _GI_TEST_EXTERN
678
689
  void
679
- everything_oneparam_guintptr (guintptr arg0)
690
+ everything_oneparam_gdouble (gdouble arg0)
680
691
  {
681
692
  return;
682
693
  }
683
694
 
684
695
  /**
685
- * everything_oneparam_gfloat:
686
- * @arg0: :
696
+ * everything_oneparam_gunichar:
697
+ * @arg0:
687
698
  *
688
699
  * Undocumented.
689
- *
690
- * Returns: (transfer none)
691
700
  */
692
701
  _GI_TEST_EXTERN
693
702
  void
694
- everything_oneparam_gfloat (gfloat arg0)
703
+ everything_oneparam_gunichar (gunichar arg0)
695
704
  {
696
705
  return;
697
706
  }
698
707
 
699
708
  /**
700
- * everything_oneparam_gdouble:
701
- * @arg0: :
709
+ * everything_oneparam_GType:
710
+ * @arg0:
702
711
  *
703
712
  * Undocumented.
704
- *
705
- * Returns: (transfer none)
706
713
  */
707
714
  _GI_TEST_EXTERN
708
715
  void
709
- everything_oneparam_gdouble (gdouble arg0)
716
+ everything_oneparam_GType (GType arg0)
710
717
  {
711
718
  return;
712
719
  }
713
720
 
714
721
  /**
715
- * everything_oneparam_gunichar:
716
- * @arg0: :
722
+ * everything_oneparam_utf8:
723
+ * @arg0:
717
724
  *
718
725
  * Undocumented.
719
- *
720
- * Returns: (transfer none)
721
726
  */
722
727
  _GI_TEST_EXTERN
723
728
  void
724
- everything_oneparam_gunichar (gunichar arg0)
729
+ everything_oneparam_utf8 (const gchar* arg0)
725
730
  {
726
731
  return;
727
732
  }
728
733
 
729
734
  /**
730
- * everything_oneparam_GType:
731
- * @arg0: :
735
+ * everything_oneparam_filename:
736
+ * @arg0:
732
737
  *
733
738
  * Undocumented.
734
- *
735
- * Returns: (transfer none)
736
739
  */
737
740
  _GI_TEST_EXTERN
738
741
  void
739
- everything_oneparam_GType (GType arg0)
742
+ everything_oneparam_filename (const gchar* arg0)
740
743
  {
741
744
  return;
742
745
  }
743
746
 
744
747
  /**
745
- * everything_oneparam_utf8:
746
- * @arg0: :
748
+ * everything_one_outparam_gpointer:
749
+ * @arg0: (out) (transfer none):
747
750
  *
748
751
  * Undocumented.
749
- *
750
- * Returns: (transfer none)
751
752
  */
752
753
  _GI_TEST_EXTERN
753
754
  void
754
- everything_oneparam_utf8 (const gchar* arg0)
755
+ everything_one_outparam_gpointer (gpointer* arg0)
755
756
  {
757
+ *arg0 = 0;
756
758
  return;
757
759
  }
758
760
 
759
761
  /**
760
- * everything_oneparam_filename:
761
- * @arg0: :
762
+ * everything_one_outparam_gintptr:
763
+ * @arg0: (out) (transfer none):
762
764
  *
763
765
  * Undocumented.
766
+ */
767
+ _GI_TEST_EXTERN
768
+ void
769
+ everything_one_outparam_gintptr (gintptr* arg0)
770
+ {
771
+ *arg0 = 0;
772
+ return;
773
+ }
774
+
775
+ /**
776
+ * everything_one_outparam_guintptr:
777
+ * @arg0: (out) (transfer none):
764
778
  *
765
- * Returns: (transfer none)
779
+ * Undocumented.
766
780
  */
767
781
  _GI_TEST_EXTERN
768
782
  void
769
- everything_oneparam_filename (const gchar* arg0)
783
+ everything_one_outparam_guintptr (guintptr* arg0)
770
784
  {
785
+ *arg0 = 0;
771
786
  return;
772
787
  }
773
788
 
774
789
  /**
775
790
  * everything_one_outparam_gboolean:
776
- * @arg0: (out) (transfer none):
791
+ * @arg0: (out) :
777
792
  *
778
793
  * Undocumented.
779
- *
780
- * Returns: (transfer none)
781
794
  */
782
795
  _GI_TEST_EXTERN
783
796
  void
@@ -789,11 +802,9 @@ everything_one_outparam_gboolean (gboolean* arg0)
789
802
 
790
803
  /**
791
804
  * everything_one_outparam_gint8:
792
- * @arg0: (out) (transfer none):
805
+ * @arg0: (out) :
793
806
  *
794
807
  * Undocumented.
795
- *
796
- * Returns: (transfer none)
797
808
  */
798
809
  _GI_TEST_EXTERN
799
810
  void
@@ -805,11 +816,9 @@ everything_one_outparam_gint8 (gint8* arg0)
805
816
 
806
817
  /**
807
818
  * everything_one_outparam_guint8:
808
- * @arg0: (out) (transfer none):
819
+ * @arg0: (out) :
809
820
  *
810
821
  * Undocumented.
811
- *
812
- * Returns: (transfer none)
813
822
  */
814
823
  _GI_TEST_EXTERN
815
824
  void
@@ -821,11 +830,9 @@ everything_one_outparam_guint8 (guint8* arg0)
821
830
 
822
831
  /**
823
832
  * everything_one_outparam_gint16:
824
- * @arg0: (out) (transfer none):
833
+ * @arg0: (out) :
825
834
  *
826
835
  * Undocumented.
827
- *
828
- * Returns: (transfer none)
829
836
  */
830
837
  _GI_TEST_EXTERN
831
838
  void
@@ -837,11 +844,9 @@ everything_one_outparam_gint16 (gint16* arg0)
837
844
 
838
845
  /**
839
846
  * everything_one_outparam_guint16:
840
- * @arg0: (out) (transfer none):
847
+ * @arg0: (out) :
841
848
  *
842
849
  * Undocumented.
843
- *
844
- * Returns: (transfer none)
845
850
  */
846
851
  _GI_TEST_EXTERN
847
852
  void
@@ -853,11 +858,9 @@ everything_one_outparam_guint16 (guint16* arg0)
853
858
 
854
859
  /**
855
860
  * everything_one_outparam_gint32:
856
- * @arg0: (out) (transfer none):
861
+ * @arg0: (out) :
857
862
  *
858
863
  * Undocumented.
859
- *
860
- * Returns: (transfer none)
861
864
  */
862
865
  _GI_TEST_EXTERN
863
866
  void
@@ -869,11 +872,9 @@ everything_one_outparam_gint32 (gint32* arg0)
869
872
 
870
873
  /**
871
874
  * everything_one_outparam_guint32:
872
- * @arg0: (out) (transfer none):
875
+ * @arg0: (out) :
873
876
  *
874
877
  * Undocumented.
875
- *
876
- * Returns: (transfer none)
877
878
  */
878
879
  _GI_TEST_EXTERN
879
880
  void
@@ -885,11 +886,9 @@ everything_one_outparam_guint32 (guint32* arg0)
885
886
 
886
887
  /**
887
888
  * everything_one_outparam_gint64:
888
- * @arg0: (out) (transfer none):
889
+ * @arg0: (out) :
889
890
  *
890
891
  * Undocumented.
891
- *
892
- * Returns: (transfer none)
893
892
  */
894
893
  _GI_TEST_EXTERN
895
894
  void
@@ -901,11 +900,9 @@ everything_one_outparam_gint64 (gint64* arg0)
901
900
 
902
901
  /**
903
902
  * everything_one_outparam_guint64:
904
- * @arg0: (out) (transfer none):
903
+ * @arg0: (out) :
905
904
  *
906
905
  * Undocumented.
907
- *
908
- * Returns: (transfer none)
909
906
  */
910
907
  _GI_TEST_EXTERN
911
908
  void
@@ -917,11 +914,9 @@ everything_one_outparam_guint64 (guint64* arg0)
917
914
 
918
915
  /**
919
916
  * everything_one_outparam_gchar:
920
- * @arg0: (out) (transfer none):
917
+ * @arg0: (out) :
921
918
  *
922
919
  * Undocumented.
923
- *
924
- * Returns: (transfer none)
925
920
  */
926
921
  _GI_TEST_EXTERN
927
922
  void
@@ -933,11 +928,9 @@ everything_one_outparam_gchar (gchar* arg0)
933
928
 
934
929
  /**
935
930
  * everything_one_outparam_gshort:
936
- * @arg0: (out) (transfer none):
931
+ * @arg0: (out) :
937
932
  *
938
933
  * Undocumented.
939
- *
940
- * Returns: (transfer none)
941
934
  */
942
935
  _GI_TEST_EXTERN
943
936
  void
@@ -949,11 +942,9 @@ everything_one_outparam_gshort (gshort* arg0)
949
942
 
950
943
  /**
951
944
  * everything_one_outparam_gushort:
952
- * @arg0: (out) (transfer none):
945
+ * @arg0: (out) :
953
946
  *
954
947
  * Undocumented.
955
- *
956
- * Returns: (transfer none)
957
948
  */
958
949
  _GI_TEST_EXTERN
959
950
  void
@@ -965,11 +956,9 @@ everything_one_outparam_gushort (gushort* arg0)
965
956
 
966
957
  /**
967
958
  * everything_one_outparam_gint:
968
- * @arg0: (out) (transfer none):
959
+ * @arg0: (out) :
969
960
  *
970
961
  * Undocumented.
971
- *
972
- * Returns: (transfer none)
973
962
  */
974
963
  _GI_TEST_EXTERN
975
964
  void
@@ -981,11 +970,9 @@ everything_one_outparam_gint (gint* arg0)
981
970
 
982
971
  /**
983
972
  * everything_one_outparam_guint:
984
- * @arg0: (out) (transfer none):
973
+ * @arg0: (out) :
985
974
  *
986
975
  * Undocumented.
987
- *
988
- * Returns: (transfer none)
989
976
  */
990
977
  _GI_TEST_EXTERN
991
978
  void
@@ -997,11 +984,9 @@ everything_one_outparam_guint (guint* arg0)
997
984
 
998
985
  /**
999
986
  * everything_one_outparam_glong:
1000
- * @arg0: (out) (transfer none):
987
+ * @arg0: (out) :
1001
988
  *
1002
989
  * Undocumented.
1003
- *
1004
- * Returns: (transfer none)
1005
990
  */
1006
991
  _GI_TEST_EXTERN
1007
992
  void
@@ -1013,11 +998,9 @@ everything_one_outparam_glong (glong* arg0)
1013
998
 
1014
999
  /**
1015
1000
  * everything_one_outparam_gulong:
1016
- * @arg0: (out) (transfer none):
1001
+ * @arg0: (out) :
1017
1002
  *
1018
1003
  * Undocumented.
1019
- *
1020
- * Returns: (transfer none)
1021
1004
  */
1022
1005
  _GI_TEST_EXTERN
1023
1006
  void
@@ -1029,11 +1012,9 @@ everything_one_outparam_gulong (gulong* arg0)
1029
1012
 
1030
1013
  /**
1031
1014
  * everything_one_outparam_gsize:
1032
- * @arg0: (out) (transfer none):
1015
+ * @arg0: (out) :
1033
1016
  *
1034
1017
  * Undocumented.
1035
- *
1036
- * Returns: (transfer none)
1037
1018
  */
1038
1019
  _GI_TEST_EXTERN
1039
1020
  void
@@ -1045,11 +1026,9 @@ everything_one_outparam_gsize (gsize* arg0)
1045
1026
 
1046
1027
  /**
1047
1028
  * everything_one_outparam_gssize:
1048
- * @arg0: (out) (transfer none):
1029
+ * @arg0: (out) :
1049
1030
  *
1050
1031
  * Undocumented.
1051
- *
1052
- * Returns: (transfer none)
1053
1032
  */
1054
1033
  _GI_TEST_EXTERN
1055
1034
  void
@@ -1060,140 +1039,141 @@ everything_one_outparam_gssize (gssize* arg0)
1060
1039
  }
1061
1040
 
1062
1041
  /**
1063
- * everything_one_outparam_gintptr:
1064
- * @arg0: (out) (transfer none):
1042
+ * everything_one_outparam_gfloat:
1043
+ * @arg0: (out) :
1065
1044
  *
1066
1045
  * Undocumented.
1067
- *
1068
- * Returns: (transfer none)
1069
1046
  */
1070
1047
  _GI_TEST_EXTERN
1071
1048
  void
1072
- everything_one_outparam_gintptr (gintptr* arg0)
1049
+ everything_one_outparam_gfloat (gfloat* arg0)
1073
1050
  {
1074
1051
  *arg0 = 0;
1075
1052
  return;
1076
1053
  }
1077
1054
 
1078
1055
  /**
1079
- * everything_one_outparam_guintptr:
1080
- * @arg0: (out) (transfer none):
1056
+ * everything_one_outparam_gdouble:
1057
+ * @arg0: (out) :
1081
1058
  *
1082
1059
  * Undocumented.
1083
- *
1084
- * Returns: (transfer none)
1085
1060
  */
1086
1061
  _GI_TEST_EXTERN
1087
1062
  void
1088
- everything_one_outparam_guintptr (guintptr* arg0)
1063
+ everything_one_outparam_gdouble (gdouble* arg0)
1089
1064
  {
1090
1065
  *arg0 = 0;
1091
1066
  return;
1092
1067
  }
1093
1068
 
1094
1069
  /**
1095
- * everything_one_outparam_gfloat:
1096
- * @arg0: (out) (transfer none):
1070
+ * everything_one_outparam_gunichar:
1071
+ * @arg0: (out) :
1097
1072
  *
1098
1073
  * Undocumented.
1099
- *
1100
- * Returns: (transfer none)
1101
1074
  */
1102
1075
  _GI_TEST_EXTERN
1103
1076
  void
1104
- everything_one_outparam_gfloat (gfloat* arg0)
1077
+ everything_one_outparam_gunichar (gunichar* arg0)
1105
1078
  {
1106
1079
  *arg0 = 0;
1107
1080
  return;
1108
1081
  }
1109
1082
 
1110
1083
  /**
1111
- * everything_one_outparam_gdouble:
1112
- * @arg0: (out) (transfer none):
1084
+ * everything_one_outparam_GType:
1085
+ * @arg0: (out) :
1113
1086
  *
1114
1087
  * Undocumented.
1115
- *
1116
- * Returns: (transfer none)
1117
1088
  */
1118
1089
  _GI_TEST_EXTERN
1119
1090
  void
1120
- everything_one_outparam_gdouble (gdouble* arg0)
1091
+ everything_one_outparam_GType (GType* arg0)
1121
1092
  {
1122
1093
  *arg0 = 0;
1123
1094
  return;
1124
1095
  }
1125
1096
 
1126
1097
  /**
1127
- * everything_one_outparam_gunichar:
1128
- * @arg0: (out) (transfer none):
1098
+ * everything_one_outparam_utf8:
1099
+ * @arg0: (out) (transfer none):
1129
1100
  *
1130
1101
  * Undocumented.
1131
- *
1132
- * Returns: (transfer none)
1133
1102
  */
1134
1103
  _GI_TEST_EXTERN
1135
1104
  void
1136
- everything_one_outparam_gunichar (gunichar* arg0)
1105
+ everything_one_outparam_utf8 (const gchar** arg0)
1137
1106
  {
1138
1107
  *arg0 = 0;
1139
1108
  return;
1140
1109
  }
1141
1110
 
1142
1111
  /**
1143
- * everything_one_outparam_GType:
1144
- * @arg0: (out) (transfer none):
1112
+ * everything_one_outparam_filename:
1113
+ * @arg0: (out) (transfer none):
1145
1114
  *
1146
1115
  * Undocumented.
1147
- *
1148
- * Returns: (transfer none)
1149
1116
  */
1150
1117
  _GI_TEST_EXTERN
1151
1118
  void
1152
- everything_one_outparam_GType (GType* arg0)
1119
+ everything_one_outparam_filename (const gchar** arg0)
1153
1120
  {
1154
1121
  *arg0 = 0;
1155
1122
  return;
1156
1123
  }
1157
1124
 
1158
1125
  /**
1159
- * everything_one_outparam_utf8:
1160
- * @arg0: (out) (transfer none):
1126
+ * everything_passthrough_one_gpointer:
1127
+ * @arg0:
1161
1128
  *
1162
1129
  * Undocumented.
1163
1130
  *
1164
- * Returns: (transfer none)
1131
+ * Returns: (transfer none)
1165
1132
  */
1166
1133
  _GI_TEST_EXTERN
1167
- void
1168
- everything_one_outparam_utf8 (const gchar** arg0)
1134
+ gpointer
1135
+ everything_passthrough_one_gpointer (gpointer arg0)
1169
1136
  {
1170
- *arg0 = 0;
1171
- return;
1137
+ return arg0;
1172
1138
  }
1173
1139
 
1174
1140
  /**
1175
- * everything_one_outparam_filename:
1176
- * @arg0: (out) (transfer none):
1141
+ * everything_passthrough_one_gintptr:
1142
+ * @arg0:
1177
1143
  *
1178
1144
  * Undocumented.
1179
1145
  *
1180
- * Returns: (transfer none)
1146
+ * Returns: (transfer none)
1181
1147
  */
1182
1148
  _GI_TEST_EXTERN
1183
- void
1184
- everything_one_outparam_filename (const gchar** arg0)
1149
+ gintptr
1150
+ everything_passthrough_one_gintptr (gintptr arg0)
1185
1151
  {
1186
- *arg0 = 0;
1187
- return;
1152
+ return arg0;
1153
+ }
1154
+
1155
+ /**
1156
+ * everything_passthrough_one_guintptr:
1157
+ * @arg0:
1158
+ *
1159
+ * Undocumented.
1160
+ *
1161
+ * Returns: (transfer none)
1162
+ */
1163
+ _GI_TEST_EXTERN
1164
+ guintptr
1165
+ everything_passthrough_one_guintptr (guintptr arg0)
1166
+ {
1167
+ return arg0;
1188
1168
  }
1189
1169
 
1190
1170
  /**
1191
1171
  * everything_passthrough_one_gboolean:
1192
- * @arg0: :
1172
+ * @arg0:
1193
1173
  *
1194
1174
  * Undocumented.
1195
1175
  *
1196
- * Returns: (transfer none)
1176
+ * Returns:
1197
1177
  */
1198
1178
  _GI_TEST_EXTERN
1199
1179
  gboolean
@@ -1204,11 +1184,11 @@ everything_passthrough_one_gboolean (gboolean arg0)
1204
1184
 
1205
1185
  /**
1206
1186
  * everything_passthrough_one_gint8:
1207
- * @arg0: :
1187
+ * @arg0:
1208
1188
  *
1209
1189
  * Undocumented.
1210
1190
  *
1211
- * Returns: (transfer none)
1191
+ * Returns:
1212
1192
  */
1213
1193
  _GI_TEST_EXTERN
1214
1194
  gint8
@@ -1219,11 +1199,11 @@ everything_passthrough_one_gint8 (gint8 arg0)
1219
1199
 
1220
1200
  /**
1221
1201
  * everything_passthrough_one_guint8:
1222
- * @arg0: :
1202
+ * @arg0:
1223
1203
  *
1224
1204
  * Undocumented.
1225
1205
  *
1226
- * Returns: (transfer none)
1206
+ * Returns:
1227
1207
  */
1228
1208
  _GI_TEST_EXTERN
1229
1209
  guint8
@@ -1234,11 +1214,11 @@ everything_passthrough_one_guint8 (guint8 arg0)
1234
1214
 
1235
1215
  /**
1236
1216
  * everything_passthrough_one_gint16:
1237
- * @arg0: :
1217
+ * @arg0:
1238
1218
  *
1239
1219
  * Undocumented.
1240
1220
  *
1241
- * Returns: (transfer none)
1221
+ * Returns:
1242
1222
  */
1243
1223
  _GI_TEST_EXTERN
1244
1224
  gint16
@@ -1249,11 +1229,11 @@ everything_passthrough_one_gint16 (gint16 arg0)
1249
1229
 
1250
1230
  /**
1251
1231
  * everything_passthrough_one_guint16:
1252
- * @arg0: :
1232
+ * @arg0:
1253
1233
  *
1254
1234
  * Undocumented.
1255
1235
  *
1256
- * Returns: (transfer none)
1236
+ * Returns:
1257
1237
  */
1258
1238
  _GI_TEST_EXTERN
1259
1239
  guint16
@@ -1264,11 +1244,11 @@ everything_passthrough_one_guint16 (guint16 arg0)
1264
1244
 
1265
1245
  /**
1266
1246
  * everything_passthrough_one_gint32:
1267
- * @arg0: :
1247
+ * @arg0:
1268
1248
  *
1269
1249
  * Undocumented.
1270
1250
  *
1271
- * Returns: (transfer none)
1251
+ * Returns:
1272
1252
  */
1273
1253
  _GI_TEST_EXTERN
1274
1254
  gint32
@@ -1279,11 +1259,11 @@ everything_passthrough_one_gint32 (gint32 arg0)
1279
1259
 
1280
1260
  /**
1281
1261
  * everything_passthrough_one_guint32:
1282
- * @arg0: :
1262
+ * @arg0:
1283
1263
  *
1284
1264
  * Undocumented.
1285
1265
  *
1286
- * Returns: (transfer none)
1266
+ * Returns:
1287
1267
  */
1288
1268
  _GI_TEST_EXTERN
1289
1269
  guint32
@@ -1294,11 +1274,11 @@ everything_passthrough_one_guint32 (guint32 arg0)
1294
1274
 
1295
1275
  /**
1296
1276
  * everything_passthrough_one_gint64:
1297
- * @arg0: :
1277
+ * @arg0:
1298
1278
  *
1299
1279
  * Undocumented.
1300
1280
  *
1301
- * Returns: (transfer none)
1281
+ * Returns:
1302
1282
  */
1303
1283
  _GI_TEST_EXTERN
1304
1284
  gint64
@@ -1309,11 +1289,11 @@ everything_passthrough_one_gint64 (gint64 arg0)
1309
1289
 
1310
1290
  /**
1311
1291
  * everything_passthrough_one_guint64:
1312
- * @arg0: :
1292
+ * @arg0:
1313
1293
  *
1314
1294
  * Undocumented.
1315
1295
  *
1316
- * Returns: (transfer none)
1296
+ * Returns:
1317
1297
  */
1318
1298
  _GI_TEST_EXTERN
1319
1299
  guint64
@@ -1324,11 +1304,11 @@ everything_passthrough_one_guint64 (guint64 arg0)
1324
1304
 
1325
1305
  /**
1326
1306
  * everything_passthrough_one_gchar:
1327
- * @arg0: :
1307
+ * @arg0:
1328
1308
  *
1329
1309
  * Undocumented.
1330
1310
  *
1331
- * Returns: (transfer none)
1311
+ * Returns:
1332
1312
  */
1333
1313
  _GI_TEST_EXTERN
1334
1314
  gchar
@@ -1339,11 +1319,11 @@ everything_passthrough_one_gchar (gchar arg0)
1339
1319
 
1340
1320
  /**
1341
1321
  * everything_passthrough_one_gshort:
1342
- * @arg0: :
1322
+ * @arg0:
1343
1323
  *
1344
1324
  * Undocumented.
1345
1325
  *
1346
- * Returns: (transfer none)
1326
+ * Returns:
1347
1327
  */
1348
1328
  _GI_TEST_EXTERN
1349
1329
  gshort
@@ -1354,11 +1334,11 @@ everything_passthrough_one_gshort (gshort arg0)
1354
1334
 
1355
1335
  /**
1356
1336
  * everything_passthrough_one_gushort:
1357
- * @arg0: :
1337
+ * @arg0:
1358
1338
  *
1359
1339
  * Undocumented.
1360
1340
  *
1361
- * Returns: (transfer none)
1341
+ * Returns:
1362
1342
  */
1363
1343
  _GI_TEST_EXTERN
1364
1344
  gushort
@@ -1369,11 +1349,11 @@ everything_passthrough_one_gushort (gushort arg0)
1369
1349
 
1370
1350
  /**
1371
1351
  * everything_passthrough_one_gint:
1372
- * @arg0: :
1352
+ * @arg0:
1373
1353
  *
1374
1354
  * Undocumented.
1375
1355
  *
1376
- * Returns: (transfer none)
1356
+ * Returns:
1377
1357
  */
1378
1358
  _GI_TEST_EXTERN
1379
1359
  gint
@@ -1384,11 +1364,11 @@ everything_passthrough_one_gint (gint arg0)
1384
1364
 
1385
1365
  /**
1386
1366
  * everything_passthrough_one_guint:
1387
- * @arg0: :
1367
+ * @arg0:
1388
1368
  *
1389
1369
  * Undocumented.
1390
1370
  *
1391
- * Returns: (transfer none)
1371
+ * Returns:
1392
1372
  */
1393
1373
  _GI_TEST_EXTERN
1394
1374
  guint
@@ -1399,11 +1379,11 @@ everything_passthrough_one_guint (guint arg0)
1399
1379
 
1400
1380
  /**
1401
1381
  * everything_passthrough_one_glong:
1402
- * @arg0: :
1382
+ * @arg0:
1403
1383
  *
1404
1384
  * Undocumented.
1405
1385
  *
1406
- * Returns: (transfer none)
1386
+ * Returns:
1407
1387
  */
1408
1388
  _GI_TEST_EXTERN
1409
1389
  glong
@@ -1414,11 +1394,11 @@ everything_passthrough_one_glong (glong arg0)
1414
1394
 
1415
1395
  /**
1416
1396
  * everything_passthrough_one_gulong:
1417
- * @arg0: :
1397
+ * @arg0:
1418
1398
  *
1419
1399
  * Undocumented.
1420
1400
  *
1421
- * Returns: (transfer none)
1401
+ * Returns:
1422
1402
  */
1423
1403
  _GI_TEST_EXTERN
1424
1404
  gulong
@@ -1429,11 +1409,11 @@ everything_passthrough_one_gulong (gulong arg0)
1429
1409
 
1430
1410
  /**
1431
1411
  * everything_passthrough_one_gsize:
1432
- * @arg0: :
1412
+ * @arg0:
1433
1413
  *
1434
1414
  * Undocumented.
1435
1415
  *
1436
- * Returns: (transfer none)
1416
+ * Returns:
1437
1417
  */
1438
1418
  _GI_TEST_EXTERN
1439
1419
  gsize
@@ -1444,11 +1424,11 @@ everything_passthrough_one_gsize (gsize arg0)
1444
1424
 
1445
1425
  /**
1446
1426
  * everything_passthrough_one_gssize:
1447
- * @arg0: :
1427
+ * @arg0:
1448
1428
  *
1449
1429
  * Undocumented.
1450
1430
  *
1451
- * Returns: (transfer none)
1431
+ * Returns:
1452
1432
  */
1453
1433
  _GI_TEST_EXTERN
1454
1434
  gssize
@@ -1457,43 +1437,13 @@ everything_passthrough_one_gssize (gssize arg0)
1457
1437
  return arg0;
1458
1438
  }
1459
1439
 
1460
- /**
1461
- * everything_passthrough_one_gintptr:
1462
- * @arg0: :
1463
- *
1464
- * Undocumented.
1465
- *
1466
- * Returns: (transfer none)
1467
- */
1468
- _GI_TEST_EXTERN
1469
- gintptr
1470
- everything_passthrough_one_gintptr (gintptr arg0)
1471
- {
1472
- return arg0;
1473
- }
1474
-
1475
- /**
1476
- * everything_passthrough_one_guintptr:
1477
- * @arg0: :
1478
- *
1479
- * Undocumented.
1480
- *
1481
- * Returns: (transfer none)
1482
- */
1483
- _GI_TEST_EXTERN
1484
- guintptr
1485
- everything_passthrough_one_guintptr (guintptr arg0)
1486
- {
1487
- return arg0;
1488
- }
1489
-
1490
1440
  /**
1491
1441
  * everything_passthrough_one_gfloat:
1492
- * @arg0: :
1442
+ * @arg0:
1493
1443
  *
1494
1444
  * Undocumented.
1495
1445
  *
1496
- * Returns: (transfer none)
1446
+ * Returns:
1497
1447
  */
1498
1448
  _GI_TEST_EXTERN
1499
1449
  gfloat
@@ -1504,11 +1454,11 @@ everything_passthrough_one_gfloat (gfloat arg0)
1504
1454
 
1505
1455
  /**
1506
1456
  * everything_passthrough_one_gdouble:
1507
- * @arg0: :
1457
+ * @arg0:
1508
1458
  *
1509
1459
  * Undocumented.
1510
1460
  *
1511
- * Returns: (transfer none)
1461
+ * Returns:
1512
1462
  */
1513
1463
  _GI_TEST_EXTERN
1514
1464
  gdouble
@@ -1519,11 +1469,11 @@ everything_passthrough_one_gdouble (gdouble arg0)
1519
1469
 
1520
1470
  /**
1521
1471
  * everything_passthrough_one_gunichar:
1522
- * @arg0: :
1472
+ * @arg0:
1523
1473
  *
1524
1474
  * Undocumented.
1525
1475
  *
1526
- * Returns: (transfer none)
1476
+ * Returns:
1527
1477
  */
1528
1478
  _GI_TEST_EXTERN
1529
1479
  gunichar
@@ -1534,11 +1484,11 @@ everything_passthrough_one_gunichar (gunichar arg0)
1534
1484
 
1535
1485
  /**
1536
1486
  * everything_passthrough_one_GType:
1537
- * @arg0: :
1487
+ * @arg0:
1538
1488
  *
1539
1489
  * Undocumented.
1540
1490
  *
1541
- * Returns: (transfer none)
1491
+ * Returns:
1542
1492
  */
1543
1493
  _GI_TEST_EXTERN
1544
1494
  GType
@@ -1549,11 +1499,11 @@ everything_passthrough_one_GType (GType arg0)
1549
1499
 
1550
1500
  /**
1551
1501
  * everything_passthrough_one_utf8:
1552
- * @arg0: :
1502
+ * @arg0:
1553
1503
  *
1554
1504
  * Undocumented.
1555
1505
  *
1556
- * Returns: (transfer none)
1506
+ * Returns: (transfer none)
1557
1507
  */
1558
1508
  _GI_TEST_EXTERN
1559
1509
  const gchar*
@@ -1564,11 +1514,11 @@ everything_passthrough_one_utf8 (const gchar* arg0)
1564
1514
 
1565
1515
  /**
1566
1516
  * everything_passthrough_one_filename:
1567
- * @arg0: :
1517
+ * @arg0:
1568
1518
  *
1569
1519
  * Undocumented.
1570
1520
  *
1571
- * Returns: (transfer none)
1521
+ * Returns: (transfer none)
1572
1522
  */
1573
1523
  _GI_TEST_EXTERN
1574
1524
  const gchar*