gobject-introspection 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +129 -0
- data/ext/gobject-introspection/depend +10 -0
- data/ext/gobject-introspection/extconf.rb +94 -0
- data/ext/gobject-introspection/gobject_introspection.def +5 -0
- data/ext/gobject-introspection/rb-gi-arg-info.c +151 -0
- data/ext/gobject-introspection/rb-gi-argument.c +2053 -0
- data/ext/gobject-introspection/rb-gi-base-info.c +218 -0
- data/ext/gobject-introspection/rb-gi-boxed-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-callable-info.c +104 -0
- data/ext/gobject-introspection/rb-gi-callback-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-constant-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-constructor-info.c +133 -0
- data/ext/gobject-introspection/rb-gi-conversions.h +145 -0
- data/ext/gobject-introspection/rb-gi-enum-info.c +155 -0
- data/ext/gobject-introspection/rb-gi-field-info.c +153 -0
- data/ext/gobject-introspection/rb-gi-flags-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-function-info.c +841 -0
- data/ext/gobject-introspection/rb-gi-interface-info.c +222 -0
- data/ext/gobject-introspection/rb-gi-loader.c +224 -0
- data/ext/gobject-introspection/rb-gi-method-info.c +83 -0
- data/ext/gobject-introspection/rb-gi-object-info.c +345 -0
- data/ext/gobject-introspection/rb-gi-private.h +105 -0
- data/ext/gobject-introspection/rb-gi-property-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-registered-type-info.c +86 -0
- data/ext/gobject-introspection/rb-gi-repository.c +246 -0
- data/ext/gobject-introspection/rb-gi-signal-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-struct-info.c +202 -0
- data/ext/gobject-introspection/rb-gi-type-info.c +143 -0
- data/ext/gobject-introspection/rb-gi-type-tag.c +43 -0
- data/ext/gobject-introspection/rb-gi-types.h +71 -0
- data/ext/gobject-introspection/rb-gi-union-info.c +206 -0
- data/ext/gobject-introspection/rb-gi-unresolved-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-value-info.c +57 -0
- data/ext/gobject-introspection/rb-gi-vfunc-info.c +91 -0
- data/ext/gobject-introspection/rb-gobject-introspection.c +44 -0
- data/ext/gobject-introspection/rb-gobject-introspection.h +60 -0
- data/extconf.rb +71 -0
- data/lib/2.0/gobject_introspection.so +0 -0
- data/lib/2.1/gobject_introspection.so +0 -0
- data/lib/2.2/gobject_introspection.so +0 -0
- data/lib/gobject-introspection.rb +53 -0
- data/lib/gobject-introspection/boxed-info.rb +28 -0
- data/lib/gobject-introspection/callable-info.rb +100 -0
- data/lib/gobject-introspection/collection-reader.rb +34 -0
- data/lib/gobject-introspection/interface-info.rb +32 -0
- data/lib/gobject-introspection/loader.rb +465 -0
- data/lib/gobject-introspection/object-info.rb +33 -0
- data/lib/gobject-introspection/repository.rb +32 -0
- data/lib/gobject-introspection/struct-info.rb +28 -0
- data/lib/gobject-introspection/union-info.rb +28 -0
- data/test/gobject-introspection-test-utils.rb +26 -0
- data/test/run-test.rb +45 -0
- data/test/test-arg-info.rb +68 -0
- data/test/test-base-info.rb +31 -0
- data/test/test-boxed-info.rb +21 -0
- data/test/test-callable-info.rb +49 -0
- data/test/test-callback-info.rb +29 -0
- data/test/test-constant-info.rb +24 -0
- data/test/test-enum-info.rb +61 -0
- data/test/test-field-type.rb +42 -0
- data/test/test-flags-info.rb +27 -0
- data/test/test-function-info.rb +39 -0
- data/test/test-interface-info.rb +97 -0
- data/test/test-loader.rb +30 -0
- data/test/test-object-info.rb +131 -0
- data/test/test-property-info.rb +38 -0
- data/test/test-registered-type-info.rb +35 -0
- data/test/test-repository.rb +62 -0
- data/test/test-signal-info.rb +40 -0
- data/test/test-struct-info.rb +57 -0
- data/test/test-type-info.rb +62 -0
- data/test/test-type-tag.rb +29 -0
- data/test/test-union-info.rb +21 -0
- data/test/test-value-info.rb +28 -0
- data/test/test-vfunc-info.rb +42 -0
- 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 +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gibaseinfo.h +120 -0
- data/vendor/local/include/gobject-introspection-1.0/gicallableinfo.h +110 -0
- data/vendor/local/include/gobject-introspection-1.0/giconstantinfo.h +58 -0
- data/vendor/local/include/gobject-introspection-1.0/gienuminfo.h +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gifieldinfo.h +71 -0
- data/vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h +100 -0
- data/vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h +106 -0
- data/vendor/local/include/gobject-introspection-1.0/giobjectinfo.h +207 -0
- data/vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h +56 -0
- data/vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h +64 -0
- data/vendor/local/include/gobject-introspection-1.0/girepository.h +239 -0
- data/vendor/local/include/gobject-introspection-1.0/girffi.h +104 -0
- data/vendor/local/include/gobject-introspection-1.0/gisignalinfo.h +57 -0
- data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +77 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypeinfo.h +87 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypelib.h +80 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypes.h +524 -0
- data/vendor/local/include/gobject-introspection-1.0/giunioninfo.h +84 -0
- data/vendor/local/include/gobject-introspection-1.0/giversionmacros.h +128 -0
- data/vendor/local/include/gobject-introspection-1.0/givfuncinfo.h +73 -0
- data/vendor/local/lib/girepository-1.0/DBus-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GL-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GModule-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/cairo-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/freetype2-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/girepository-1.0/xfixes-4.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xft-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xlib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xrandr-1.3.typelib +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.py +24 -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 +76 -0
- 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 +2161 -0
- 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 +1139 -0
- 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 +203 -0
- 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 +173 -0
- 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 +23 -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.py +120 -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.py +72 -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/class.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl +2 -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 +60 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/interface.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl +4 -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 +30 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl +21 -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 +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/interface.tmpl +17 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl +38 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl +18 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl +13 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/interface.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl +41 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl +20 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl +61 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +958 -0
- 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 +338 -0
- 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 +529 -0
- 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 +593 -0
- 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 +612 -0
- 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.py +240 -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.py +76 -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 +1366 -0
- 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 +203 -0
- 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 +561 -0
- 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.py +152 -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 +140 -0
- 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 +329 -0
- 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 +136 -0
- 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 +971 -0
- 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 +211 -0
- 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 +156 -0
- 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 +41 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +26 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +23 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/introspection.m4 +96 -0
- data/vendor/local/share/gir-1.0/DBus-1.0.gir +32 -0
- data/vendor/local/share/gir-1.0/DBusGLib-1.0.gir +18 -0
- data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +4042 -0
- data/vendor/local/share/gir-1.0/GL-1.0.gir +31 -0
- data/vendor/local/share/gir-1.0/GLib-2.0.gir +47221 -0
- data/vendor/local/share/gir-1.0/GModule-2.0.gir +301 -0
- data/vendor/local/share/gir-1.0/GObject-2.0.gir +14733 -0
- data/vendor/local/share/gir-1.0/Gio-2.0.gir +82459 -0
- data/vendor/local/share/gir-1.0/cairo-1.0.gir +70 -0
- data/vendor/local/share/gir-1.0/fontconfig-2.0.gir +18 -0
- data/vendor/local/share/gir-1.0/freetype2-2.0.gir +22 -0
- data/vendor/local/share/gir-1.0/libxml2-2.0.gir +25 -0
- data/vendor/local/share/gir-1.0/win32-1.0.gir +19 -0
- data/vendor/local/share/gir-1.0/xfixes-4.0.gir +10 -0
- data/vendor/local/share/gir-1.0/xft-2.0.gir +23 -0
- data/vendor/local/share/gir-1.0/xlib-2.0.gir +67 -0
- data/vendor/local/share/gir-1.0/xrandr-1.3.gir +16 -0
- data/vendor/local/share/gobject-introspection-1.0/Makefile.introspection +166 -0
- data/vendor/local/share/gobject-introspection-1.0/gdump.c +569 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.c +831 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.h +301 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.c +57 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.h +44 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +1579 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +535 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.c +790 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.h +582 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +5426 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h +1948 -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 +4068 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +1415 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.h +102 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.h +46 -0
- data/vendor/local/share/license/gobject-introspection/AUTHORS +9 -0
- data/vendor/local/share/license/gobject-introspection/COPYING +12 -0
- data/vendor/local/share/man/man1/g-ir-compiler.1 +42 -0
- data/vendor/local/share/man/man1/g-ir-generate.1 +29 -0
- metadata +363 -0
@@ -0,0 +1,301 @@
|
|
1
|
+
#ifndef __REGRESS_ANNOTATION_OBJECT_H__
|
2
|
+
#define __REGRESS_ANNOTATION_OBJECT_H__
|
3
|
+
|
4
|
+
#include "gitestmacros.h"
|
5
|
+
|
6
|
+
#include <glib-object.h>
|
7
|
+
|
8
|
+
typedef enum /*< flags,prefix=ANN >*/
|
9
|
+
{
|
10
|
+
ANN_FLAG_FOO = 1,
|
11
|
+
ANN_FLAG_BAR = 2
|
12
|
+
} RegressAnnotationBitfield;
|
13
|
+
|
14
|
+
/**
|
15
|
+
* RegressAnnotationCallback:
|
16
|
+
* @in: (in) (transfer none): array of ints
|
17
|
+
*
|
18
|
+
* This is a callback.
|
19
|
+
* Return value: (transfer none): array of ints
|
20
|
+
*/
|
21
|
+
typedef const gint* (*RegressAnnotationCallback) (const gint *in);
|
22
|
+
|
23
|
+
/**
|
24
|
+
* RegressAnnotationListCallback:
|
25
|
+
* @in: (in) (transfer none) (element-type utf8): list of strings
|
26
|
+
*
|
27
|
+
* This is a callback taking a list.
|
28
|
+
* Return value: (transfer container) (element-type utf8): list of strings
|
29
|
+
*/
|
30
|
+
typedef GList* (*RegressAnnotationListCallback) (GList *in);
|
31
|
+
|
32
|
+
/**
|
33
|
+
* RegressAnnotationNotifyFunc:
|
34
|
+
* @data: (closure): The user data
|
35
|
+
*
|
36
|
+
* This is a callback with a 'closure' argument that is not named
|
37
|
+
* 'user_data' and hence has to be annotated.
|
38
|
+
*/
|
39
|
+
typedef void (*RegressAnnotationNotifyFunc) (gpointer data);
|
40
|
+
|
41
|
+
/**
|
42
|
+
* RegressAnnotationObject: (attributes org.example.Test=cows)
|
43
|
+
*
|
44
|
+
* This is an object used to test annotations.
|
45
|
+
*/
|
46
|
+
typedef struct _RegressAnnotationObject RegressAnnotationObject;
|
47
|
+
typedef struct _RegressAnnotationObjectClass RegressAnnotationObjectClass;
|
48
|
+
|
49
|
+
typedef void (*RegressAnnotationForeachFunc) (RegressAnnotationObject *object,
|
50
|
+
const char *item,
|
51
|
+
gpointer user_data);
|
52
|
+
|
53
|
+
struct _RegressAnnotationObject
|
54
|
+
{
|
55
|
+
GObject parent_instance;
|
56
|
+
};
|
57
|
+
|
58
|
+
struct _RegressAnnotationObjectClass
|
59
|
+
{
|
60
|
+
GObjectClass parent_class;
|
61
|
+
};
|
62
|
+
|
63
|
+
_GI_TEST_EXTERN
|
64
|
+
GType regress_annotation_object_get_type (void);
|
65
|
+
|
66
|
+
_GI_TEST_EXTERN
|
67
|
+
gint regress_annotation_object_method (RegressAnnotationObject *object);
|
68
|
+
|
69
|
+
_GI_TEST_EXTERN
|
70
|
+
gint regress_annotation_object_out (RegressAnnotationObject *object,
|
71
|
+
int *outarg);
|
72
|
+
|
73
|
+
_GI_TEST_EXTERN
|
74
|
+
GObject* regress_annotation_object_create_object(RegressAnnotationObject *object);
|
75
|
+
|
76
|
+
_GI_TEST_EXTERN
|
77
|
+
GObject* regress_annotation_object_allow_none (RegressAnnotationObject *object,
|
78
|
+
const gchar *somearg);
|
79
|
+
|
80
|
+
_GI_TEST_EXTERN
|
81
|
+
GObject* regress_annotation_object_notrans (RegressAnnotationObject *object);
|
82
|
+
|
83
|
+
_GI_TEST_EXTERN
|
84
|
+
gint regress_annotation_object_inout (RegressAnnotationObject *object,
|
85
|
+
int *inoutarg);
|
86
|
+
|
87
|
+
_GI_TEST_EXTERN
|
88
|
+
gint regress_annotation_object_inout2 (RegressAnnotationObject *object,
|
89
|
+
int *inoutarg);
|
90
|
+
|
91
|
+
_GI_TEST_EXTERN
|
92
|
+
gint regress_annotation_object_inout3 (RegressAnnotationObject *object,
|
93
|
+
int *inoutarg);
|
94
|
+
|
95
|
+
_GI_TEST_EXTERN
|
96
|
+
gint regress_annotation_object_in (RegressAnnotationObject *object,
|
97
|
+
int *inarg);
|
98
|
+
|
99
|
+
_GI_TEST_EXTERN
|
100
|
+
gint regress_annotation_object_calleeowns (RegressAnnotationObject *object,
|
101
|
+
GObject **toown);
|
102
|
+
|
103
|
+
_GI_TEST_EXTERN
|
104
|
+
gint regress_annotation_object_calleesowns (RegressAnnotationObject *object,
|
105
|
+
GObject **toown1,
|
106
|
+
GObject **toown2);
|
107
|
+
|
108
|
+
_GI_TEST_EXTERN
|
109
|
+
GList* regress_annotation_object_get_strings (RegressAnnotationObject *object);
|
110
|
+
|
111
|
+
_GI_TEST_EXTERN
|
112
|
+
GHashTable*regress_annotation_object_get_hash (RegressAnnotationObject *object);
|
113
|
+
|
114
|
+
_GI_TEST_EXTERN
|
115
|
+
void regress_annotation_object_with_voidp (RegressAnnotationObject *object,
|
116
|
+
void *data);
|
117
|
+
|
118
|
+
_GI_TEST_EXTERN
|
119
|
+
GSList* regress_annotation_object_get_objects (RegressAnnotationObject *object);
|
120
|
+
|
121
|
+
|
122
|
+
_GI_TEST_EXTERN
|
123
|
+
void regress_annotation_object_use_buffer (RegressAnnotationObject *object,
|
124
|
+
guchar *bytes);
|
125
|
+
|
126
|
+
|
127
|
+
_GI_TEST_EXTERN
|
128
|
+
void regress_annotation_object_compute_sum (RegressAnnotationObject *object,
|
129
|
+
int *nums);
|
130
|
+
|
131
|
+
|
132
|
+
_GI_TEST_EXTERN
|
133
|
+
void regress_annotation_object_compute_sum_n(RegressAnnotationObject *object,
|
134
|
+
int *nums,
|
135
|
+
int n_nums);
|
136
|
+
|
137
|
+
_GI_TEST_EXTERN
|
138
|
+
void regress_annotation_object_compute_sum_nz(RegressAnnotationObject *object,
|
139
|
+
int *nums,
|
140
|
+
int n_nums);
|
141
|
+
|
142
|
+
_GI_TEST_EXTERN
|
143
|
+
void regress_annotation_object_parse_args (RegressAnnotationObject *object,
|
144
|
+
int *argc,
|
145
|
+
char ***argv);
|
146
|
+
|
147
|
+
_GI_TEST_EXTERN
|
148
|
+
gboolean regress_annotation_object_string_out (RegressAnnotationObject *object,
|
149
|
+
char **str_out);
|
150
|
+
|
151
|
+
_GI_TEST_EXTERN
|
152
|
+
void regress_annotation_object_foreach (RegressAnnotationObject *object,
|
153
|
+
RegressAnnotationForeachFunc func,
|
154
|
+
gpointer user_data);
|
155
|
+
|
156
|
+
|
157
|
+
_GI_TEST_EXTERN
|
158
|
+
void regress_annotation_object_set_data (RegressAnnotationObject *object,
|
159
|
+
const guchar *data,
|
160
|
+
gsize length);
|
161
|
+
|
162
|
+
_GI_TEST_EXTERN
|
163
|
+
void regress_annotation_object_set_data2 (RegressAnnotationObject *object,
|
164
|
+
const gchar *data,
|
165
|
+
gsize length);
|
166
|
+
|
167
|
+
_GI_TEST_EXTERN
|
168
|
+
void regress_annotation_object_set_data3 (RegressAnnotationObject *object,
|
169
|
+
gpointer data,
|
170
|
+
gsize length);
|
171
|
+
|
172
|
+
|
173
|
+
_GI_TEST_EXTERN
|
174
|
+
GObject* regress_annotation_object_do_not_use (RegressAnnotationObject *object);
|
175
|
+
|
176
|
+
_GI_TEST_EXTERN
|
177
|
+
void regress_annotation_object_watch (RegressAnnotationObject *object,
|
178
|
+
RegressAnnotationForeachFunc func,
|
179
|
+
gpointer user_data);
|
180
|
+
|
181
|
+
_GI_TEST_EXTERN
|
182
|
+
void regress_annotation_object_watch_full (RegressAnnotationObject *object,
|
183
|
+
RegressAnnotationForeachFunc func,
|
184
|
+
gpointer user_data,
|
185
|
+
GDestroyNotify destroy);
|
186
|
+
|
187
|
+
_GI_TEST_EXTERN
|
188
|
+
void regress_annotation_object_hidden_self (gpointer object);
|
189
|
+
|
190
|
+
|
191
|
+
_GI_TEST_EXTERN
|
192
|
+
void regress_annotation_init (int *argc,
|
193
|
+
char ***argv);
|
194
|
+
|
195
|
+
_GI_TEST_EXTERN
|
196
|
+
char ** regress_annotation_return_array (int *length);
|
197
|
+
|
198
|
+
_GI_TEST_EXTERN
|
199
|
+
void regress_annotation_versioned (void);
|
200
|
+
|
201
|
+
_GI_TEST_EXTERN
|
202
|
+
char ** regress_annotation_string_zero_terminated (void);
|
203
|
+
|
204
|
+
_GI_TEST_EXTERN
|
205
|
+
void regress_annotation_string_zero_terminated_out (char ***out);
|
206
|
+
|
207
|
+
|
208
|
+
_GI_TEST_EXTERN
|
209
|
+
void regress_annotation_string_array_length (guint n_properties, const gchar * const properties[]);
|
210
|
+
|
211
|
+
|
212
|
+
_GI_TEST_EXTERN
|
213
|
+
void regress_annotation_object_extra_annos (RegressAnnotationObject *object);
|
214
|
+
|
215
|
+
|
216
|
+
_GI_TEST_EXTERN
|
217
|
+
void regress_annotation_custom_destroy (RegressAnnotationCallback callback,
|
218
|
+
RegressAnnotationNotifyFunc destroy,
|
219
|
+
gpointer data);
|
220
|
+
|
221
|
+
_GI_TEST_EXTERN
|
222
|
+
char * regress_annotation_get_source_file (void);
|
223
|
+
|
224
|
+
_GI_TEST_EXTERN
|
225
|
+
void regress_annotation_set_source_file (const char *fname);
|
226
|
+
|
227
|
+
|
228
|
+
_GI_TEST_EXTERN
|
229
|
+
gint regress_annotation_attribute_func (RegressAnnotationObject *object,
|
230
|
+
const gchar *data);
|
231
|
+
|
232
|
+
|
233
|
+
_GI_TEST_EXTERN
|
234
|
+
void regress_annotation_invalid_regress_annotation (int foo);
|
235
|
+
|
236
|
+
/**
|
237
|
+
* RegressAnnotationStruct:
|
238
|
+
*
|
239
|
+
* This is a test of an array of object in an field of a struct.
|
240
|
+
*/
|
241
|
+
struct RegressAnnotationStruct
|
242
|
+
{
|
243
|
+
RegressAnnotationObject *objects[10];
|
244
|
+
};
|
245
|
+
|
246
|
+
/**
|
247
|
+
* RegressAnnotationFields:
|
248
|
+
* @field1: Some documentation
|
249
|
+
* @arr: (array length=len): an array of length @len
|
250
|
+
* @len: the length of array
|
251
|
+
*
|
252
|
+
* This is a struct for testing field documentation and annotations
|
253
|
+
*/
|
254
|
+
struct RegressAnnotationFields
|
255
|
+
{
|
256
|
+
int field1;
|
257
|
+
guchar *arr;
|
258
|
+
gulong len;
|
259
|
+
};
|
260
|
+
|
261
|
+
|
262
|
+
_GI_TEST_EXTERN
|
263
|
+
void regress_annotation_ptr_array (GPtrArray *array);
|
264
|
+
|
265
|
+
|
266
|
+
_GI_TEST_EXTERN
|
267
|
+
GObject * regress_annotation_test_parsing_bug630862 (void);
|
268
|
+
|
269
|
+
|
270
|
+
_GI_TEST_EXTERN
|
271
|
+
void regress_annotation_space_after_comment_bug631690 (void);
|
272
|
+
|
273
|
+
|
274
|
+
_GI_TEST_EXTERN
|
275
|
+
gchar* regress_annotation_return_filename (void);
|
276
|
+
|
277
|
+
|
278
|
+
_GI_TEST_EXTERN
|
279
|
+
GObject * regress_annotation_transfer_floating(void);
|
280
|
+
|
281
|
+
/* This one we can handle properly */
|
282
|
+
#define REGRESS_ANNOTATION_CALCULATED_DEFINE (10 * 10)
|
283
|
+
|
284
|
+
/**
|
285
|
+
* REGRESS_ANNOTATION_CALCULATED_LARGE: (value 10000000000UL)
|
286
|
+
*
|
287
|
+
* Constant to define a calculated large value
|
288
|
+
*
|
289
|
+
* Since: 1.4
|
290
|
+
*/
|
291
|
+
#define REGRESS_ANNOTATION_CALCULATED_LARGE (1000 * G_GINT64_CONSTANT (10000000))
|
292
|
+
|
293
|
+
/**
|
294
|
+
* REGRESS_ANNOTATION_CALCULATED_LARGE_DIV: (value 1000000UL)
|
295
|
+
*
|
296
|
+
* Constant to define a calculated large value
|
297
|
+
*/
|
298
|
+
#define REGRESS_ANNOTATION_CALCULATED_LARGE_DIV (1000 / G_GINT64_CONSTANT (10000000))
|
299
|
+
|
300
|
+
#endif /* __REGRESS_ANNOTATION_OBJECT_H__ */
|
301
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2
|
+
#include "config.h"
|
3
|
+
|
4
|
+
#include "drawable.h"
|
5
|
+
|
6
|
+
G_DEFINE_ABSTRACT_TYPE (RegressTestInheritDrawable, regress_test_inherit_drawable, G_TYPE_OBJECT);
|
7
|
+
|
8
|
+
static void
|
9
|
+
regress_test_inherit_drawable_class_init (RegressTestInheritDrawableClass *klass)
|
10
|
+
{
|
11
|
+
|
12
|
+
}
|
13
|
+
|
14
|
+
static void
|
15
|
+
regress_test_inherit_drawable_init (RegressTestInheritDrawable *drawable)
|
16
|
+
{
|
17
|
+
|
18
|
+
}
|
19
|
+
|
20
|
+
void
|
21
|
+
regress_test_inherit_drawable_do_foo (RegressTestInheritDrawable *drawable, int x)
|
22
|
+
{
|
23
|
+
|
24
|
+
}
|
25
|
+
|
26
|
+
/**
|
27
|
+
* regress_test_inherit_drawable_get_origin:
|
28
|
+
* @drawable:
|
29
|
+
* @x: (out):
|
30
|
+
* @y: (out):
|
31
|
+
*/
|
32
|
+
void
|
33
|
+
regress_test_inherit_drawable_get_origin (RegressTestInheritDrawable *drawable, int *x, int *y)
|
34
|
+
{
|
35
|
+
*x = 0;
|
36
|
+
*y = 0;
|
37
|
+
}
|
38
|
+
|
39
|
+
/**
|
40
|
+
* regress_test_inherit_drawable_get_size:
|
41
|
+
* @drawable:
|
42
|
+
* @width: (out):
|
43
|
+
* @height: (out):
|
44
|
+
*/
|
45
|
+
void
|
46
|
+
regress_test_inherit_drawable_get_size (RegressTestInheritDrawable *drawable, guint *width, guint *height)
|
47
|
+
{
|
48
|
+
*width = 42;
|
49
|
+
*height = 42;
|
50
|
+
}
|
51
|
+
|
52
|
+
void
|
53
|
+
regress_test_inherit_drawable_do_foo_maybe_throw (RegressTestInheritDrawable *drawable, int x, GError **error)
|
54
|
+
{
|
55
|
+
if (x != 42)
|
56
|
+
g_set_error(error, 0, 12, "The answer should be 42!");
|
57
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
#ifndef __REGRESS_TEST_INHERIT_DRAWABLE_H__
|
2
|
+
#define __REGRESS_TEST_INHERIT_DRAWABLE_H__
|
3
|
+
|
4
|
+
#include <glib-object.h>
|
5
|
+
|
6
|
+
#include "gitestmacros.h"
|
7
|
+
|
8
|
+
typedef struct _RegressTestInheritDrawable RegressTestInheritDrawable;
|
9
|
+
typedef struct _RegressTestInheritDrawableClass RegressTestInheritDrawableClass;
|
10
|
+
|
11
|
+
struct _RegressTestInheritDrawable
|
12
|
+
{
|
13
|
+
GObject parent_instance;
|
14
|
+
};
|
15
|
+
|
16
|
+
struct _RegressTestInheritDrawableClass
|
17
|
+
{
|
18
|
+
GObjectClass parent_class;
|
19
|
+
};
|
20
|
+
|
21
|
+
_GI_TEST_EXTERN
|
22
|
+
GType regress_test_inherit_drawable_get_type (void) G_GNUC_CONST;
|
23
|
+
|
24
|
+
|
25
|
+
_GI_TEST_EXTERN
|
26
|
+
void regress_test_inherit_drawable_do_foo (RegressTestInheritDrawable *drawable, int x);
|
27
|
+
|
28
|
+
_GI_TEST_EXTERN
|
29
|
+
void regress_test_inherit_drawable_get_origin (RegressTestInheritDrawable *drawable, int *x, int *y);
|
30
|
+
|
31
|
+
_GI_TEST_EXTERN
|
32
|
+
void regress_test_inherit_drawable_get_size (RegressTestInheritDrawable *drawable, guint *width, guint *height);
|
33
|
+
|
34
|
+
_GI_TEST_EXTERN
|
35
|
+
void regress_test_inherit_drawable_do_foo_maybe_throw (RegressTestInheritDrawable *drawable, int x, GError **error);
|
36
|
+
|
37
|
+
typedef struct _RegressTestInheritPixmapObjectClass RegressTestInheritPixmapObjectClass;
|
38
|
+
|
39
|
+
struct _RegressTestInheritPixmapObjectClass
|
40
|
+
{
|
41
|
+
RegressTestInheritDrawableClass parent_class;
|
42
|
+
};
|
43
|
+
|
44
|
+
#endif /* __REGRESS_TEST_INHERIT_DRAWABLE_H__ */
|
@@ -0,0 +1,1579 @@
|
|
1
|
+
/* GENERATED BY testcodegen.py; DO NOT EDIT */
|
2
|
+
|
3
|
+
#include "config.h"
|
4
|
+
#include "everything.h"
|
5
|
+
|
6
|
+
/**
|
7
|
+
* everything_nullfunc:
|
8
|
+
*
|
9
|
+
* Undocumented.
|
10
|
+
*
|
11
|
+
* Returns: (transfer none)
|
12
|
+
*/
|
13
|
+
_GI_TEST_EXTERN
|
14
|
+
void
|
15
|
+
everything_nullfunc (void)
|
16
|
+
{
|
17
|
+
return;
|
18
|
+
}
|
19
|
+
|
20
|
+
/**
|
21
|
+
* everything_const_return_gboolean:
|
22
|
+
*
|
23
|
+
* Undocumented.
|
24
|
+
*
|
25
|
+
* Returns: (transfer none)
|
26
|
+
*/
|
27
|
+
_GI_TEST_EXTERN
|
28
|
+
gboolean
|
29
|
+
everything_const_return_gboolean (void)
|
30
|
+
{
|
31
|
+
return 0;
|
32
|
+
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* everything_const_return_gint8:
|
36
|
+
*
|
37
|
+
* Undocumented.
|
38
|
+
*
|
39
|
+
* Returns: (transfer none)
|
40
|
+
*/
|
41
|
+
_GI_TEST_EXTERN
|
42
|
+
gint8
|
43
|
+
everything_const_return_gint8 (void)
|
44
|
+
{
|
45
|
+
return 0;
|
46
|
+
}
|
47
|
+
|
48
|
+
/**
|
49
|
+
* everything_const_return_guint8:
|
50
|
+
*
|
51
|
+
* Undocumented.
|
52
|
+
*
|
53
|
+
* Returns: (transfer none)
|
54
|
+
*/
|
55
|
+
_GI_TEST_EXTERN
|
56
|
+
guint8
|
57
|
+
everything_const_return_guint8 (void)
|
58
|
+
{
|
59
|
+
return 0;
|
60
|
+
}
|
61
|
+
|
62
|
+
/**
|
63
|
+
* everything_const_return_gint16:
|
64
|
+
*
|
65
|
+
* Undocumented.
|
66
|
+
*
|
67
|
+
* Returns: (transfer none)
|
68
|
+
*/
|
69
|
+
_GI_TEST_EXTERN
|
70
|
+
gint16
|
71
|
+
everything_const_return_gint16 (void)
|
72
|
+
{
|
73
|
+
return 0;
|
74
|
+
}
|
75
|
+
|
76
|
+
/**
|
77
|
+
* everything_const_return_guint16:
|
78
|
+
*
|
79
|
+
* Undocumented.
|
80
|
+
*
|
81
|
+
* Returns: (transfer none)
|
82
|
+
*/
|
83
|
+
_GI_TEST_EXTERN
|
84
|
+
guint16
|
85
|
+
everything_const_return_guint16 (void)
|
86
|
+
{
|
87
|
+
return 0;
|
88
|
+
}
|
89
|
+
|
90
|
+
/**
|
91
|
+
* everything_const_return_gint32:
|
92
|
+
*
|
93
|
+
* Undocumented.
|
94
|
+
*
|
95
|
+
* Returns: (transfer none)
|
96
|
+
*/
|
97
|
+
_GI_TEST_EXTERN
|
98
|
+
gint32
|
99
|
+
everything_const_return_gint32 (void)
|
100
|
+
{
|
101
|
+
return 0;
|
102
|
+
}
|
103
|
+
|
104
|
+
/**
|
105
|
+
* everything_const_return_guint32:
|
106
|
+
*
|
107
|
+
* Undocumented.
|
108
|
+
*
|
109
|
+
* Returns: (transfer none)
|
110
|
+
*/
|
111
|
+
_GI_TEST_EXTERN
|
112
|
+
guint32
|
113
|
+
everything_const_return_guint32 (void)
|
114
|
+
{
|
115
|
+
return 0;
|
116
|
+
}
|
117
|
+
|
118
|
+
/**
|
119
|
+
* everything_const_return_gint64:
|
120
|
+
*
|
121
|
+
* Undocumented.
|
122
|
+
*
|
123
|
+
* Returns: (transfer none)
|
124
|
+
*/
|
125
|
+
_GI_TEST_EXTERN
|
126
|
+
gint64
|
127
|
+
everything_const_return_gint64 (void)
|
128
|
+
{
|
129
|
+
return 0;
|
130
|
+
}
|
131
|
+
|
132
|
+
/**
|
133
|
+
* everything_const_return_guint64:
|
134
|
+
*
|
135
|
+
* Undocumented.
|
136
|
+
*
|
137
|
+
* Returns: (transfer none)
|
138
|
+
*/
|
139
|
+
_GI_TEST_EXTERN
|
140
|
+
guint64
|
141
|
+
everything_const_return_guint64 (void)
|
142
|
+
{
|
143
|
+
return 0;
|
144
|
+
}
|
145
|
+
|
146
|
+
/**
|
147
|
+
* everything_const_return_gchar:
|
148
|
+
*
|
149
|
+
* Undocumented.
|
150
|
+
*
|
151
|
+
* Returns: (transfer none)
|
152
|
+
*/
|
153
|
+
_GI_TEST_EXTERN
|
154
|
+
gchar
|
155
|
+
everything_const_return_gchar (void)
|
156
|
+
{
|
157
|
+
return 0;
|
158
|
+
}
|
159
|
+
|
160
|
+
/**
|
161
|
+
* everything_const_return_gshort:
|
162
|
+
*
|
163
|
+
* Undocumented.
|
164
|
+
*
|
165
|
+
* Returns: (transfer none)
|
166
|
+
*/
|
167
|
+
_GI_TEST_EXTERN
|
168
|
+
gshort
|
169
|
+
everything_const_return_gshort (void)
|
170
|
+
{
|
171
|
+
return 0;
|
172
|
+
}
|
173
|
+
|
174
|
+
/**
|
175
|
+
* everything_const_return_gushort:
|
176
|
+
*
|
177
|
+
* Undocumented.
|
178
|
+
*
|
179
|
+
* Returns: (transfer none)
|
180
|
+
*/
|
181
|
+
_GI_TEST_EXTERN
|
182
|
+
gushort
|
183
|
+
everything_const_return_gushort (void)
|
184
|
+
{
|
185
|
+
return 0;
|
186
|
+
}
|
187
|
+
|
188
|
+
/**
|
189
|
+
* everything_const_return_gint:
|
190
|
+
*
|
191
|
+
* Undocumented.
|
192
|
+
*
|
193
|
+
* Returns: (transfer none)
|
194
|
+
*/
|
195
|
+
_GI_TEST_EXTERN
|
196
|
+
gint
|
197
|
+
everything_const_return_gint (void)
|
198
|
+
{
|
199
|
+
return 0;
|
200
|
+
}
|
201
|
+
|
202
|
+
/**
|
203
|
+
* everything_const_return_guint:
|
204
|
+
*
|
205
|
+
* Undocumented.
|
206
|
+
*
|
207
|
+
* Returns: (transfer none)
|
208
|
+
*/
|
209
|
+
_GI_TEST_EXTERN
|
210
|
+
guint
|
211
|
+
everything_const_return_guint (void)
|
212
|
+
{
|
213
|
+
return 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
/**
|
217
|
+
* everything_const_return_glong:
|
218
|
+
*
|
219
|
+
* Undocumented.
|
220
|
+
*
|
221
|
+
* Returns: (transfer none)
|
222
|
+
*/
|
223
|
+
_GI_TEST_EXTERN
|
224
|
+
glong
|
225
|
+
everything_const_return_glong (void)
|
226
|
+
{
|
227
|
+
return 0;
|
228
|
+
}
|
229
|
+
|
230
|
+
/**
|
231
|
+
* everything_const_return_gulong:
|
232
|
+
*
|
233
|
+
* Undocumented.
|
234
|
+
*
|
235
|
+
* Returns: (transfer none)
|
236
|
+
*/
|
237
|
+
_GI_TEST_EXTERN
|
238
|
+
gulong
|
239
|
+
everything_const_return_gulong (void)
|
240
|
+
{
|
241
|
+
return 0;
|
242
|
+
}
|
243
|
+
|
244
|
+
/**
|
245
|
+
* everything_const_return_gsize:
|
246
|
+
*
|
247
|
+
* Undocumented.
|
248
|
+
*
|
249
|
+
* Returns: (transfer none)
|
250
|
+
*/
|
251
|
+
_GI_TEST_EXTERN
|
252
|
+
gsize
|
253
|
+
everything_const_return_gsize (void)
|
254
|
+
{
|
255
|
+
return 0;
|
256
|
+
}
|
257
|
+
|
258
|
+
/**
|
259
|
+
* everything_const_return_gssize:
|
260
|
+
*
|
261
|
+
* Undocumented.
|
262
|
+
*
|
263
|
+
* Returns: (transfer none)
|
264
|
+
*/
|
265
|
+
_GI_TEST_EXTERN
|
266
|
+
gssize
|
267
|
+
everything_const_return_gssize (void)
|
268
|
+
{
|
269
|
+
return 0;
|
270
|
+
}
|
271
|
+
|
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
|
+
/**
|
301
|
+
* everything_const_return_gfloat:
|
302
|
+
*
|
303
|
+
* Undocumented.
|
304
|
+
*
|
305
|
+
* Returns: (transfer none)
|
306
|
+
*/
|
307
|
+
_GI_TEST_EXTERN
|
308
|
+
gfloat
|
309
|
+
everything_const_return_gfloat (void)
|
310
|
+
{
|
311
|
+
return 0;
|
312
|
+
}
|
313
|
+
|
314
|
+
/**
|
315
|
+
* everything_const_return_gdouble:
|
316
|
+
*
|
317
|
+
* Undocumented.
|
318
|
+
*
|
319
|
+
* Returns: (transfer none)
|
320
|
+
*/
|
321
|
+
_GI_TEST_EXTERN
|
322
|
+
gdouble
|
323
|
+
everything_const_return_gdouble (void)
|
324
|
+
{
|
325
|
+
return 0;
|
326
|
+
}
|
327
|
+
|
328
|
+
/**
|
329
|
+
* everything_const_return_gunichar:
|
330
|
+
*
|
331
|
+
* Undocumented.
|
332
|
+
*
|
333
|
+
* Returns: (transfer none)
|
334
|
+
*/
|
335
|
+
_GI_TEST_EXTERN
|
336
|
+
gunichar
|
337
|
+
everything_const_return_gunichar (void)
|
338
|
+
{
|
339
|
+
return 0;
|
340
|
+
}
|
341
|
+
|
342
|
+
/**
|
343
|
+
* everything_const_return_GType:
|
344
|
+
*
|
345
|
+
* Undocumented.
|
346
|
+
*
|
347
|
+
* Returns: (transfer none)
|
348
|
+
*/
|
349
|
+
_GI_TEST_EXTERN
|
350
|
+
GType
|
351
|
+
everything_const_return_GType (void)
|
352
|
+
{
|
353
|
+
return g_object_get_type ();
|
354
|
+
}
|
355
|
+
|
356
|
+
/**
|
357
|
+
* everything_const_return_utf8:
|
358
|
+
*
|
359
|
+
* Undocumented.
|
360
|
+
*
|
361
|
+
* Returns: (transfer none)
|
362
|
+
*/
|
363
|
+
_GI_TEST_EXTERN
|
364
|
+
const gchar*
|
365
|
+
everything_const_return_utf8 (void)
|
366
|
+
{
|
367
|
+
return "";
|
368
|
+
}
|
369
|
+
|
370
|
+
/**
|
371
|
+
* everything_const_return_filename:
|
372
|
+
*
|
373
|
+
* Undocumented.
|
374
|
+
*
|
375
|
+
* Returns: (transfer none)
|
376
|
+
*/
|
377
|
+
_GI_TEST_EXTERN
|
378
|
+
const gchar*
|
379
|
+
everything_const_return_filename (void)
|
380
|
+
{
|
381
|
+
return "";
|
382
|
+
}
|
383
|
+
|
384
|
+
/**
|
385
|
+
* everything_oneparam_gboolean:
|
386
|
+
* @arg0: :
|
387
|
+
*
|
388
|
+
* Undocumented.
|
389
|
+
*
|
390
|
+
* Returns: (transfer none)
|
391
|
+
*/
|
392
|
+
_GI_TEST_EXTERN
|
393
|
+
void
|
394
|
+
everything_oneparam_gboolean (gboolean arg0)
|
395
|
+
{
|
396
|
+
return;
|
397
|
+
}
|
398
|
+
|
399
|
+
/**
|
400
|
+
* everything_oneparam_gint8:
|
401
|
+
* @arg0: :
|
402
|
+
*
|
403
|
+
* Undocumented.
|
404
|
+
*
|
405
|
+
* Returns: (transfer none)
|
406
|
+
*/
|
407
|
+
_GI_TEST_EXTERN
|
408
|
+
void
|
409
|
+
everything_oneparam_gint8 (gint8 arg0)
|
410
|
+
{
|
411
|
+
return;
|
412
|
+
}
|
413
|
+
|
414
|
+
/**
|
415
|
+
* everything_oneparam_guint8:
|
416
|
+
* @arg0: :
|
417
|
+
*
|
418
|
+
* Undocumented.
|
419
|
+
*
|
420
|
+
* Returns: (transfer none)
|
421
|
+
*/
|
422
|
+
_GI_TEST_EXTERN
|
423
|
+
void
|
424
|
+
everything_oneparam_guint8 (guint8 arg0)
|
425
|
+
{
|
426
|
+
return;
|
427
|
+
}
|
428
|
+
|
429
|
+
/**
|
430
|
+
* everything_oneparam_gint16:
|
431
|
+
* @arg0: :
|
432
|
+
*
|
433
|
+
* Undocumented.
|
434
|
+
*
|
435
|
+
* Returns: (transfer none)
|
436
|
+
*/
|
437
|
+
_GI_TEST_EXTERN
|
438
|
+
void
|
439
|
+
everything_oneparam_gint16 (gint16 arg0)
|
440
|
+
{
|
441
|
+
return;
|
442
|
+
}
|
443
|
+
|
444
|
+
/**
|
445
|
+
* everything_oneparam_guint16:
|
446
|
+
* @arg0: :
|
447
|
+
*
|
448
|
+
* Undocumented.
|
449
|
+
*
|
450
|
+
* Returns: (transfer none)
|
451
|
+
*/
|
452
|
+
_GI_TEST_EXTERN
|
453
|
+
void
|
454
|
+
everything_oneparam_guint16 (guint16 arg0)
|
455
|
+
{
|
456
|
+
return;
|
457
|
+
}
|
458
|
+
|
459
|
+
/**
|
460
|
+
* everything_oneparam_gint32:
|
461
|
+
* @arg0: :
|
462
|
+
*
|
463
|
+
* Undocumented.
|
464
|
+
*
|
465
|
+
* Returns: (transfer none)
|
466
|
+
*/
|
467
|
+
_GI_TEST_EXTERN
|
468
|
+
void
|
469
|
+
everything_oneparam_gint32 (gint32 arg0)
|
470
|
+
{
|
471
|
+
return;
|
472
|
+
}
|
473
|
+
|
474
|
+
/**
|
475
|
+
* everything_oneparam_guint32:
|
476
|
+
* @arg0: :
|
477
|
+
*
|
478
|
+
* Undocumented.
|
479
|
+
*
|
480
|
+
* Returns: (transfer none)
|
481
|
+
*/
|
482
|
+
_GI_TEST_EXTERN
|
483
|
+
void
|
484
|
+
everything_oneparam_guint32 (guint32 arg0)
|
485
|
+
{
|
486
|
+
return;
|
487
|
+
}
|
488
|
+
|
489
|
+
/**
|
490
|
+
* everything_oneparam_gint64:
|
491
|
+
* @arg0: :
|
492
|
+
*
|
493
|
+
* Undocumented.
|
494
|
+
*
|
495
|
+
* Returns: (transfer none)
|
496
|
+
*/
|
497
|
+
_GI_TEST_EXTERN
|
498
|
+
void
|
499
|
+
everything_oneparam_gint64 (gint64 arg0)
|
500
|
+
{
|
501
|
+
return;
|
502
|
+
}
|
503
|
+
|
504
|
+
/**
|
505
|
+
* everything_oneparam_guint64:
|
506
|
+
* @arg0: :
|
507
|
+
*
|
508
|
+
* Undocumented.
|
509
|
+
*
|
510
|
+
* Returns: (transfer none)
|
511
|
+
*/
|
512
|
+
_GI_TEST_EXTERN
|
513
|
+
void
|
514
|
+
everything_oneparam_guint64 (guint64 arg0)
|
515
|
+
{
|
516
|
+
return;
|
517
|
+
}
|
518
|
+
|
519
|
+
/**
|
520
|
+
* everything_oneparam_gchar:
|
521
|
+
* @arg0: :
|
522
|
+
*
|
523
|
+
* Undocumented.
|
524
|
+
*
|
525
|
+
* Returns: (transfer none)
|
526
|
+
*/
|
527
|
+
_GI_TEST_EXTERN
|
528
|
+
void
|
529
|
+
everything_oneparam_gchar (gchar arg0)
|
530
|
+
{
|
531
|
+
return;
|
532
|
+
}
|
533
|
+
|
534
|
+
/**
|
535
|
+
* everything_oneparam_gshort:
|
536
|
+
* @arg0: :
|
537
|
+
*
|
538
|
+
* Undocumented.
|
539
|
+
*
|
540
|
+
* Returns: (transfer none)
|
541
|
+
*/
|
542
|
+
_GI_TEST_EXTERN
|
543
|
+
void
|
544
|
+
everything_oneparam_gshort (gshort arg0)
|
545
|
+
{
|
546
|
+
return;
|
547
|
+
}
|
548
|
+
|
549
|
+
/**
|
550
|
+
* everything_oneparam_gushort:
|
551
|
+
* @arg0: :
|
552
|
+
*
|
553
|
+
* Undocumented.
|
554
|
+
*
|
555
|
+
* Returns: (transfer none)
|
556
|
+
*/
|
557
|
+
_GI_TEST_EXTERN
|
558
|
+
void
|
559
|
+
everything_oneparam_gushort (gushort arg0)
|
560
|
+
{
|
561
|
+
return;
|
562
|
+
}
|
563
|
+
|
564
|
+
/**
|
565
|
+
* everything_oneparam_gint:
|
566
|
+
* @arg0: :
|
567
|
+
*
|
568
|
+
* Undocumented.
|
569
|
+
*
|
570
|
+
* Returns: (transfer none)
|
571
|
+
*/
|
572
|
+
_GI_TEST_EXTERN
|
573
|
+
void
|
574
|
+
everything_oneparam_gint (gint arg0)
|
575
|
+
{
|
576
|
+
return;
|
577
|
+
}
|
578
|
+
|
579
|
+
/**
|
580
|
+
* everything_oneparam_guint:
|
581
|
+
* @arg0: :
|
582
|
+
*
|
583
|
+
* Undocumented.
|
584
|
+
*
|
585
|
+
* Returns: (transfer none)
|
586
|
+
*/
|
587
|
+
_GI_TEST_EXTERN
|
588
|
+
void
|
589
|
+
everything_oneparam_guint (guint arg0)
|
590
|
+
{
|
591
|
+
return;
|
592
|
+
}
|
593
|
+
|
594
|
+
/**
|
595
|
+
* everything_oneparam_glong:
|
596
|
+
* @arg0: :
|
597
|
+
*
|
598
|
+
* Undocumented.
|
599
|
+
*
|
600
|
+
* Returns: (transfer none)
|
601
|
+
*/
|
602
|
+
_GI_TEST_EXTERN
|
603
|
+
void
|
604
|
+
everything_oneparam_glong (glong arg0)
|
605
|
+
{
|
606
|
+
return;
|
607
|
+
}
|
608
|
+
|
609
|
+
/**
|
610
|
+
* everything_oneparam_gulong:
|
611
|
+
* @arg0: :
|
612
|
+
*
|
613
|
+
* Undocumented.
|
614
|
+
*
|
615
|
+
* Returns: (transfer none)
|
616
|
+
*/
|
617
|
+
_GI_TEST_EXTERN
|
618
|
+
void
|
619
|
+
everything_oneparam_gulong (gulong arg0)
|
620
|
+
{
|
621
|
+
return;
|
622
|
+
}
|
623
|
+
|
624
|
+
/**
|
625
|
+
* everything_oneparam_gsize:
|
626
|
+
* @arg0: :
|
627
|
+
*
|
628
|
+
* Undocumented.
|
629
|
+
*
|
630
|
+
* Returns: (transfer none)
|
631
|
+
*/
|
632
|
+
_GI_TEST_EXTERN
|
633
|
+
void
|
634
|
+
everything_oneparam_gsize (gsize arg0)
|
635
|
+
{
|
636
|
+
return;
|
637
|
+
}
|
638
|
+
|
639
|
+
/**
|
640
|
+
* everything_oneparam_gssize:
|
641
|
+
* @arg0: :
|
642
|
+
*
|
643
|
+
* Undocumented.
|
644
|
+
*
|
645
|
+
* Returns: (transfer none)
|
646
|
+
*/
|
647
|
+
_GI_TEST_EXTERN
|
648
|
+
void
|
649
|
+
everything_oneparam_gssize (gssize arg0)
|
650
|
+
{
|
651
|
+
return;
|
652
|
+
}
|
653
|
+
|
654
|
+
/**
|
655
|
+
* everything_oneparam_gintptr:
|
656
|
+
* @arg0: :
|
657
|
+
*
|
658
|
+
* Undocumented.
|
659
|
+
*
|
660
|
+
* Returns: (transfer none)
|
661
|
+
*/
|
662
|
+
_GI_TEST_EXTERN
|
663
|
+
void
|
664
|
+
everything_oneparam_gintptr (gintptr arg0)
|
665
|
+
{
|
666
|
+
return;
|
667
|
+
}
|
668
|
+
|
669
|
+
/**
|
670
|
+
* everything_oneparam_guintptr:
|
671
|
+
* @arg0: :
|
672
|
+
*
|
673
|
+
* Undocumented.
|
674
|
+
*
|
675
|
+
* Returns: (transfer none)
|
676
|
+
*/
|
677
|
+
_GI_TEST_EXTERN
|
678
|
+
void
|
679
|
+
everything_oneparam_guintptr (guintptr arg0)
|
680
|
+
{
|
681
|
+
return;
|
682
|
+
}
|
683
|
+
|
684
|
+
/**
|
685
|
+
* everything_oneparam_gfloat:
|
686
|
+
* @arg0: :
|
687
|
+
*
|
688
|
+
* Undocumented.
|
689
|
+
*
|
690
|
+
* Returns: (transfer none)
|
691
|
+
*/
|
692
|
+
_GI_TEST_EXTERN
|
693
|
+
void
|
694
|
+
everything_oneparam_gfloat (gfloat arg0)
|
695
|
+
{
|
696
|
+
return;
|
697
|
+
}
|
698
|
+
|
699
|
+
/**
|
700
|
+
* everything_oneparam_gdouble:
|
701
|
+
* @arg0: :
|
702
|
+
*
|
703
|
+
* Undocumented.
|
704
|
+
*
|
705
|
+
* Returns: (transfer none)
|
706
|
+
*/
|
707
|
+
_GI_TEST_EXTERN
|
708
|
+
void
|
709
|
+
everything_oneparam_gdouble (gdouble arg0)
|
710
|
+
{
|
711
|
+
return;
|
712
|
+
}
|
713
|
+
|
714
|
+
/**
|
715
|
+
* everything_oneparam_gunichar:
|
716
|
+
* @arg0: :
|
717
|
+
*
|
718
|
+
* Undocumented.
|
719
|
+
*
|
720
|
+
* Returns: (transfer none)
|
721
|
+
*/
|
722
|
+
_GI_TEST_EXTERN
|
723
|
+
void
|
724
|
+
everything_oneparam_gunichar (gunichar arg0)
|
725
|
+
{
|
726
|
+
return;
|
727
|
+
}
|
728
|
+
|
729
|
+
/**
|
730
|
+
* everything_oneparam_GType:
|
731
|
+
* @arg0: :
|
732
|
+
*
|
733
|
+
* Undocumented.
|
734
|
+
*
|
735
|
+
* Returns: (transfer none)
|
736
|
+
*/
|
737
|
+
_GI_TEST_EXTERN
|
738
|
+
void
|
739
|
+
everything_oneparam_GType (GType arg0)
|
740
|
+
{
|
741
|
+
return;
|
742
|
+
}
|
743
|
+
|
744
|
+
/**
|
745
|
+
* everything_oneparam_utf8:
|
746
|
+
* @arg0: :
|
747
|
+
*
|
748
|
+
* Undocumented.
|
749
|
+
*
|
750
|
+
* Returns: (transfer none)
|
751
|
+
*/
|
752
|
+
_GI_TEST_EXTERN
|
753
|
+
void
|
754
|
+
everything_oneparam_utf8 (const gchar* arg0)
|
755
|
+
{
|
756
|
+
return;
|
757
|
+
}
|
758
|
+
|
759
|
+
/**
|
760
|
+
* everything_oneparam_filename:
|
761
|
+
* @arg0: :
|
762
|
+
*
|
763
|
+
* Undocumented.
|
764
|
+
*
|
765
|
+
* Returns: (transfer none)
|
766
|
+
*/
|
767
|
+
_GI_TEST_EXTERN
|
768
|
+
void
|
769
|
+
everything_oneparam_filename (const gchar* arg0)
|
770
|
+
{
|
771
|
+
return;
|
772
|
+
}
|
773
|
+
|
774
|
+
/**
|
775
|
+
* everything_one_outparam_gboolean:
|
776
|
+
* @arg0: (out) (transfer none):
|
777
|
+
*
|
778
|
+
* Undocumented.
|
779
|
+
*
|
780
|
+
* Returns: (transfer none)
|
781
|
+
*/
|
782
|
+
_GI_TEST_EXTERN
|
783
|
+
void
|
784
|
+
everything_one_outparam_gboolean (gboolean* arg0)
|
785
|
+
{
|
786
|
+
*arg0 = 0;
|
787
|
+
return;
|
788
|
+
}
|
789
|
+
|
790
|
+
/**
|
791
|
+
* everything_one_outparam_gint8:
|
792
|
+
* @arg0: (out) (transfer none):
|
793
|
+
*
|
794
|
+
* Undocumented.
|
795
|
+
*
|
796
|
+
* Returns: (transfer none)
|
797
|
+
*/
|
798
|
+
_GI_TEST_EXTERN
|
799
|
+
void
|
800
|
+
everything_one_outparam_gint8 (gint8* arg0)
|
801
|
+
{
|
802
|
+
*arg0 = 0;
|
803
|
+
return;
|
804
|
+
}
|
805
|
+
|
806
|
+
/**
|
807
|
+
* everything_one_outparam_guint8:
|
808
|
+
* @arg0: (out) (transfer none):
|
809
|
+
*
|
810
|
+
* Undocumented.
|
811
|
+
*
|
812
|
+
* Returns: (transfer none)
|
813
|
+
*/
|
814
|
+
_GI_TEST_EXTERN
|
815
|
+
void
|
816
|
+
everything_one_outparam_guint8 (guint8* arg0)
|
817
|
+
{
|
818
|
+
*arg0 = 0;
|
819
|
+
return;
|
820
|
+
}
|
821
|
+
|
822
|
+
/**
|
823
|
+
* everything_one_outparam_gint16:
|
824
|
+
* @arg0: (out) (transfer none):
|
825
|
+
*
|
826
|
+
* Undocumented.
|
827
|
+
*
|
828
|
+
* Returns: (transfer none)
|
829
|
+
*/
|
830
|
+
_GI_TEST_EXTERN
|
831
|
+
void
|
832
|
+
everything_one_outparam_gint16 (gint16* arg0)
|
833
|
+
{
|
834
|
+
*arg0 = 0;
|
835
|
+
return;
|
836
|
+
}
|
837
|
+
|
838
|
+
/**
|
839
|
+
* everything_one_outparam_guint16:
|
840
|
+
* @arg0: (out) (transfer none):
|
841
|
+
*
|
842
|
+
* Undocumented.
|
843
|
+
*
|
844
|
+
* Returns: (transfer none)
|
845
|
+
*/
|
846
|
+
_GI_TEST_EXTERN
|
847
|
+
void
|
848
|
+
everything_one_outparam_guint16 (guint16* arg0)
|
849
|
+
{
|
850
|
+
*arg0 = 0;
|
851
|
+
return;
|
852
|
+
}
|
853
|
+
|
854
|
+
/**
|
855
|
+
* everything_one_outparam_gint32:
|
856
|
+
* @arg0: (out) (transfer none):
|
857
|
+
*
|
858
|
+
* Undocumented.
|
859
|
+
*
|
860
|
+
* Returns: (transfer none)
|
861
|
+
*/
|
862
|
+
_GI_TEST_EXTERN
|
863
|
+
void
|
864
|
+
everything_one_outparam_gint32 (gint32* arg0)
|
865
|
+
{
|
866
|
+
*arg0 = 0;
|
867
|
+
return;
|
868
|
+
}
|
869
|
+
|
870
|
+
/**
|
871
|
+
* everything_one_outparam_guint32:
|
872
|
+
* @arg0: (out) (transfer none):
|
873
|
+
*
|
874
|
+
* Undocumented.
|
875
|
+
*
|
876
|
+
* Returns: (transfer none)
|
877
|
+
*/
|
878
|
+
_GI_TEST_EXTERN
|
879
|
+
void
|
880
|
+
everything_one_outparam_guint32 (guint32* arg0)
|
881
|
+
{
|
882
|
+
*arg0 = 0;
|
883
|
+
return;
|
884
|
+
}
|
885
|
+
|
886
|
+
/**
|
887
|
+
* everything_one_outparam_gint64:
|
888
|
+
* @arg0: (out) (transfer none):
|
889
|
+
*
|
890
|
+
* Undocumented.
|
891
|
+
*
|
892
|
+
* Returns: (transfer none)
|
893
|
+
*/
|
894
|
+
_GI_TEST_EXTERN
|
895
|
+
void
|
896
|
+
everything_one_outparam_gint64 (gint64* arg0)
|
897
|
+
{
|
898
|
+
*arg0 = 0;
|
899
|
+
return;
|
900
|
+
}
|
901
|
+
|
902
|
+
/**
|
903
|
+
* everything_one_outparam_guint64:
|
904
|
+
* @arg0: (out) (transfer none):
|
905
|
+
*
|
906
|
+
* Undocumented.
|
907
|
+
*
|
908
|
+
* Returns: (transfer none)
|
909
|
+
*/
|
910
|
+
_GI_TEST_EXTERN
|
911
|
+
void
|
912
|
+
everything_one_outparam_guint64 (guint64* arg0)
|
913
|
+
{
|
914
|
+
*arg0 = 0;
|
915
|
+
return;
|
916
|
+
}
|
917
|
+
|
918
|
+
/**
|
919
|
+
* everything_one_outparam_gchar:
|
920
|
+
* @arg0: (out) (transfer none):
|
921
|
+
*
|
922
|
+
* Undocumented.
|
923
|
+
*
|
924
|
+
* Returns: (transfer none)
|
925
|
+
*/
|
926
|
+
_GI_TEST_EXTERN
|
927
|
+
void
|
928
|
+
everything_one_outparam_gchar (gchar* arg0)
|
929
|
+
{
|
930
|
+
*arg0 = 0;
|
931
|
+
return;
|
932
|
+
}
|
933
|
+
|
934
|
+
/**
|
935
|
+
* everything_one_outparam_gshort:
|
936
|
+
* @arg0: (out) (transfer none):
|
937
|
+
*
|
938
|
+
* Undocumented.
|
939
|
+
*
|
940
|
+
* Returns: (transfer none)
|
941
|
+
*/
|
942
|
+
_GI_TEST_EXTERN
|
943
|
+
void
|
944
|
+
everything_one_outparam_gshort (gshort* arg0)
|
945
|
+
{
|
946
|
+
*arg0 = 0;
|
947
|
+
return;
|
948
|
+
}
|
949
|
+
|
950
|
+
/**
|
951
|
+
* everything_one_outparam_gushort:
|
952
|
+
* @arg0: (out) (transfer none):
|
953
|
+
*
|
954
|
+
* Undocumented.
|
955
|
+
*
|
956
|
+
* Returns: (transfer none)
|
957
|
+
*/
|
958
|
+
_GI_TEST_EXTERN
|
959
|
+
void
|
960
|
+
everything_one_outparam_gushort (gushort* arg0)
|
961
|
+
{
|
962
|
+
*arg0 = 0;
|
963
|
+
return;
|
964
|
+
}
|
965
|
+
|
966
|
+
/**
|
967
|
+
* everything_one_outparam_gint:
|
968
|
+
* @arg0: (out) (transfer none):
|
969
|
+
*
|
970
|
+
* Undocumented.
|
971
|
+
*
|
972
|
+
* Returns: (transfer none)
|
973
|
+
*/
|
974
|
+
_GI_TEST_EXTERN
|
975
|
+
void
|
976
|
+
everything_one_outparam_gint (gint* arg0)
|
977
|
+
{
|
978
|
+
*arg0 = 0;
|
979
|
+
return;
|
980
|
+
}
|
981
|
+
|
982
|
+
/**
|
983
|
+
* everything_one_outparam_guint:
|
984
|
+
* @arg0: (out) (transfer none):
|
985
|
+
*
|
986
|
+
* Undocumented.
|
987
|
+
*
|
988
|
+
* Returns: (transfer none)
|
989
|
+
*/
|
990
|
+
_GI_TEST_EXTERN
|
991
|
+
void
|
992
|
+
everything_one_outparam_guint (guint* arg0)
|
993
|
+
{
|
994
|
+
*arg0 = 0;
|
995
|
+
return;
|
996
|
+
}
|
997
|
+
|
998
|
+
/**
|
999
|
+
* everything_one_outparam_glong:
|
1000
|
+
* @arg0: (out) (transfer none):
|
1001
|
+
*
|
1002
|
+
* Undocumented.
|
1003
|
+
*
|
1004
|
+
* Returns: (transfer none)
|
1005
|
+
*/
|
1006
|
+
_GI_TEST_EXTERN
|
1007
|
+
void
|
1008
|
+
everything_one_outparam_glong (glong* arg0)
|
1009
|
+
{
|
1010
|
+
*arg0 = 0;
|
1011
|
+
return;
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
/**
|
1015
|
+
* everything_one_outparam_gulong:
|
1016
|
+
* @arg0: (out) (transfer none):
|
1017
|
+
*
|
1018
|
+
* Undocumented.
|
1019
|
+
*
|
1020
|
+
* Returns: (transfer none)
|
1021
|
+
*/
|
1022
|
+
_GI_TEST_EXTERN
|
1023
|
+
void
|
1024
|
+
everything_one_outparam_gulong (gulong* arg0)
|
1025
|
+
{
|
1026
|
+
*arg0 = 0;
|
1027
|
+
return;
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
/**
|
1031
|
+
* everything_one_outparam_gsize:
|
1032
|
+
* @arg0: (out) (transfer none):
|
1033
|
+
*
|
1034
|
+
* Undocumented.
|
1035
|
+
*
|
1036
|
+
* Returns: (transfer none)
|
1037
|
+
*/
|
1038
|
+
_GI_TEST_EXTERN
|
1039
|
+
void
|
1040
|
+
everything_one_outparam_gsize (gsize* arg0)
|
1041
|
+
{
|
1042
|
+
*arg0 = 0;
|
1043
|
+
return;
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
/**
|
1047
|
+
* everything_one_outparam_gssize:
|
1048
|
+
* @arg0: (out) (transfer none):
|
1049
|
+
*
|
1050
|
+
* Undocumented.
|
1051
|
+
*
|
1052
|
+
* Returns: (transfer none)
|
1053
|
+
*/
|
1054
|
+
_GI_TEST_EXTERN
|
1055
|
+
void
|
1056
|
+
everything_one_outparam_gssize (gssize* arg0)
|
1057
|
+
{
|
1058
|
+
*arg0 = 0;
|
1059
|
+
return;
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
/**
|
1063
|
+
* everything_one_outparam_gintptr:
|
1064
|
+
* @arg0: (out) (transfer none):
|
1065
|
+
*
|
1066
|
+
* Undocumented.
|
1067
|
+
*
|
1068
|
+
* Returns: (transfer none)
|
1069
|
+
*/
|
1070
|
+
_GI_TEST_EXTERN
|
1071
|
+
void
|
1072
|
+
everything_one_outparam_gintptr (gintptr* arg0)
|
1073
|
+
{
|
1074
|
+
*arg0 = 0;
|
1075
|
+
return;
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
/**
|
1079
|
+
* everything_one_outparam_guintptr:
|
1080
|
+
* @arg0: (out) (transfer none):
|
1081
|
+
*
|
1082
|
+
* Undocumented.
|
1083
|
+
*
|
1084
|
+
* Returns: (transfer none)
|
1085
|
+
*/
|
1086
|
+
_GI_TEST_EXTERN
|
1087
|
+
void
|
1088
|
+
everything_one_outparam_guintptr (guintptr* arg0)
|
1089
|
+
{
|
1090
|
+
*arg0 = 0;
|
1091
|
+
return;
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
/**
|
1095
|
+
* everything_one_outparam_gfloat:
|
1096
|
+
* @arg0: (out) (transfer none):
|
1097
|
+
*
|
1098
|
+
* Undocumented.
|
1099
|
+
*
|
1100
|
+
* Returns: (transfer none)
|
1101
|
+
*/
|
1102
|
+
_GI_TEST_EXTERN
|
1103
|
+
void
|
1104
|
+
everything_one_outparam_gfloat (gfloat* arg0)
|
1105
|
+
{
|
1106
|
+
*arg0 = 0;
|
1107
|
+
return;
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
/**
|
1111
|
+
* everything_one_outparam_gdouble:
|
1112
|
+
* @arg0: (out) (transfer none):
|
1113
|
+
*
|
1114
|
+
* Undocumented.
|
1115
|
+
*
|
1116
|
+
* Returns: (transfer none)
|
1117
|
+
*/
|
1118
|
+
_GI_TEST_EXTERN
|
1119
|
+
void
|
1120
|
+
everything_one_outparam_gdouble (gdouble* arg0)
|
1121
|
+
{
|
1122
|
+
*arg0 = 0;
|
1123
|
+
return;
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
/**
|
1127
|
+
* everything_one_outparam_gunichar:
|
1128
|
+
* @arg0: (out) (transfer none):
|
1129
|
+
*
|
1130
|
+
* Undocumented.
|
1131
|
+
*
|
1132
|
+
* Returns: (transfer none)
|
1133
|
+
*/
|
1134
|
+
_GI_TEST_EXTERN
|
1135
|
+
void
|
1136
|
+
everything_one_outparam_gunichar (gunichar* arg0)
|
1137
|
+
{
|
1138
|
+
*arg0 = 0;
|
1139
|
+
return;
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
/**
|
1143
|
+
* everything_one_outparam_GType:
|
1144
|
+
* @arg0: (out) (transfer none):
|
1145
|
+
*
|
1146
|
+
* Undocumented.
|
1147
|
+
*
|
1148
|
+
* Returns: (transfer none)
|
1149
|
+
*/
|
1150
|
+
_GI_TEST_EXTERN
|
1151
|
+
void
|
1152
|
+
everything_one_outparam_GType (GType* arg0)
|
1153
|
+
{
|
1154
|
+
*arg0 = 0;
|
1155
|
+
return;
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
/**
|
1159
|
+
* everything_one_outparam_utf8:
|
1160
|
+
* @arg0: (out) (transfer none):
|
1161
|
+
*
|
1162
|
+
* Undocumented.
|
1163
|
+
*
|
1164
|
+
* Returns: (transfer none)
|
1165
|
+
*/
|
1166
|
+
_GI_TEST_EXTERN
|
1167
|
+
void
|
1168
|
+
everything_one_outparam_utf8 (const gchar** arg0)
|
1169
|
+
{
|
1170
|
+
*arg0 = 0;
|
1171
|
+
return;
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
/**
|
1175
|
+
* everything_one_outparam_filename:
|
1176
|
+
* @arg0: (out) (transfer none):
|
1177
|
+
*
|
1178
|
+
* Undocumented.
|
1179
|
+
*
|
1180
|
+
* Returns: (transfer none)
|
1181
|
+
*/
|
1182
|
+
_GI_TEST_EXTERN
|
1183
|
+
void
|
1184
|
+
everything_one_outparam_filename (const gchar** arg0)
|
1185
|
+
{
|
1186
|
+
*arg0 = 0;
|
1187
|
+
return;
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
/**
|
1191
|
+
* everything_passthrough_one_gboolean:
|
1192
|
+
* @arg0: :
|
1193
|
+
*
|
1194
|
+
* Undocumented.
|
1195
|
+
*
|
1196
|
+
* Returns: (transfer none)
|
1197
|
+
*/
|
1198
|
+
_GI_TEST_EXTERN
|
1199
|
+
gboolean
|
1200
|
+
everything_passthrough_one_gboolean (gboolean arg0)
|
1201
|
+
{
|
1202
|
+
return arg0;
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
/**
|
1206
|
+
* everything_passthrough_one_gint8:
|
1207
|
+
* @arg0: :
|
1208
|
+
*
|
1209
|
+
* Undocumented.
|
1210
|
+
*
|
1211
|
+
* Returns: (transfer none)
|
1212
|
+
*/
|
1213
|
+
_GI_TEST_EXTERN
|
1214
|
+
gint8
|
1215
|
+
everything_passthrough_one_gint8 (gint8 arg0)
|
1216
|
+
{
|
1217
|
+
return arg0;
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
/**
|
1221
|
+
* everything_passthrough_one_guint8:
|
1222
|
+
* @arg0: :
|
1223
|
+
*
|
1224
|
+
* Undocumented.
|
1225
|
+
*
|
1226
|
+
* Returns: (transfer none)
|
1227
|
+
*/
|
1228
|
+
_GI_TEST_EXTERN
|
1229
|
+
guint8
|
1230
|
+
everything_passthrough_one_guint8 (guint8 arg0)
|
1231
|
+
{
|
1232
|
+
return arg0;
|
1233
|
+
}
|
1234
|
+
|
1235
|
+
/**
|
1236
|
+
* everything_passthrough_one_gint16:
|
1237
|
+
* @arg0: :
|
1238
|
+
*
|
1239
|
+
* Undocumented.
|
1240
|
+
*
|
1241
|
+
* Returns: (transfer none)
|
1242
|
+
*/
|
1243
|
+
_GI_TEST_EXTERN
|
1244
|
+
gint16
|
1245
|
+
everything_passthrough_one_gint16 (gint16 arg0)
|
1246
|
+
{
|
1247
|
+
return arg0;
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
/**
|
1251
|
+
* everything_passthrough_one_guint16:
|
1252
|
+
* @arg0: :
|
1253
|
+
*
|
1254
|
+
* Undocumented.
|
1255
|
+
*
|
1256
|
+
* Returns: (transfer none)
|
1257
|
+
*/
|
1258
|
+
_GI_TEST_EXTERN
|
1259
|
+
guint16
|
1260
|
+
everything_passthrough_one_guint16 (guint16 arg0)
|
1261
|
+
{
|
1262
|
+
return arg0;
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
/**
|
1266
|
+
* everything_passthrough_one_gint32:
|
1267
|
+
* @arg0: :
|
1268
|
+
*
|
1269
|
+
* Undocumented.
|
1270
|
+
*
|
1271
|
+
* Returns: (transfer none)
|
1272
|
+
*/
|
1273
|
+
_GI_TEST_EXTERN
|
1274
|
+
gint32
|
1275
|
+
everything_passthrough_one_gint32 (gint32 arg0)
|
1276
|
+
{
|
1277
|
+
return arg0;
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
/**
|
1281
|
+
* everything_passthrough_one_guint32:
|
1282
|
+
* @arg0: :
|
1283
|
+
*
|
1284
|
+
* Undocumented.
|
1285
|
+
*
|
1286
|
+
* Returns: (transfer none)
|
1287
|
+
*/
|
1288
|
+
_GI_TEST_EXTERN
|
1289
|
+
guint32
|
1290
|
+
everything_passthrough_one_guint32 (guint32 arg0)
|
1291
|
+
{
|
1292
|
+
return arg0;
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
/**
|
1296
|
+
* everything_passthrough_one_gint64:
|
1297
|
+
* @arg0: :
|
1298
|
+
*
|
1299
|
+
* Undocumented.
|
1300
|
+
*
|
1301
|
+
* Returns: (transfer none)
|
1302
|
+
*/
|
1303
|
+
_GI_TEST_EXTERN
|
1304
|
+
gint64
|
1305
|
+
everything_passthrough_one_gint64 (gint64 arg0)
|
1306
|
+
{
|
1307
|
+
return arg0;
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
/**
|
1311
|
+
* everything_passthrough_one_guint64:
|
1312
|
+
* @arg0: :
|
1313
|
+
*
|
1314
|
+
* Undocumented.
|
1315
|
+
*
|
1316
|
+
* Returns: (transfer none)
|
1317
|
+
*/
|
1318
|
+
_GI_TEST_EXTERN
|
1319
|
+
guint64
|
1320
|
+
everything_passthrough_one_guint64 (guint64 arg0)
|
1321
|
+
{
|
1322
|
+
return arg0;
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
/**
|
1326
|
+
* everything_passthrough_one_gchar:
|
1327
|
+
* @arg0: :
|
1328
|
+
*
|
1329
|
+
* Undocumented.
|
1330
|
+
*
|
1331
|
+
* Returns: (transfer none)
|
1332
|
+
*/
|
1333
|
+
_GI_TEST_EXTERN
|
1334
|
+
gchar
|
1335
|
+
everything_passthrough_one_gchar (gchar arg0)
|
1336
|
+
{
|
1337
|
+
return arg0;
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
/**
|
1341
|
+
* everything_passthrough_one_gshort:
|
1342
|
+
* @arg0: :
|
1343
|
+
*
|
1344
|
+
* Undocumented.
|
1345
|
+
*
|
1346
|
+
* Returns: (transfer none)
|
1347
|
+
*/
|
1348
|
+
_GI_TEST_EXTERN
|
1349
|
+
gshort
|
1350
|
+
everything_passthrough_one_gshort (gshort arg0)
|
1351
|
+
{
|
1352
|
+
return arg0;
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
/**
|
1356
|
+
* everything_passthrough_one_gushort:
|
1357
|
+
* @arg0: :
|
1358
|
+
*
|
1359
|
+
* Undocumented.
|
1360
|
+
*
|
1361
|
+
* Returns: (transfer none)
|
1362
|
+
*/
|
1363
|
+
_GI_TEST_EXTERN
|
1364
|
+
gushort
|
1365
|
+
everything_passthrough_one_gushort (gushort arg0)
|
1366
|
+
{
|
1367
|
+
return arg0;
|
1368
|
+
}
|
1369
|
+
|
1370
|
+
/**
|
1371
|
+
* everything_passthrough_one_gint:
|
1372
|
+
* @arg0: :
|
1373
|
+
*
|
1374
|
+
* Undocumented.
|
1375
|
+
*
|
1376
|
+
* Returns: (transfer none)
|
1377
|
+
*/
|
1378
|
+
_GI_TEST_EXTERN
|
1379
|
+
gint
|
1380
|
+
everything_passthrough_one_gint (gint arg0)
|
1381
|
+
{
|
1382
|
+
return arg0;
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
/**
|
1386
|
+
* everything_passthrough_one_guint:
|
1387
|
+
* @arg0: :
|
1388
|
+
*
|
1389
|
+
* Undocumented.
|
1390
|
+
*
|
1391
|
+
* Returns: (transfer none)
|
1392
|
+
*/
|
1393
|
+
_GI_TEST_EXTERN
|
1394
|
+
guint
|
1395
|
+
everything_passthrough_one_guint (guint arg0)
|
1396
|
+
{
|
1397
|
+
return arg0;
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
/**
|
1401
|
+
* everything_passthrough_one_glong:
|
1402
|
+
* @arg0: :
|
1403
|
+
*
|
1404
|
+
* Undocumented.
|
1405
|
+
*
|
1406
|
+
* Returns: (transfer none)
|
1407
|
+
*/
|
1408
|
+
_GI_TEST_EXTERN
|
1409
|
+
glong
|
1410
|
+
everything_passthrough_one_glong (glong arg0)
|
1411
|
+
{
|
1412
|
+
return arg0;
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
/**
|
1416
|
+
* everything_passthrough_one_gulong:
|
1417
|
+
* @arg0: :
|
1418
|
+
*
|
1419
|
+
* Undocumented.
|
1420
|
+
*
|
1421
|
+
* Returns: (transfer none)
|
1422
|
+
*/
|
1423
|
+
_GI_TEST_EXTERN
|
1424
|
+
gulong
|
1425
|
+
everything_passthrough_one_gulong (gulong arg0)
|
1426
|
+
{
|
1427
|
+
return arg0;
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
/**
|
1431
|
+
* everything_passthrough_one_gsize:
|
1432
|
+
* @arg0: :
|
1433
|
+
*
|
1434
|
+
* Undocumented.
|
1435
|
+
*
|
1436
|
+
* Returns: (transfer none)
|
1437
|
+
*/
|
1438
|
+
_GI_TEST_EXTERN
|
1439
|
+
gsize
|
1440
|
+
everything_passthrough_one_gsize (gsize arg0)
|
1441
|
+
{
|
1442
|
+
return arg0;
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
/**
|
1446
|
+
* everything_passthrough_one_gssize:
|
1447
|
+
* @arg0: :
|
1448
|
+
*
|
1449
|
+
* Undocumented.
|
1450
|
+
*
|
1451
|
+
* Returns: (transfer none)
|
1452
|
+
*/
|
1453
|
+
_GI_TEST_EXTERN
|
1454
|
+
gssize
|
1455
|
+
everything_passthrough_one_gssize (gssize arg0)
|
1456
|
+
{
|
1457
|
+
return arg0;
|
1458
|
+
}
|
1459
|
+
|
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
|
+
/**
|
1491
|
+
* everything_passthrough_one_gfloat:
|
1492
|
+
* @arg0: :
|
1493
|
+
*
|
1494
|
+
* Undocumented.
|
1495
|
+
*
|
1496
|
+
* Returns: (transfer none)
|
1497
|
+
*/
|
1498
|
+
_GI_TEST_EXTERN
|
1499
|
+
gfloat
|
1500
|
+
everything_passthrough_one_gfloat (gfloat arg0)
|
1501
|
+
{
|
1502
|
+
return arg0;
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
/**
|
1506
|
+
* everything_passthrough_one_gdouble:
|
1507
|
+
* @arg0: :
|
1508
|
+
*
|
1509
|
+
* Undocumented.
|
1510
|
+
*
|
1511
|
+
* Returns: (transfer none)
|
1512
|
+
*/
|
1513
|
+
_GI_TEST_EXTERN
|
1514
|
+
gdouble
|
1515
|
+
everything_passthrough_one_gdouble (gdouble arg0)
|
1516
|
+
{
|
1517
|
+
return arg0;
|
1518
|
+
}
|
1519
|
+
|
1520
|
+
/**
|
1521
|
+
* everything_passthrough_one_gunichar:
|
1522
|
+
* @arg0: :
|
1523
|
+
*
|
1524
|
+
* Undocumented.
|
1525
|
+
*
|
1526
|
+
* Returns: (transfer none)
|
1527
|
+
*/
|
1528
|
+
_GI_TEST_EXTERN
|
1529
|
+
gunichar
|
1530
|
+
everything_passthrough_one_gunichar (gunichar arg0)
|
1531
|
+
{
|
1532
|
+
return arg0;
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
/**
|
1536
|
+
* everything_passthrough_one_GType:
|
1537
|
+
* @arg0: :
|
1538
|
+
*
|
1539
|
+
* Undocumented.
|
1540
|
+
*
|
1541
|
+
* Returns: (transfer none)
|
1542
|
+
*/
|
1543
|
+
_GI_TEST_EXTERN
|
1544
|
+
GType
|
1545
|
+
everything_passthrough_one_GType (GType arg0)
|
1546
|
+
{
|
1547
|
+
return arg0;
|
1548
|
+
}
|
1549
|
+
|
1550
|
+
/**
|
1551
|
+
* everything_passthrough_one_utf8:
|
1552
|
+
* @arg0: :
|
1553
|
+
*
|
1554
|
+
* Undocumented.
|
1555
|
+
*
|
1556
|
+
* Returns: (transfer none)
|
1557
|
+
*/
|
1558
|
+
_GI_TEST_EXTERN
|
1559
|
+
const gchar*
|
1560
|
+
everything_passthrough_one_utf8 (const gchar* arg0)
|
1561
|
+
{
|
1562
|
+
return arg0;
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
/**
|
1566
|
+
* everything_passthrough_one_filename:
|
1567
|
+
* @arg0: :
|
1568
|
+
*
|
1569
|
+
* Undocumented.
|
1570
|
+
*
|
1571
|
+
* Returns: (transfer none)
|
1572
|
+
*/
|
1573
|
+
_GI_TEST_EXTERN
|
1574
|
+
const gchar*
|
1575
|
+
everything_passthrough_one_filename (const gchar* arg0)
|
1576
|
+
{
|
1577
|
+
return arg0;
|
1578
|
+
}
|
1579
|
+
|