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