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
@@ -6,422 +6,529 @@
|
|
6
6
|
|
7
7
|
#include <glib-object.h>
|
8
8
|
|
9
|
+
#include "gitestmacros.h"
|
10
|
+
|
11
|
+
_GI_TEST_EXTERN
|
9
12
|
void
|
10
13
|
everything_nullfunc (void);
|
11
14
|
|
12
15
|
|
16
|
+
_GI_TEST_EXTERN
|
13
17
|
gboolean
|
14
18
|
everything_const_return_gboolean (void);
|
15
19
|
|
16
20
|
|
21
|
+
_GI_TEST_EXTERN
|
17
22
|
gint8
|
18
23
|
everything_const_return_gint8 (void);
|
19
24
|
|
20
25
|
|
26
|
+
_GI_TEST_EXTERN
|
21
27
|
guint8
|
22
28
|
everything_const_return_guint8 (void);
|
23
29
|
|
24
30
|
|
31
|
+
_GI_TEST_EXTERN
|
25
32
|
gint16
|
26
33
|
everything_const_return_gint16 (void);
|
27
34
|
|
28
35
|
|
36
|
+
_GI_TEST_EXTERN
|
29
37
|
guint16
|
30
38
|
everything_const_return_guint16 (void);
|
31
39
|
|
32
40
|
|
41
|
+
_GI_TEST_EXTERN
|
33
42
|
gint32
|
34
43
|
everything_const_return_gint32 (void);
|
35
44
|
|
36
45
|
|
46
|
+
_GI_TEST_EXTERN
|
37
47
|
guint32
|
38
48
|
everything_const_return_guint32 (void);
|
39
49
|
|
40
50
|
|
51
|
+
_GI_TEST_EXTERN
|
41
52
|
gint64
|
42
53
|
everything_const_return_gint64 (void);
|
43
54
|
|
44
55
|
|
56
|
+
_GI_TEST_EXTERN
|
45
57
|
guint64
|
46
58
|
everything_const_return_guint64 (void);
|
47
59
|
|
48
60
|
|
61
|
+
_GI_TEST_EXTERN
|
49
62
|
gchar
|
50
63
|
everything_const_return_gchar (void);
|
51
64
|
|
52
65
|
|
66
|
+
_GI_TEST_EXTERN
|
53
67
|
gshort
|
54
68
|
everything_const_return_gshort (void);
|
55
69
|
|
56
70
|
|
71
|
+
_GI_TEST_EXTERN
|
57
72
|
gushort
|
58
73
|
everything_const_return_gushort (void);
|
59
74
|
|
60
75
|
|
76
|
+
_GI_TEST_EXTERN
|
61
77
|
gint
|
62
78
|
everything_const_return_gint (void);
|
63
79
|
|
64
80
|
|
81
|
+
_GI_TEST_EXTERN
|
65
82
|
guint
|
66
83
|
everything_const_return_guint (void);
|
67
84
|
|
68
85
|
|
86
|
+
_GI_TEST_EXTERN
|
69
87
|
glong
|
70
88
|
everything_const_return_glong (void);
|
71
89
|
|
72
90
|
|
91
|
+
_GI_TEST_EXTERN
|
73
92
|
gulong
|
74
93
|
everything_const_return_gulong (void);
|
75
94
|
|
76
95
|
|
96
|
+
_GI_TEST_EXTERN
|
77
97
|
gsize
|
78
98
|
everything_const_return_gsize (void);
|
79
99
|
|
80
100
|
|
101
|
+
_GI_TEST_EXTERN
|
81
102
|
gssize
|
82
103
|
everything_const_return_gssize (void);
|
83
104
|
|
84
105
|
|
106
|
+
_GI_TEST_EXTERN
|
85
107
|
gintptr
|
86
108
|
everything_const_return_gintptr (void);
|
87
109
|
|
88
110
|
|
111
|
+
_GI_TEST_EXTERN
|
89
112
|
guintptr
|
90
113
|
everything_const_return_guintptr (void);
|
91
114
|
|
92
115
|
|
116
|
+
_GI_TEST_EXTERN
|
93
117
|
gfloat
|
94
118
|
everything_const_return_gfloat (void);
|
95
119
|
|
96
120
|
|
121
|
+
_GI_TEST_EXTERN
|
97
122
|
gdouble
|
98
123
|
everything_const_return_gdouble (void);
|
99
124
|
|
100
125
|
|
126
|
+
_GI_TEST_EXTERN
|
101
127
|
gunichar
|
102
128
|
everything_const_return_gunichar (void);
|
103
129
|
|
104
130
|
|
131
|
+
_GI_TEST_EXTERN
|
105
132
|
GType
|
106
133
|
everything_const_return_GType (void);
|
107
134
|
|
108
135
|
|
136
|
+
_GI_TEST_EXTERN
|
109
137
|
const gchar*
|
110
138
|
everything_const_return_utf8 (void);
|
111
139
|
|
112
140
|
|
141
|
+
_GI_TEST_EXTERN
|
113
142
|
const gchar*
|
114
143
|
everything_const_return_filename (void);
|
115
144
|
|
116
145
|
|
146
|
+
_GI_TEST_EXTERN
|
117
147
|
void
|
118
148
|
everything_oneparam_gboolean (gboolean arg0);
|
119
149
|
|
120
150
|
|
151
|
+
_GI_TEST_EXTERN
|
121
152
|
void
|
122
153
|
everything_oneparam_gint8 (gint8 arg0);
|
123
154
|
|
124
155
|
|
156
|
+
_GI_TEST_EXTERN
|
125
157
|
void
|
126
158
|
everything_oneparam_guint8 (guint8 arg0);
|
127
159
|
|
128
160
|
|
161
|
+
_GI_TEST_EXTERN
|
129
162
|
void
|
130
163
|
everything_oneparam_gint16 (gint16 arg0);
|
131
164
|
|
132
165
|
|
166
|
+
_GI_TEST_EXTERN
|
133
167
|
void
|
134
168
|
everything_oneparam_guint16 (guint16 arg0);
|
135
169
|
|
136
170
|
|
171
|
+
_GI_TEST_EXTERN
|
137
172
|
void
|
138
173
|
everything_oneparam_gint32 (gint32 arg0);
|
139
174
|
|
140
175
|
|
176
|
+
_GI_TEST_EXTERN
|
141
177
|
void
|
142
178
|
everything_oneparam_guint32 (guint32 arg0);
|
143
179
|
|
144
180
|
|
181
|
+
_GI_TEST_EXTERN
|
145
182
|
void
|
146
183
|
everything_oneparam_gint64 (gint64 arg0);
|
147
184
|
|
148
185
|
|
186
|
+
_GI_TEST_EXTERN
|
149
187
|
void
|
150
188
|
everything_oneparam_guint64 (guint64 arg0);
|
151
189
|
|
152
190
|
|
191
|
+
_GI_TEST_EXTERN
|
153
192
|
void
|
154
193
|
everything_oneparam_gchar (gchar arg0);
|
155
194
|
|
156
195
|
|
196
|
+
_GI_TEST_EXTERN
|
157
197
|
void
|
158
198
|
everything_oneparam_gshort (gshort arg0);
|
159
199
|
|
160
200
|
|
201
|
+
_GI_TEST_EXTERN
|
161
202
|
void
|
162
203
|
everything_oneparam_gushort (gushort arg0);
|
163
204
|
|
164
205
|
|
206
|
+
_GI_TEST_EXTERN
|
165
207
|
void
|
166
208
|
everything_oneparam_gint (gint arg0);
|
167
209
|
|
168
210
|
|
211
|
+
_GI_TEST_EXTERN
|
169
212
|
void
|
170
213
|
everything_oneparam_guint (guint arg0);
|
171
214
|
|
172
215
|
|
216
|
+
_GI_TEST_EXTERN
|
173
217
|
void
|
174
218
|
everything_oneparam_glong (glong arg0);
|
175
219
|
|
176
220
|
|
221
|
+
_GI_TEST_EXTERN
|
177
222
|
void
|
178
223
|
everything_oneparam_gulong (gulong arg0);
|
179
224
|
|
180
225
|
|
226
|
+
_GI_TEST_EXTERN
|
181
227
|
void
|
182
228
|
everything_oneparam_gsize (gsize arg0);
|
183
229
|
|
184
230
|
|
231
|
+
_GI_TEST_EXTERN
|
185
232
|
void
|
186
233
|
everything_oneparam_gssize (gssize arg0);
|
187
234
|
|
188
235
|
|
236
|
+
_GI_TEST_EXTERN
|
189
237
|
void
|
190
238
|
everything_oneparam_gintptr (gintptr arg0);
|
191
239
|
|
192
240
|
|
241
|
+
_GI_TEST_EXTERN
|
193
242
|
void
|
194
243
|
everything_oneparam_guintptr (guintptr arg0);
|
195
244
|
|
196
245
|
|
246
|
+
_GI_TEST_EXTERN
|
197
247
|
void
|
198
248
|
everything_oneparam_gfloat (gfloat arg0);
|
199
249
|
|
200
250
|
|
251
|
+
_GI_TEST_EXTERN
|
201
252
|
void
|
202
253
|
everything_oneparam_gdouble (gdouble arg0);
|
203
254
|
|
204
255
|
|
256
|
+
_GI_TEST_EXTERN
|
205
257
|
void
|
206
258
|
everything_oneparam_gunichar (gunichar arg0);
|
207
259
|
|
208
260
|
|
261
|
+
_GI_TEST_EXTERN
|
209
262
|
void
|
210
263
|
everything_oneparam_GType (GType arg0);
|
211
264
|
|
212
265
|
|
266
|
+
_GI_TEST_EXTERN
|
213
267
|
void
|
214
268
|
everything_oneparam_utf8 (const gchar* arg0);
|
215
269
|
|
216
270
|
|
271
|
+
_GI_TEST_EXTERN
|
217
272
|
void
|
218
273
|
everything_oneparam_filename (const gchar* arg0);
|
219
274
|
|
220
275
|
|
276
|
+
_GI_TEST_EXTERN
|
221
277
|
void
|
222
278
|
everything_one_outparam_gboolean (gboolean* arg0);
|
223
279
|
|
224
280
|
|
281
|
+
_GI_TEST_EXTERN
|
225
282
|
void
|
226
283
|
everything_one_outparam_gint8 (gint8* arg0);
|
227
284
|
|
228
285
|
|
286
|
+
_GI_TEST_EXTERN
|
229
287
|
void
|
230
288
|
everything_one_outparam_guint8 (guint8* arg0);
|
231
289
|
|
232
290
|
|
291
|
+
_GI_TEST_EXTERN
|
233
292
|
void
|
234
293
|
everything_one_outparam_gint16 (gint16* arg0);
|
235
294
|
|
236
295
|
|
296
|
+
_GI_TEST_EXTERN
|
237
297
|
void
|
238
298
|
everything_one_outparam_guint16 (guint16* arg0);
|
239
299
|
|
240
300
|
|
301
|
+
_GI_TEST_EXTERN
|
241
302
|
void
|
242
303
|
everything_one_outparam_gint32 (gint32* arg0);
|
243
304
|
|
244
305
|
|
306
|
+
_GI_TEST_EXTERN
|
245
307
|
void
|
246
308
|
everything_one_outparam_guint32 (guint32* arg0);
|
247
309
|
|
248
310
|
|
311
|
+
_GI_TEST_EXTERN
|
249
312
|
void
|
250
313
|
everything_one_outparam_gint64 (gint64* arg0);
|
251
314
|
|
252
315
|
|
316
|
+
_GI_TEST_EXTERN
|
253
317
|
void
|
254
318
|
everything_one_outparam_guint64 (guint64* arg0);
|
255
319
|
|
256
320
|
|
321
|
+
_GI_TEST_EXTERN
|
257
322
|
void
|
258
323
|
everything_one_outparam_gchar (gchar* arg0);
|
259
324
|
|
260
325
|
|
326
|
+
_GI_TEST_EXTERN
|
261
327
|
void
|
262
328
|
everything_one_outparam_gshort (gshort* arg0);
|
263
329
|
|
264
330
|
|
331
|
+
_GI_TEST_EXTERN
|
265
332
|
void
|
266
333
|
everything_one_outparam_gushort (gushort* arg0);
|
267
334
|
|
268
335
|
|
336
|
+
_GI_TEST_EXTERN
|
269
337
|
void
|
270
338
|
everything_one_outparam_gint (gint* arg0);
|
271
339
|
|
272
340
|
|
341
|
+
_GI_TEST_EXTERN
|
273
342
|
void
|
274
343
|
everything_one_outparam_guint (guint* arg0);
|
275
344
|
|
276
345
|
|
346
|
+
_GI_TEST_EXTERN
|
277
347
|
void
|
278
348
|
everything_one_outparam_glong (glong* arg0);
|
279
349
|
|
280
350
|
|
351
|
+
_GI_TEST_EXTERN
|
281
352
|
void
|
282
353
|
everything_one_outparam_gulong (gulong* arg0);
|
283
354
|
|
284
355
|
|
356
|
+
_GI_TEST_EXTERN
|
285
357
|
void
|
286
358
|
everything_one_outparam_gsize (gsize* arg0);
|
287
359
|
|
288
360
|
|
361
|
+
_GI_TEST_EXTERN
|
289
362
|
void
|
290
363
|
everything_one_outparam_gssize (gssize* arg0);
|
291
364
|
|
292
365
|
|
366
|
+
_GI_TEST_EXTERN
|
293
367
|
void
|
294
368
|
everything_one_outparam_gintptr (gintptr* arg0);
|
295
369
|
|
296
370
|
|
371
|
+
_GI_TEST_EXTERN
|
297
372
|
void
|
298
373
|
everything_one_outparam_guintptr (guintptr* arg0);
|
299
374
|
|
300
375
|
|
376
|
+
_GI_TEST_EXTERN
|
301
377
|
void
|
302
378
|
everything_one_outparam_gfloat (gfloat* arg0);
|
303
379
|
|
304
380
|
|
381
|
+
_GI_TEST_EXTERN
|
305
382
|
void
|
306
383
|
everything_one_outparam_gdouble (gdouble* arg0);
|
307
384
|
|
308
385
|
|
386
|
+
_GI_TEST_EXTERN
|
309
387
|
void
|
310
388
|
everything_one_outparam_gunichar (gunichar* arg0);
|
311
389
|
|
312
390
|
|
391
|
+
_GI_TEST_EXTERN
|
313
392
|
void
|
314
393
|
everything_one_outparam_GType (GType* arg0);
|
315
394
|
|
316
395
|
|
396
|
+
_GI_TEST_EXTERN
|
317
397
|
void
|
318
398
|
everything_one_outparam_utf8 (const gchar** arg0);
|
319
399
|
|
320
400
|
|
401
|
+
_GI_TEST_EXTERN
|
321
402
|
void
|
322
403
|
everything_one_outparam_filename (const gchar** arg0);
|
323
404
|
|
324
405
|
|
406
|
+
_GI_TEST_EXTERN
|
325
407
|
gboolean
|
326
408
|
everything_passthrough_one_gboolean (gboolean arg0);
|
327
409
|
|
328
410
|
|
411
|
+
_GI_TEST_EXTERN
|
329
412
|
gint8
|
330
413
|
everything_passthrough_one_gint8 (gint8 arg0);
|
331
414
|
|
332
415
|
|
416
|
+
_GI_TEST_EXTERN
|
333
417
|
guint8
|
334
418
|
everything_passthrough_one_guint8 (guint8 arg0);
|
335
419
|
|
336
420
|
|
421
|
+
_GI_TEST_EXTERN
|
337
422
|
gint16
|
338
423
|
everything_passthrough_one_gint16 (gint16 arg0);
|
339
424
|
|
340
425
|
|
426
|
+
_GI_TEST_EXTERN
|
341
427
|
guint16
|
342
428
|
everything_passthrough_one_guint16 (guint16 arg0);
|
343
429
|
|
344
430
|
|
431
|
+
_GI_TEST_EXTERN
|
345
432
|
gint32
|
346
433
|
everything_passthrough_one_gint32 (gint32 arg0);
|
347
434
|
|
348
435
|
|
436
|
+
_GI_TEST_EXTERN
|
349
437
|
guint32
|
350
438
|
everything_passthrough_one_guint32 (guint32 arg0);
|
351
439
|
|
352
440
|
|
441
|
+
_GI_TEST_EXTERN
|
353
442
|
gint64
|
354
443
|
everything_passthrough_one_gint64 (gint64 arg0);
|
355
444
|
|
356
445
|
|
446
|
+
_GI_TEST_EXTERN
|
357
447
|
guint64
|
358
448
|
everything_passthrough_one_guint64 (guint64 arg0);
|
359
449
|
|
360
450
|
|
451
|
+
_GI_TEST_EXTERN
|
361
452
|
gchar
|
362
453
|
everything_passthrough_one_gchar (gchar arg0);
|
363
454
|
|
364
455
|
|
456
|
+
_GI_TEST_EXTERN
|
365
457
|
gshort
|
366
458
|
everything_passthrough_one_gshort (gshort arg0);
|
367
459
|
|
368
460
|
|
461
|
+
_GI_TEST_EXTERN
|
369
462
|
gushort
|
370
463
|
everything_passthrough_one_gushort (gushort arg0);
|
371
464
|
|
372
465
|
|
466
|
+
_GI_TEST_EXTERN
|
373
467
|
gint
|
374
468
|
everything_passthrough_one_gint (gint arg0);
|
375
469
|
|
376
470
|
|
471
|
+
_GI_TEST_EXTERN
|
377
472
|
guint
|
378
473
|
everything_passthrough_one_guint (guint arg0);
|
379
474
|
|
380
475
|
|
476
|
+
_GI_TEST_EXTERN
|
381
477
|
glong
|
382
478
|
everything_passthrough_one_glong (glong arg0);
|
383
479
|
|
384
480
|
|
481
|
+
_GI_TEST_EXTERN
|
385
482
|
gulong
|
386
483
|
everything_passthrough_one_gulong (gulong arg0);
|
387
484
|
|
388
485
|
|
486
|
+
_GI_TEST_EXTERN
|
389
487
|
gsize
|
390
488
|
everything_passthrough_one_gsize (gsize arg0);
|
391
489
|
|
392
490
|
|
491
|
+
_GI_TEST_EXTERN
|
393
492
|
gssize
|
394
493
|
everything_passthrough_one_gssize (gssize arg0);
|
395
494
|
|
396
495
|
|
496
|
+
_GI_TEST_EXTERN
|
397
497
|
gintptr
|
398
498
|
everything_passthrough_one_gintptr (gintptr arg0);
|
399
499
|
|
400
500
|
|
501
|
+
_GI_TEST_EXTERN
|
401
502
|
guintptr
|
402
503
|
everything_passthrough_one_guintptr (guintptr arg0);
|
403
504
|
|
404
505
|
|
506
|
+
_GI_TEST_EXTERN
|
405
507
|
gfloat
|
406
508
|
everything_passthrough_one_gfloat (gfloat arg0);
|
407
509
|
|
408
510
|
|
511
|
+
_GI_TEST_EXTERN
|
409
512
|
gdouble
|
410
513
|
everything_passthrough_one_gdouble (gdouble arg0);
|
411
514
|
|
412
515
|
|
516
|
+
_GI_TEST_EXTERN
|
413
517
|
gunichar
|
414
518
|
everything_passthrough_one_gunichar (gunichar arg0);
|
415
519
|
|
416
520
|
|
521
|
+
_GI_TEST_EXTERN
|
417
522
|
GType
|
418
523
|
everything_passthrough_one_GType (GType arg0);
|
419
524
|
|
420
525
|
|
526
|
+
_GI_TEST_EXTERN
|
421
527
|
const gchar*
|
422
528
|
everything_passthrough_one_utf8 (const gchar* arg0);
|
423
529
|
|
424
530
|
|
531
|
+
_GI_TEST_EXTERN
|
425
532
|
const gchar*
|
426
533
|
everything_passthrough_one_filename (const gchar* arg0);
|
427
534
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
#include "config.h"
|
2
|
+
|
1
3
|
#include "foo.h"
|
2
4
|
|
3
5
|
/* A hidden type not exposed publicly, similar to GUPNP's XML wrapper
|
@@ -285,14 +287,12 @@ regress_foo_object_dup_name (RegressFooObject *object)
|
|
285
287
|
}
|
286
288
|
|
287
289
|
/**
|
288
|
-
* regress_foo_object_read:
|
290
|
+
* regress_foo_object_read: (virtual read_fn)
|
289
291
|
* @object: obj
|
290
292
|
* @offset: offset
|
291
293
|
* @length: length
|
292
294
|
*
|
293
295
|
* Read some stuff.
|
294
|
-
*
|
295
|
-
* Virtual: read_fn
|
296
296
|
*/
|
297
297
|
void
|
298
298
|
regress_foo_object_read (RegressFooObject *object, int offset, int length)
|