gobject-introspection 2.2.0-x86-mingw32 → 2.2.1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +7 -7
- data/ext/gobject-introspection/rb-gi-argument.c +28 -3
- data/ext/gobject-introspection/rb-gi-constructor-info.c +6 -1
- data/ext/gobject-introspection/rb-gi-function-info.c +29 -4
- data/ext/gobject-introspection/rb-gi-loader.c +19 -3
- data/ext/gobject-introspection/rb-gi-struct-info.c +28 -16
- data/lib/2.0/gobject_introspection.so +0 -0
- data/lib/gobject-introspection/callable-info.rb +16 -7
- data/lib/gobject-introspection/loader.rb +47 -19
- data/test/test-object-info.rb +1 -1
- data/test/test-signal-info.rb +2 -2
- data/test/test-struct-info.rb +1 -1
- data/vendor/local/bin/g-ir-compiler.exe +0 -0
- data/vendor/local/bin/g-ir-generate.exe +0 -0
- data/vendor/local/bin/libgirepository-1.0-1.dll +0 -0
- data/vendor/local/include/gobject-introspection-1.0/giarginfo.h +30 -0
- data/vendor/local/include/gobject-introspection-1.0/gibaseinfo.h +31 -0
- data/vendor/local/include/gobject-introspection-1.0/gicallableinfo.h +36 -0
- data/vendor/local/include/gobject-introspection-1.0/giconstantinfo.h +12 -0
- data/vendor/local/include/gobject-introspection-1.0/gienuminfo.h +26 -0
- data/vendor/local/include/gobject-introspection-1.0/gifieldinfo.h +19 -0
- data/vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h +23 -0
- data/vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h +38 -0
- data/vendor/local/include/gobject-introspection-1.0/giobjectinfo.h +72 -2
- data/vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h +12 -0
- data/vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h +11 -0
- data/vendor/local/include/gobject-introspection-1.0/girepository.h +68 -8
- data/vendor/local/include/gobject-introspection-1.0/girffi.h +25 -1
- data/vendor/local/include/gobject-introspection-1.0/gisignalinfo.h +12 -0
- data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +24 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypeinfo.h +31 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypelib.h +25 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypes.h +84 -13
- data/vendor/local/include/gobject-introspection-1.0/giunioninfo.h +27 -0
- data/vendor/local/include/gobject-introspection-1.0/giversionmacros.h +128 -0
- data/vendor/local/include/gobject-introspection-1.0/givfuncinfo.h +17 -0
- data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GObject-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Gio-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/libxml2-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/win32-1.0.typelib +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.py +5 -4
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.py +1865 -913
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.py +49 -16
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.py +10 -4
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.py +202 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.py +32 -1
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.py +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.py +305 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/callback.tmpl +4 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl +8 -9
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/interface.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl +17 -5
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl +8 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/field.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl +12 -13
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/interface.tmpl +17 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl +3 -4
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl +10 -9
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl +7 -7
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl +5 -4
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl +8 -14
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/interface.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl +2 -3
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl +6 -7
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl +7 -13
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl +10 -19
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl +24 -3
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl +4 -7
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +375 -61
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.py +43 -75
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py +1 -20
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.py +33 -15
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.py +51 -22
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.py +285 -254
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.py +41 -25
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.py +67 -15
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.py +10 -6
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py +14 -8
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.py +16 -2
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.py +150 -169
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.py +64 -3
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py +5 -44
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo +0 -0
- data/vendor/local/lib/libgirepository-1.0.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.dll.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.la +1 -1
- data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +4 -4
- data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +5 -5
- data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +352 -143
- data/vendor/local/share/gir-1.0/GLib-2.0.gir +6402 -3872
- data/vendor/local/share/gir-1.0/GModule-2.0.gir +42 -24
- data/vendor/local/share/gir-1.0/GObject-2.0.gir +1543 -887
- data/vendor/local/share/gir-1.0/Gio-2.0.gir +10859 -3705
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.c +10 -14
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.h +112 -9
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.c +2 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.h +11 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +106 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +107 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.c +3 -3
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.h +145 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +166 -10
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h +790 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gitestmacros.h +10 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.c +79 -28
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +462 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.c +2 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.h +7 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.c +14 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.h +10 -0
- data/vendor/local/share/man/man1/g-ir-compiler.1 +1 -10
- metadata +38 -23
- data/lib/1.9/gobject_introspection.so +0 -0
- data/lib/2.1/gobject_introspection.so +0 -0
@@ -1,5 +1,6 @@
|
|
1
1
|
/* GENERATED BY testcodegen.py; DO NOT EDIT */
|
2
2
|
|
3
|
+
#include "config.h"
|
3
4
|
#include "everything.h"
|
4
5
|
|
5
6
|
/**
|
@@ -9,6 +10,7 @@
|
|
9
10
|
*
|
10
11
|
* Returns: (transfer none)
|
11
12
|
*/
|
13
|
+
_GI_TEST_EXTERN
|
12
14
|
void
|
13
15
|
everything_nullfunc (void)
|
14
16
|
{
|
@@ -22,6 +24,7 @@ everything_nullfunc (void)
|
|
22
24
|
*
|
23
25
|
* Returns: (transfer none)
|
24
26
|
*/
|
27
|
+
_GI_TEST_EXTERN
|
25
28
|
gboolean
|
26
29
|
everything_const_return_gboolean (void)
|
27
30
|
{
|
@@ -35,6 +38,7 @@ everything_const_return_gboolean (void)
|
|
35
38
|
*
|
36
39
|
* Returns: (transfer none)
|
37
40
|
*/
|
41
|
+
_GI_TEST_EXTERN
|
38
42
|
gint8
|
39
43
|
everything_const_return_gint8 (void)
|
40
44
|
{
|
@@ -48,6 +52,7 @@ everything_const_return_gint8 (void)
|
|
48
52
|
*
|
49
53
|
* Returns: (transfer none)
|
50
54
|
*/
|
55
|
+
_GI_TEST_EXTERN
|
51
56
|
guint8
|
52
57
|
everything_const_return_guint8 (void)
|
53
58
|
{
|
@@ -61,6 +66,7 @@ everything_const_return_guint8 (void)
|
|
61
66
|
*
|
62
67
|
* Returns: (transfer none)
|
63
68
|
*/
|
69
|
+
_GI_TEST_EXTERN
|
64
70
|
gint16
|
65
71
|
everything_const_return_gint16 (void)
|
66
72
|
{
|
@@ -74,6 +80,7 @@ everything_const_return_gint16 (void)
|
|
74
80
|
*
|
75
81
|
* Returns: (transfer none)
|
76
82
|
*/
|
83
|
+
_GI_TEST_EXTERN
|
77
84
|
guint16
|
78
85
|
everything_const_return_guint16 (void)
|
79
86
|
{
|
@@ -87,6 +94,7 @@ everything_const_return_guint16 (void)
|
|
87
94
|
*
|
88
95
|
* Returns: (transfer none)
|
89
96
|
*/
|
97
|
+
_GI_TEST_EXTERN
|
90
98
|
gint32
|
91
99
|
everything_const_return_gint32 (void)
|
92
100
|
{
|
@@ -100,6 +108,7 @@ everything_const_return_gint32 (void)
|
|
100
108
|
*
|
101
109
|
* Returns: (transfer none)
|
102
110
|
*/
|
111
|
+
_GI_TEST_EXTERN
|
103
112
|
guint32
|
104
113
|
everything_const_return_guint32 (void)
|
105
114
|
{
|
@@ -113,6 +122,7 @@ everything_const_return_guint32 (void)
|
|
113
122
|
*
|
114
123
|
* Returns: (transfer none)
|
115
124
|
*/
|
125
|
+
_GI_TEST_EXTERN
|
116
126
|
gint64
|
117
127
|
everything_const_return_gint64 (void)
|
118
128
|
{
|
@@ -126,6 +136,7 @@ everything_const_return_gint64 (void)
|
|
126
136
|
*
|
127
137
|
* Returns: (transfer none)
|
128
138
|
*/
|
139
|
+
_GI_TEST_EXTERN
|
129
140
|
guint64
|
130
141
|
everything_const_return_guint64 (void)
|
131
142
|
{
|
@@ -139,6 +150,7 @@ everything_const_return_guint64 (void)
|
|
139
150
|
*
|
140
151
|
* Returns: (transfer none)
|
141
152
|
*/
|
153
|
+
_GI_TEST_EXTERN
|
142
154
|
gchar
|
143
155
|
everything_const_return_gchar (void)
|
144
156
|
{
|
@@ -152,6 +164,7 @@ everything_const_return_gchar (void)
|
|
152
164
|
*
|
153
165
|
* Returns: (transfer none)
|
154
166
|
*/
|
167
|
+
_GI_TEST_EXTERN
|
155
168
|
gshort
|
156
169
|
everything_const_return_gshort (void)
|
157
170
|
{
|
@@ -165,6 +178,7 @@ everything_const_return_gshort (void)
|
|
165
178
|
*
|
166
179
|
* Returns: (transfer none)
|
167
180
|
*/
|
181
|
+
_GI_TEST_EXTERN
|
168
182
|
gushort
|
169
183
|
everything_const_return_gushort (void)
|
170
184
|
{
|
@@ -178,6 +192,7 @@ everything_const_return_gushort (void)
|
|
178
192
|
*
|
179
193
|
* Returns: (transfer none)
|
180
194
|
*/
|
195
|
+
_GI_TEST_EXTERN
|
181
196
|
gint
|
182
197
|
everything_const_return_gint (void)
|
183
198
|
{
|
@@ -191,6 +206,7 @@ everything_const_return_gint (void)
|
|
191
206
|
*
|
192
207
|
* Returns: (transfer none)
|
193
208
|
*/
|
209
|
+
_GI_TEST_EXTERN
|
194
210
|
guint
|
195
211
|
everything_const_return_guint (void)
|
196
212
|
{
|
@@ -204,6 +220,7 @@ everything_const_return_guint (void)
|
|
204
220
|
*
|
205
221
|
* Returns: (transfer none)
|
206
222
|
*/
|
223
|
+
_GI_TEST_EXTERN
|
207
224
|
glong
|
208
225
|
everything_const_return_glong (void)
|
209
226
|
{
|
@@ -217,6 +234,7 @@ everything_const_return_glong (void)
|
|
217
234
|
*
|
218
235
|
* Returns: (transfer none)
|
219
236
|
*/
|
237
|
+
_GI_TEST_EXTERN
|
220
238
|
gulong
|
221
239
|
everything_const_return_gulong (void)
|
222
240
|
{
|
@@ -230,6 +248,7 @@ everything_const_return_gulong (void)
|
|
230
248
|
*
|
231
249
|
* Returns: (transfer none)
|
232
250
|
*/
|
251
|
+
_GI_TEST_EXTERN
|
233
252
|
gsize
|
234
253
|
everything_const_return_gsize (void)
|
235
254
|
{
|
@@ -243,6 +262,7 @@ everything_const_return_gsize (void)
|
|
243
262
|
*
|
244
263
|
* Returns: (transfer none)
|
245
264
|
*/
|
265
|
+
_GI_TEST_EXTERN
|
246
266
|
gssize
|
247
267
|
everything_const_return_gssize (void)
|
248
268
|
{
|
@@ -256,6 +276,7 @@ everything_const_return_gssize (void)
|
|
256
276
|
*
|
257
277
|
* Returns: (transfer none)
|
258
278
|
*/
|
279
|
+
_GI_TEST_EXTERN
|
259
280
|
gintptr
|
260
281
|
everything_const_return_gintptr (void)
|
261
282
|
{
|
@@ -269,6 +290,7 @@ everything_const_return_gintptr (void)
|
|
269
290
|
*
|
270
291
|
* Returns: (transfer none)
|
271
292
|
*/
|
293
|
+
_GI_TEST_EXTERN
|
272
294
|
guintptr
|
273
295
|
everything_const_return_guintptr (void)
|
274
296
|
{
|
@@ -282,6 +304,7 @@ everything_const_return_guintptr (void)
|
|
282
304
|
*
|
283
305
|
* Returns: (transfer none)
|
284
306
|
*/
|
307
|
+
_GI_TEST_EXTERN
|
285
308
|
gfloat
|
286
309
|
everything_const_return_gfloat (void)
|
287
310
|
{
|
@@ -295,6 +318,7 @@ everything_const_return_gfloat (void)
|
|
295
318
|
*
|
296
319
|
* Returns: (transfer none)
|
297
320
|
*/
|
321
|
+
_GI_TEST_EXTERN
|
298
322
|
gdouble
|
299
323
|
everything_const_return_gdouble (void)
|
300
324
|
{
|
@@ -308,6 +332,7 @@ everything_const_return_gdouble (void)
|
|
308
332
|
*
|
309
333
|
* Returns: (transfer none)
|
310
334
|
*/
|
335
|
+
_GI_TEST_EXTERN
|
311
336
|
gunichar
|
312
337
|
everything_const_return_gunichar (void)
|
313
338
|
{
|
@@ -321,6 +346,7 @@ everything_const_return_gunichar (void)
|
|
321
346
|
*
|
322
347
|
* Returns: (transfer none)
|
323
348
|
*/
|
349
|
+
_GI_TEST_EXTERN
|
324
350
|
GType
|
325
351
|
everything_const_return_GType (void)
|
326
352
|
{
|
@@ -334,6 +360,7 @@ everything_const_return_GType (void)
|
|
334
360
|
*
|
335
361
|
* Returns: (transfer none)
|
336
362
|
*/
|
363
|
+
_GI_TEST_EXTERN
|
337
364
|
const gchar*
|
338
365
|
everything_const_return_utf8 (void)
|
339
366
|
{
|
@@ -347,6 +374,7 @@ everything_const_return_utf8 (void)
|
|
347
374
|
*
|
348
375
|
* Returns: (transfer none)
|
349
376
|
*/
|
377
|
+
_GI_TEST_EXTERN
|
350
378
|
const gchar*
|
351
379
|
everything_const_return_filename (void)
|
352
380
|
{
|
@@ -361,6 +389,7 @@ everything_const_return_filename (void)
|
|
361
389
|
*
|
362
390
|
* Returns: (transfer none)
|
363
391
|
*/
|
392
|
+
_GI_TEST_EXTERN
|
364
393
|
void
|
365
394
|
everything_oneparam_gboolean (gboolean arg0)
|
366
395
|
{
|
@@ -375,6 +404,7 @@ everything_oneparam_gboolean (gboolean arg0)
|
|
375
404
|
*
|
376
405
|
* Returns: (transfer none)
|
377
406
|
*/
|
407
|
+
_GI_TEST_EXTERN
|
378
408
|
void
|
379
409
|
everything_oneparam_gint8 (gint8 arg0)
|
380
410
|
{
|
@@ -389,6 +419,7 @@ everything_oneparam_gint8 (gint8 arg0)
|
|
389
419
|
*
|
390
420
|
* Returns: (transfer none)
|
391
421
|
*/
|
422
|
+
_GI_TEST_EXTERN
|
392
423
|
void
|
393
424
|
everything_oneparam_guint8 (guint8 arg0)
|
394
425
|
{
|
@@ -403,6 +434,7 @@ everything_oneparam_guint8 (guint8 arg0)
|
|
403
434
|
*
|
404
435
|
* Returns: (transfer none)
|
405
436
|
*/
|
437
|
+
_GI_TEST_EXTERN
|
406
438
|
void
|
407
439
|
everything_oneparam_gint16 (gint16 arg0)
|
408
440
|
{
|
@@ -417,6 +449,7 @@ everything_oneparam_gint16 (gint16 arg0)
|
|
417
449
|
*
|
418
450
|
* Returns: (transfer none)
|
419
451
|
*/
|
452
|
+
_GI_TEST_EXTERN
|
420
453
|
void
|
421
454
|
everything_oneparam_guint16 (guint16 arg0)
|
422
455
|
{
|
@@ -431,6 +464,7 @@ everything_oneparam_guint16 (guint16 arg0)
|
|
431
464
|
*
|
432
465
|
* Returns: (transfer none)
|
433
466
|
*/
|
467
|
+
_GI_TEST_EXTERN
|
434
468
|
void
|
435
469
|
everything_oneparam_gint32 (gint32 arg0)
|
436
470
|
{
|
@@ -445,6 +479,7 @@ everything_oneparam_gint32 (gint32 arg0)
|
|
445
479
|
*
|
446
480
|
* Returns: (transfer none)
|
447
481
|
*/
|
482
|
+
_GI_TEST_EXTERN
|
448
483
|
void
|
449
484
|
everything_oneparam_guint32 (guint32 arg0)
|
450
485
|
{
|
@@ -459,6 +494,7 @@ everything_oneparam_guint32 (guint32 arg0)
|
|
459
494
|
*
|
460
495
|
* Returns: (transfer none)
|
461
496
|
*/
|
497
|
+
_GI_TEST_EXTERN
|
462
498
|
void
|
463
499
|
everything_oneparam_gint64 (gint64 arg0)
|
464
500
|
{
|
@@ -473,6 +509,7 @@ everything_oneparam_gint64 (gint64 arg0)
|
|
473
509
|
*
|
474
510
|
* Returns: (transfer none)
|
475
511
|
*/
|
512
|
+
_GI_TEST_EXTERN
|
476
513
|
void
|
477
514
|
everything_oneparam_guint64 (guint64 arg0)
|
478
515
|
{
|
@@ -487,6 +524,7 @@ everything_oneparam_guint64 (guint64 arg0)
|
|
487
524
|
*
|
488
525
|
* Returns: (transfer none)
|
489
526
|
*/
|
527
|
+
_GI_TEST_EXTERN
|
490
528
|
void
|
491
529
|
everything_oneparam_gchar (gchar arg0)
|
492
530
|
{
|
@@ -501,6 +539,7 @@ everything_oneparam_gchar (gchar arg0)
|
|
501
539
|
*
|
502
540
|
* Returns: (transfer none)
|
503
541
|
*/
|
542
|
+
_GI_TEST_EXTERN
|
504
543
|
void
|
505
544
|
everything_oneparam_gshort (gshort arg0)
|
506
545
|
{
|
@@ -515,6 +554,7 @@ everything_oneparam_gshort (gshort arg0)
|
|
515
554
|
*
|
516
555
|
* Returns: (transfer none)
|
517
556
|
*/
|
557
|
+
_GI_TEST_EXTERN
|
518
558
|
void
|
519
559
|
everything_oneparam_gushort (gushort arg0)
|
520
560
|
{
|
@@ -529,6 +569,7 @@ everything_oneparam_gushort (gushort arg0)
|
|
529
569
|
*
|
530
570
|
* Returns: (transfer none)
|
531
571
|
*/
|
572
|
+
_GI_TEST_EXTERN
|
532
573
|
void
|
533
574
|
everything_oneparam_gint (gint arg0)
|
534
575
|
{
|
@@ -543,6 +584,7 @@ everything_oneparam_gint (gint arg0)
|
|
543
584
|
*
|
544
585
|
* Returns: (transfer none)
|
545
586
|
*/
|
587
|
+
_GI_TEST_EXTERN
|
546
588
|
void
|
547
589
|
everything_oneparam_guint (guint arg0)
|
548
590
|
{
|
@@ -557,6 +599,7 @@ everything_oneparam_guint (guint arg0)
|
|
557
599
|
*
|
558
600
|
* Returns: (transfer none)
|
559
601
|
*/
|
602
|
+
_GI_TEST_EXTERN
|
560
603
|
void
|
561
604
|
everything_oneparam_glong (glong arg0)
|
562
605
|
{
|
@@ -571,6 +614,7 @@ everything_oneparam_glong (glong arg0)
|
|
571
614
|
*
|
572
615
|
* Returns: (transfer none)
|
573
616
|
*/
|
617
|
+
_GI_TEST_EXTERN
|
574
618
|
void
|
575
619
|
everything_oneparam_gulong (gulong arg0)
|
576
620
|
{
|
@@ -585,6 +629,7 @@ everything_oneparam_gulong (gulong arg0)
|
|
585
629
|
*
|
586
630
|
* Returns: (transfer none)
|
587
631
|
*/
|
632
|
+
_GI_TEST_EXTERN
|
588
633
|
void
|
589
634
|
everything_oneparam_gsize (gsize arg0)
|
590
635
|
{
|
@@ -599,6 +644,7 @@ everything_oneparam_gsize (gsize arg0)
|
|
599
644
|
*
|
600
645
|
* Returns: (transfer none)
|
601
646
|
*/
|
647
|
+
_GI_TEST_EXTERN
|
602
648
|
void
|
603
649
|
everything_oneparam_gssize (gssize arg0)
|
604
650
|
{
|
@@ -613,6 +659,7 @@ everything_oneparam_gssize (gssize arg0)
|
|
613
659
|
*
|
614
660
|
* Returns: (transfer none)
|
615
661
|
*/
|
662
|
+
_GI_TEST_EXTERN
|
616
663
|
void
|
617
664
|
everything_oneparam_gintptr (gintptr arg0)
|
618
665
|
{
|
@@ -627,6 +674,7 @@ everything_oneparam_gintptr (gintptr arg0)
|
|
627
674
|
*
|
628
675
|
* Returns: (transfer none)
|
629
676
|
*/
|
677
|
+
_GI_TEST_EXTERN
|
630
678
|
void
|
631
679
|
everything_oneparam_guintptr (guintptr arg0)
|
632
680
|
{
|
@@ -641,6 +689,7 @@ everything_oneparam_guintptr (guintptr arg0)
|
|
641
689
|
*
|
642
690
|
* Returns: (transfer none)
|
643
691
|
*/
|
692
|
+
_GI_TEST_EXTERN
|
644
693
|
void
|
645
694
|
everything_oneparam_gfloat (gfloat arg0)
|
646
695
|
{
|
@@ -655,6 +704,7 @@ everything_oneparam_gfloat (gfloat arg0)
|
|
655
704
|
*
|
656
705
|
* Returns: (transfer none)
|
657
706
|
*/
|
707
|
+
_GI_TEST_EXTERN
|
658
708
|
void
|
659
709
|
everything_oneparam_gdouble (gdouble arg0)
|
660
710
|
{
|
@@ -669,6 +719,7 @@ everything_oneparam_gdouble (gdouble arg0)
|
|
669
719
|
*
|
670
720
|
* Returns: (transfer none)
|
671
721
|
*/
|
722
|
+
_GI_TEST_EXTERN
|
672
723
|
void
|
673
724
|
everything_oneparam_gunichar (gunichar arg0)
|
674
725
|
{
|
@@ -683,6 +734,7 @@ everything_oneparam_gunichar (gunichar arg0)
|
|
683
734
|
*
|
684
735
|
* Returns: (transfer none)
|
685
736
|
*/
|
737
|
+
_GI_TEST_EXTERN
|
686
738
|
void
|
687
739
|
everything_oneparam_GType (GType arg0)
|
688
740
|
{
|
@@ -697,6 +749,7 @@ everything_oneparam_GType (GType arg0)
|
|
697
749
|
*
|
698
750
|
* Returns: (transfer none)
|
699
751
|
*/
|
752
|
+
_GI_TEST_EXTERN
|
700
753
|
void
|
701
754
|
everything_oneparam_utf8 (const gchar* arg0)
|
702
755
|
{
|
@@ -711,6 +764,7 @@ everything_oneparam_utf8 (const gchar* arg0)
|
|
711
764
|
*
|
712
765
|
* Returns: (transfer none)
|
713
766
|
*/
|
767
|
+
_GI_TEST_EXTERN
|
714
768
|
void
|
715
769
|
everything_oneparam_filename (const gchar* arg0)
|
716
770
|
{
|
@@ -725,6 +779,7 @@ everything_oneparam_filename (const gchar* arg0)
|
|
725
779
|
*
|
726
780
|
* Returns: (transfer none)
|
727
781
|
*/
|
782
|
+
_GI_TEST_EXTERN
|
728
783
|
void
|
729
784
|
everything_one_outparam_gboolean (gboolean* arg0)
|
730
785
|
{
|
@@ -740,6 +795,7 @@ everything_one_outparam_gboolean (gboolean* arg0)
|
|
740
795
|
*
|
741
796
|
* Returns: (transfer none)
|
742
797
|
*/
|
798
|
+
_GI_TEST_EXTERN
|
743
799
|
void
|
744
800
|
everything_one_outparam_gint8 (gint8* arg0)
|
745
801
|
{
|
@@ -755,6 +811,7 @@ everything_one_outparam_gint8 (gint8* arg0)
|
|
755
811
|
*
|
756
812
|
* Returns: (transfer none)
|
757
813
|
*/
|
814
|
+
_GI_TEST_EXTERN
|
758
815
|
void
|
759
816
|
everything_one_outparam_guint8 (guint8* arg0)
|
760
817
|
{
|
@@ -770,6 +827,7 @@ everything_one_outparam_guint8 (guint8* arg0)
|
|
770
827
|
*
|
771
828
|
* Returns: (transfer none)
|
772
829
|
*/
|
830
|
+
_GI_TEST_EXTERN
|
773
831
|
void
|
774
832
|
everything_one_outparam_gint16 (gint16* arg0)
|
775
833
|
{
|
@@ -785,6 +843,7 @@ everything_one_outparam_gint16 (gint16* arg0)
|
|
785
843
|
*
|
786
844
|
* Returns: (transfer none)
|
787
845
|
*/
|
846
|
+
_GI_TEST_EXTERN
|
788
847
|
void
|
789
848
|
everything_one_outparam_guint16 (guint16* arg0)
|
790
849
|
{
|
@@ -800,6 +859,7 @@ everything_one_outparam_guint16 (guint16* arg0)
|
|
800
859
|
*
|
801
860
|
* Returns: (transfer none)
|
802
861
|
*/
|
862
|
+
_GI_TEST_EXTERN
|
803
863
|
void
|
804
864
|
everything_one_outparam_gint32 (gint32* arg0)
|
805
865
|
{
|
@@ -815,6 +875,7 @@ everything_one_outparam_gint32 (gint32* arg0)
|
|
815
875
|
*
|
816
876
|
* Returns: (transfer none)
|
817
877
|
*/
|
878
|
+
_GI_TEST_EXTERN
|
818
879
|
void
|
819
880
|
everything_one_outparam_guint32 (guint32* arg0)
|
820
881
|
{
|
@@ -830,6 +891,7 @@ everything_one_outparam_guint32 (guint32* arg0)
|
|
830
891
|
*
|
831
892
|
* Returns: (transfer none)
|
832
893
|
*/
|
894
|
+
_GI_TEST_EXTERN
|
833
895
|
void
|
834
896
|
everything_one_outparam_gint64 (gint64* arg0)
|
835
897
|
{
|
@@ -845,6 +907,7 @@ everything_one_outparam_gint64 (gint64* arg0)
|
|
845
907
|
*
|
846
908
|
* Returns: (transfer none)
|
847
909
|
*/
|
910
|
+
_GI_TEST_EXTERN
|
848
911
|
void
|
849
912
|
everything_one_outparam_guint64 (guint64* arg0)
|
850
913
|
{
|
@@ -860,6 +923,7 @@ everything_one_outparam_guint64 (guint64* arg0)
|
|
860
923
|
*
|
861
924
|
* Returns: (transfer none)
|
862
925
|
*/
|
926
|
+
_GI_TEST_EXTERN
|
863
927
|
void
|
864
928
|
everything_one_outparam_gchar (gchar* arg0)
|
865
929
|
{
|
@@ -875,6 +939,7 @@ everything_one_outparam_gchar (gchar* arg0)
|
|
875
939
|
*
|
876
940
|
* Returns: (transfer none)
|
877
941
|
*/
|
942
|
+
_GI_TEST_EXTERN
|
878
943
|
void
|
879
944
|
everything_one_outparam_gshort (gshort* arg0)
|
880
945
|
{
|
@@ -890,6 +955,7 @@ everything_one_outparam_gshort (gshort* arg0)
|
|
890
955
|
*
|
891
956
|
* Returns: (transfer none)
|
892
957
|
*/
|
958
|
+
_GI_TEST_EXTERN
|
893
959
|
void
|
894
960
|
everything_one_outparam_gushort (gushort* arg0)
|
895
961
|
{
|
@@ -905,6 +971,7 @@ everything_one_outparam_gushort (gushort* arg0)
|
|
905
971
|
*
|
906
972
|
* Returns: (transfer none)
|
907
973
|
*/
|
974
|
+
_GI_TEST_EXTERN
|
908
975
|
void
|
909
976
|
everything_one_outparam_gint (gint* arg0)
|
910
977
|
{
|
@@ -920,6 +987,7 @@ everything_one_outparam_gint (gint* arg0)
|
|
920
987
|
*
|
921
988
|
* Returns: (transfer none)
|
922
989
|
*/
|
990
|
+
_GI_TEST_EXTERN
|
923
991
|
void
|
924
992
|
everything_one_outparam_guint (guint* arg0)
|
925
993
|
{
|
@@ -935,6 +1003,7 @@ everything_one_outparam_guint (guint* arg0)
|
|
935
1003
|
*
|
936
1004
|
* Returns: (transfer none)
|
937
1005
|
*/
|
1006
|
+
_GI_TEST_EXTERN
|
938
1007
|
void
|
939
1008
|
everything_one_outparam_glong (glong* arg0)
|
940
1009
|
{
|
@@ -950,6 +1019,7 @@ everything_one_outparam_glong (glong* arg0)
|
|
950
1019
|
*
|
951
1020
|
* Returns: (transfer none)
|
952
1021
|
*/
|
1022
|
+
_GI_TEST_EXTERN
|
953
1023
|
void
|
954
1024
|
everything_one_outparam_gulong (gulong* arg0)
|
955
1025
|
{
|
@@ -965,6 +1035,7 @@ everything_one_outparam_gulong (gulong* arg0)
|
|
965
1035
|
*
|
966
1036
|
* Returns: (transfer none)
|
967
1037
|
*/
|
1038
|
+
_GI_TEST_EXTERN
|
968
1039
|
void
|
969
1040
|
everything_one_outparam_gsize (gsize* arg0)
|
970
1041
|
{
|
@@ -980,6 +1051,7 @@ everything_one_outparam_gsize (gsize* arg0)
|
|
980
1051
|
*
|
981
1052
|
* Returns: (transfer none)
|
982
1053
|
*/
|
1054
|
+
_GI_TEST_EXTERN
|
983
1055
|
void
|
984
1056
|
everything_one_outparam_gssize (gssize* arg0)
|
985
1057
|
{
|
@@ -995,6 +1067,7 @@ everything_one_outparam_gssize (gssize* arg0)
|
|
995
1067
|
*
|
996
1068
|
* Returns: (transfer none)
|
997
1069
|
*/
|
1070
|
+
_GI_TEST_EXTERN
|
998
1071
|
void
|
999
1072
|
everything_one_outparam_gintptr (gintptr* arg0)
|
1000
1073
|
{
|
@@ -1010,6 +1083,7 @@ everything_one_outparam_gintptr (gintptr* arg0)
|
|
1010
1083
|
*
|
1011
1084
|
* Returns: (transfer none)
|
1012
1085
|
*/
|
1086
|
+
_GI_TEST_EXTERN
|
1013
1087
|
void
|
1014
1088
|
everything_one_outparam_guintptr (guintptr* arg0)
|
1015
1089
|
{
|
@@ -1025,6 +1099,7 @@ everything_one_outparam_guintptr (guintptr* arg0)
|
|
1025
1099
|
*
|
1026
1100
|
* Returns: (transfer none)
|
1027
1101
|
*/
|
1102
|
+
_GI_TEST_EXTERN
|
1028
1103
|
void
|
1029
1104
|
everything_one_outparam_gfloat (gfloat* arg0)
|
1030
1105
|
{
|
@@ -1040,6 +1115,7 @@ everything_one_outparam_gfloat (gfloat* arg0)
|
|
1040
1115
|
*
|
1041
1116
|
* Returns: (transfer none)
|
1042
1117
|
*/
|
1118
|
+
_GI_TEST_EXTERN
|
1043
1119
|
void
|
1044
1120
|
everything_one_outparam_gdouble (gdouble* arg0)
|
1045
1121
|
{
|
@@ -1055,6 +1131,7 @@ everything_one_outparam_gdouble (gdouble* arg0)
|
|
1055
1131
|
*
|
1056
1132
|
* Returns: (transfer none)
|
1057
1133
|
*/
|
1134
|
+
_GI_TEST_EXTERN
|
1058
1135
|
void
|
1059
1136
|
everything_one_outparam_gunichar (gunichar* arg0)
|
1060
1137
|
{
|
@@ -1070,6 +1147,7 @@ everything_one_outparam_gunichar (gunichar* arg0)
|
|
1070
1147
|
*
|
1071
1148
|
* Returns: (transfer none)
|
1072
1149
|
*/
|
1150
|
+
_GI_TEST_EXTERN
|
1073
1151
|
void
|
1074
1152
|
everything_one_outparam_GType (GType* arg0)
|
1075
1153
|
{
|
@@ -1085,6 +1163,7 @@ everything_one_outparam_GType (GType* arg0)
|
|
1085
1163
|
*
|
1086
1164
|
* Returns: (transfer none)
|
1087
1165
|
*/
|
1166
|
+
_GI_TEST_EXTERN
|
1088
1167
|
void
|
1089
1168
|
everything_one_outparam_utf8 (const gchar** arg0)
|
1090
1169
|
{
|
@@ -1100,6 +1179,7 @@ everything_one_outparam_utf8 (const gchar** arg0)
|
|
1100
1179
|
*
|
1101
1180
|
* Returns: (transfer none)
|
1102
1181
|
*/
|
1182
|
+
_GI_TEST_EXTERN
|
1103
1183
|
void
|
1104
1184
|
everything_one_outparam_filename (const gchar** arg0)
|
1105
1185
|
{
|
@@ -1115,6 +1195,7 @@ everything_one_outparam_filename (const gchar** arg0)
|
|
1115
1195
|
*
|
1116
1196
|
* Returns: (transfer none)
|
1117
1197
|
*/
|
1198
|
+
_GI_TEST_EXTERN
|
1118
1199
|
gboolean
|
1119
1200
|
everything_passthrough_one_gboolean (gboolean arg0)
|
1120
1201
|
{
|
@@ -1129,6 +1210,7 @@ everything_passthrough_one_gboolean (gboolean arg0)
|
|
1129
1210
|
*
|
1130
1211
|
* Returns: (transfer none)
|
1131
1212
|
*/
|
1213
|
+
_GI_TEST_EXTERN
|
1132
1214
|
gint8
|
1133
1215
|
everything_passthrough_one_gint8 (gint8 arg0)
|
1134
1216
|
{
|
@@ -1143,6 +1225,7 @@ everything_passthrough_one_gint8 (gint8 arg0)
|
|
1143
1225
|
*
|
1144
1226
|
* Returns: (transfer none)
|
1145
1227
|
*/
|
1228
|
+
_GI_TEST_EXTERN
|
1146
1229
|
guint8
|
1147
1230
|
everything_passthrough_one_guint8 (guint8 arg0)
|
1148
1231
|
{
|
@@ -1157,6 +1240,7 @@ everything_passthrough_one_guint8 (guint8 arg0)
|
|
1157
1240
|
*
|
1158
1241
|
* Returns: (transfer none)
|
1159
1242
|
*/
|
1243
|
+
_GI_TEST_EXTERN
|
1160
1244
|
gint16
|
1161
1245
|
everything_passthrough_one_gint16 (gint16 arg0)
|
1162
1246
|
{
|
@@ -1171,6 +1255,7 @@ everything_passthrough_one_gint16 (gint16 arg0)
|
|
1171
1255
|
*
|
1172
1256
|
* Returns: (transfer none)
|
1173
1257
|
*/
|
1258
|
+
_GI_TEST_EXTERN
|
1174
1259
|
guint16
|
1175
1260
|
everything_passthrough_one_guint16 (guint16 arg0)
|
1176
1261
|
{
|
@@ -1185,6 +1270,7 @@ everything_passthrough_one_guint16 (guint16 arg0)
|
|
1185
1270
|
*
|
1186
1271
|
* Returns: (transfer none)
|
1187
1272
|
*/
|
1273
|
+
_GI_TEST_EXTERN
|
1188
1274
|
gint32
|
1189
1275
|
everything_passthrough_one_gint32 (gint32 arg0)
|
1190
1276
|
{
|
@@ -1199,6 +1285,7 @@ everything_passthrough_one_gint32 (gint32 arg0)
|
|
1199
1285
|
*
|
1200
1286
|
* Returns: (transfer none)
|
1201
1287
|
*/
|
1288
|
+
_GI_TEST_EXTERN
|
1202
1289
|
guint32
|
1203
1290
|
everything_passthrough_one_guint32 (guint32 arg0)
|
1204
1291
|
{
|
@@ -1213,6 +1300,7 @@ everything_passthrough_one_guint32 (guint32 arg0)
|
|
1213
1300
|
*
|
1214
1301
|
* Returns: (transfer none)
|
1215
1302
|
*/
|
1303
|
+
_GI_TEST_EXTERN
|
1216
1304
|
gint64
|
1217
1305
|
everything_passthrough_one_gint64 (gint64 arg0)
|
1218
1306
|
{
|
@@ -1227,6 +1315,7 @@ everything_passthrough_one_gint64 (gint64 arg0)
|
|
1227
1315
|
*
|
1228
1316
|
* Returns: (transfer none)
|
1229
1317
|
*/
|
1318
|
+
_GI_TEST_EXTERN
|
1230
1319
|
guint64
|
1231
1320
|
everything_passthrough_one_guint64 (guint64 arg0)
|
1232
1321
|
{
|
@@ -1241,6 +1330,7 @@ everything_passthrough_one_guint64 (guint64 arg0)
|
|
1241
1330
|
*
|
1242
1331
|
* Returns: (transfer none)
|
1243
1332
|
*/
|
1333
|
+
_GI_TEST_EXTERN
|
1244
1334
|
gchar
|
1245
1335
|
everything_passthrough_one_gchar (gchar arg0)
|
1246
1336
|
{
|
@@ -1255,6 +1345,7 @@ everything_passthrough_one_gchar (gchar arg0)
|
|
1255
1345
|
*
|
1256
1346
|
* Returns: (transfer none)
|
1257
1347
|
*/
|
1348
|
+
_GI_TEST_EXTERN
|
1258
1349
|
gshort
|
1259
1350
|
everything_passthrough_one_gshort (gshort arg0)
|
1260
1351
|
{
|
@@ -1269,6 +1360,7 @@ everything_passthrough_one_gshort (gshort arg0)
|
|
1269
1360
|
*
|
1270
1361
|
* Returns: (transfer none)
|
1271
1362
|
*/
|
1363
|
+
_GI_TEST_EXTERN
|
1272
1364
|
gushort
|
1273
1365
|
everything_passthrough_one_gushort (gushort arg0)
|
1274
1366
|
{
|
@@ -1283,6 +1375,7 @@ everything_passthrough_one_gushort (gushort arg0)
|
|
1283
1375
|
*
|
1284
1376
|
* Returns: (transfer none)
|
1285
1377
|
*/
|
1378
|
+
_GI_TEST_EXTERN
|
1286
1379
|
gint
|
1287
1380
|
everything_passthrough_one_gint (gint arg0)
|
1288
1381
|
{
|
@@ -1297,6 +1390,7 @@ everything_passthrough_one_gint (gint arg0)
|
|
1297
1390
|
*
|
1298
1391
|
* Returns: (transfer none)
|
1299
1392
|
*/
|
1393
|
+
_GI_TEST_EXTERN
|
1300
1394
|
guint
|
1301
1395
|
everything_passthrough_one_guint (guint arg0)
|
1302
1396
|
{
|
@@ -1311,6 +1405,7 @@ everything_passthrough_one_guint (guint arg0)
|
|
1311
1405
|
*
|
1312
1406
|
* Returns: (transfer none)
|
1313
1407
|
*/
|
1408
|
+
_GI_TEST_EXTERN
|
1314
1409
|
glong
|
1315
1410
|
everything_passthrough_one_glong (glong arg0)
|
1316
1411
|
{
|
@@ -1325,6 +1420,7 @@ everything_passthrough_one_glong (glong arg0)
|
|
1325
1420
|
*
|
1326
1421
|
* Returns: (transfer none)
|
1327
1422
|
*/
|
1423
|
+
_GI_TEST_EXTERN
|
1328
1424
|
gulong
|
1329
1425
|
everything_passthrough_one_gulong (gulong arg0)
|
1330
1426
|
{
|
@@ -1339,6 +1435,7 @@ everything_passthrough_one_gulong (gulong arg0)
|
|
1339
1435
|
*
|
1340
1436
|
* Returns: (transfer none)
|
1341
1437
|
*/
|
1438
|
+
_GI_TEST_EXTERN
|
1342
1439
|
gsize
|
1343
1440
|
everything_passthrough_one_gsize (gsize arg0)
|
1344
1441
|
{
|
@@ -1353,6 +1450,7 @@ everything_passthrough_one_gsize (gsize arg0)
|
|
1353
1450
|
*
|
1354
1451
|
* Returns: (transfer none)
|
1355
1452
|
*/
|
1453
|
+
_GI_TEST_EXTERN
|
1356
1454
|
gssize
|
1357
1455
|
everything_passthrough_one_gssize (gssize arg0)
|
1358
1456
|
{
|
@@ -1367,6 +1465,7 @@ everything_passthrough_one_gssize (gssize arg0)
|
|
1367
1465
|
*
|
1368
1466
|
* Returns: (transfer none)
|
1369
1467
|
*/
|
1468
|
+
_GI_TEST_EXTERN
|
1370
1469
|
gintptr
|
1371
1470
|
everything_passthrough_one_gintptr (gintptr arg0)
|
1372
1471
|
{
|
@@ -1381,6 +1480,7 @@ everything_passthrough_one_gintptr (gintptr arg0)
|
|
1381
1480
|
*
|
1382
1481
|
* Returns: (transfer none)
|
1383
1482
|
*/
|
1483
|
+
_GI_TEST_EXTERN
|
1384
1484
|
guintptr
|
1385
1485
|
everything_passthrough_one_guintptr (guintptr arg0)
|
1386
1486
|
{
|
@@ -1395,6 +1495,7 @@ everything_passthrough_one_guintptr (guintptr arg0)
|
|
1395
1495
|
*
|
1396
1496
|
* Returns: (transfer none)
|
1397
1497
|
*/
|
1498
|
+
_GI_TEST_EXTERN
|
1398
1499
|
gfloat
|
1399
1500
|
everything_passthrough_one_gfloat (gfloat arg0)
|
1400
1501
|
{
|
@@ -1409,6 +1510,7 @@ everything_passthrough_one_gfloat (gfloat arg0)
|
|
1409
1510
|
*
|
1410
1511
|
* Returns: (transfer none)
|
1411
1512
|
*/
|
1513
|
+
_GI_TEST_EXTERN
|
1412
1514
|
gdouble
|
1413
1515
|
everything_passthrough_one_gdouble (gdouble arg0)
|
1414
1516
|
{
|
@@ -1423,6 +1525,7 @@ everything_passthrough_one_gdouble (gdouble arg0)
|
|
1423
1525
|
*
|
1424
1526
|
* Returns: (transfer none)
|
1425
1527
|
*/
|
1528
|
+
_GI_TEST_EXTERN
|
1426
1529
|
gunichar
|
1427
1530
|
everything_passthrough_one_gunichar (gunichar arg0)
|
1428
1531
|
{
|
@@ -1437,6 +1540,7 @@ everything_passthrough_one_gunichar (gunichar arg0)
|
|
1437
1540
|
*
|
1438
1541
|
* Returns: (transfer none)
|
1439
1542
|
*/
|
1543
|
+
_GI_TEST_EXTERN
|
1440
1544
|
GType
|
1441
1545
|
everything_passthrough_one_GType (GType arg0)
|
1442
1546
|
{
|
@@ -1451,6 +1555,7 @@ everything_passthrough_one_GType (GType arg0)
|
|
1451
1555
|
*
|
1452
1556
|
* Returns: (transfer none)
|
1453
1557
|
*/
|
1558
|
+
_GI_TEST_EXTERN
|
1454
1559
|
const gchar*
|
1455
1560
|
everything_passthrough_one_utf8 (const gchar* arg0)
|
1456
1561
|
{
|
@@ -1465,6 +1570,7 @@ everything_passthrough_one_utf8 (const gchar* arg0)
|
|
1465
1570
|
*
|
1466
1571
|
* Returns: (transfer none)
|
1467
1572
|
*/
|
1573
|
+
_GI_TEST_EXTERN
|
1468
1574
|
const gchar*
|
1469
1575
|
everything_passthrough_one_filename (const gchar* arg0)
|
1470
1576
|
{
|