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