gobject-introspection 2.2.4-x64-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.
- 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,207 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
2
|
+
* GObject introspection: Object
|
3
|
+
*
|
4
|
+
* Copyright (C) 2005 Matthias Clasen
|
5
|
+
* Copyright (C) 2008,2009 Red Hat, Inc.
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the
|
19
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
20
|
+
* Boston, MA 02111-1307, USA.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#ifndef __GIOBJECTINFO_H__
|
24
|
+
#define __GIOBJECTINFO_H__
|
25
|
+
|
26
|
+
#if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
|
27
|
+
#error "Only <girepository.h> can be included directly."
|
28
|
+
#endif
|
29
|
+
|
30
|
+
#include <gitypes.h>
|
31
|
+
|
32
|
+
G_BEGIN_DECLS
|
33
|
+
|
34
|
+
/**
|
35
|
+
* GIObjectInfoRefFunction: (skip)
|
36
|
+
* @object: object instance pointer
|
37
|
+
*
|
38
|
+
* Increases the reference count of an object instance.
|
39
|
+
*
|
40
|
+
* Returns: (transfer full): the object instance
|
41
|
+
*/
|
42
|
+
typedef void * (*GIObjectInfoRefFunction) (void *object);
|
43
|
+
|
44
|
+
/**
|
45
|
+
* GIObjectInfoUnrefFunction: (skip)
|
46
|
+
* @object: object instance pointer
|
47
|
+
*
|
48
|
+
* Decreases the reference count of an object instance.
|
49
|
+
*/
|
50
|
+
typedef void (*GIObjectInfoUnrefFunction) (void *object);
|
51
|
+
|
52
|
+
/**
|
53
|
+
* GIObjectInfoSetValueFunction: (skip)
|
54
|
+
* @value: a #GValue
|
55
|
+
* @object: object instance pointer
|
56
|
+
*
|
57
|
+
* Update @value and attach the object instance pointer @object to it.
|
58
|
+
*/
|
59
|
+
typedef void (*GIObjectInfoSetValueFunction) (GValue *value, void *object);
|
60
|
+
|
61
|
+
/**
|
62
|
+
* GIObjectInfoGetValueFunction: (skip)
|
63
|
+
* @value: a #GValue
|
64
|
+
*
|
65
|
+
* Extract an object instance out of @value
|
66
|
+
*
|
67
|
+
* Returns: (transfer full): the object instance
|
68
|
+
*/
|
69
|
+
typedef void * (*GIObjectInfoGetValueFunction) (const GValue *value);
|
70
|
+
|
71
|
+
/**
|
72
|
+
* GI_IS_OBJECT_INFO
|
73
|
+
* @info: an info structure
|
74
|
+
*
|
75
|
+
* Checks if @info is a #GIObjectInfo.
|
76
|
+
*/
|
77
|
+
#define GI_IS_OBJECT_INFO(info) \
|
78
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_OBJECT)
|
79
|
+
|
80
|
+
|
81
|
+
GI_AVAILABLE_IN_ALL
|
82
|
+
const gchar * g_object_info_get_type_name (GIObjectInfo *info);
|
83
|
+
|
84
|
+
GI_AVAILABLE_IN_ALL
|
85
|
+
const gchar * g_object_info_get_type_init (GIObjectInfo *info);
|
86
|
+
|
87
|
+
GI_AVAILABLE_IN_ALL
|
88
|
+
gboolean g_object_info_get_abstract (GIObjectInfo *info);
|
89
|
+
|
90
|
+
GI_AVAILABLE_IN_ALL
|
91
|
+
gboolean g_object_info_get_fundamental (GIObjectInfo *info);
|
92
|
+
|
93
|
+
GI_AVAILABLE_IN_ALL
|
94
|
+
GIObjectInfo * g_object_info_get_parent (GIObjectInfo *info);
|
95
|
+
|
96
|
+
GI_AVAILABLE_IN_ALL
|
97
|
+
gint g_object_info_get_n_interfaces (GIObjectInfo *info);
|
98
|
+
|
99
|
+
GI_AVAILABLE_IN_ALL
|
100
|
+
GIInterfaceInfo * g_object_info_get_interface (GIObjectInfo *info,
|
101
|
+
gint n);
|
102
|
+
|
103
|
+
GI_AVAILABLE_IN_ALL
|
104
|
+
gint g_object_info_get_n_fields (GIObjectInfo *info);
|
105
|
+
|
106
|
+
GI_AVAILABLE_IN_ALL
|
107
|
+
GIFieldInfo * g_object_info_get_field (GIObjectInfo *info,
|
108
|
+
gint n);
|
109
|
+
|
110
|
+
GI_AVAILABLE_IN_ALL
|
111
|
+
gint g_object_info_get_n_properties (GIObjectInfo *info);
|
112
|
+
|
113
|
+
GI_AVAILABLE_IN_ALL
|
114
|
+
GIPropertyInfo * g_object_info_get_property (GIObjectInfo *info,
|
115
|
+
gint n);
|
116
|
+
|
117
|
+
GI_AVAILABLE_IN_ALL
|
118
|
+
gint g_object_info_get_n_methods (GIObjectInfo *info);
|
119
|
+
|
120
|
+
GI_AVAILABLE_IN_ALL
|
121
|
+
GIFunctionInfo * g_object_info_get_method (GIObjectInfo *info,
|
122
|
+
gint n);
|
123
|
+
|
124
|
+
GI_AVAILABLE_IN_ALL
|
125
|
+
GIFunctionInfo * g_object_info_find_method (GIObjectInfo *info,
|
126
|
+
const gchar *name);
|
127
|
+
|
128
|
+
|
129
|
+
GI_AVAILABLE_IN_ALL
|
130
|
+
GIFunctionInfo * g_object_info_find_method_using_interfaces (GIObjectInfo *info,
|
131
|
+
const gchar *name,
|
132
|
+
GIObjectInfo **implementor);
|
133
|
+
|
134
|
+
|
135
|
+
GI_AVAILABLE_IN_ALL
|
136
|
+
gint g_object_info_get_n_signals (GIObjectInfo *info);
|
137
|
+
|
138
|
+
GI_AVAILABLE_IN_ALL
|
139
|
+
GISignalInfo * g_object_info_get_signal (GIObjectInfo *info,
|
140
|
+
gint n);
|
141
|
+
|
142
|
+
|
143
|
+
GI_AVAILABLE_IN_ALL
|
144
|
+
GISignalInfo * g_object_info_find_signal (GIObjectInfo *info,
|
145
|
+
const gchar *name);
|
146
|
+
|
147
|
+
|
148
|
+
GI_AVAILABLE_IN_ALL
|
149
|
+
gint g_object_info_get_n_vfuncs (GIObjectInfo *info);
|
150
|
+
|
151
|
+
GI_AVAILABLE_IN_ALL
|
152
|
+
GIVFuncInfo * g_object_info_get_vfunc (GIObjectInfo *info,
|
153
|
+
gint n);
|
154
|
+
|
155
|
+
GI_AVAILABLE_IN_ALL
|
156
|
+
GIVFuncInfo * g_object_info_find_vfunc (GIObjectInfo *info,
|
157
|
+
const gchar *name);
|
158
|
+
|
159
|
+
GI_AVAILABLE_IN_1_32
|
160
|
+
GIVFuncInfo * g_object_info_find_vfunc_using_interfaces (GIObjectInfo *info,
|
161
|
+
const gchar *name,
|
162
|
+
GIObjectInfo **implementor);
|
163
|
+
|
164
|
+
GI_AVAILABLE_IN_ALL
|
165
|
+
gint g_object_info_get_n_constants (GIObjectInfo *info);
|
166
|
+
|
167
|
+
GI_AVAILABLE_IN_ALL
|
168
|
+
GIConstantInfo * g_object_info_get_constant (GIObjectInfo *info,
|
169
|
+
gint n);
|
170
|
+
|
171
|
+
GI_AVAILABLE_IN_ALL
|
172
|
+
GIStructInfo * g_object_info_get_class_struct (GIObjectInfo *info);
|
173
|
+
|
174
|
+
|
175
|
+
GI_AVAILABLE_IN_ALL
|
176
|
+
const char * g_object_info_get_ref_function (GIObjectInfo *info);
|
177
|
+
|
178
|
+
GI_AVAILABLE_IN_ALL
|
179
|
+
GIObjectInfoRefFunction g_object_info_get_ref_function_pointer (GIObjectInfo *info);
|
180
|
+
|
181
|
+
|
182
|
+
GI_AVAILABLE_IN_ALL
|
183
|
+
const char * g_object_info_get_unref_function (GIObjectInfo *info);
|
184
|
+
|
185
|
+
GI_AVAILABLE_IN_ALL
|
186
|
+
GIObjectInfoUnrefFunction g_object_info_get_unref_function_pointer (GIObjectInfo *info);
|
187
|
+
|
188
|
+
|
189
|
+
GI_AVAILABLE_IN_ALL
|
190
|
+
const char * g_object_info_get_set_value_function (GIObjectInfo *info);
|
191
|
+
|
192
|
+
GI_AVAILABLE_IN_ALL
|
193
|
+
GIObjectInfoSetValueFunction g_object_info_get_set_value_function_pointer (GIObjectInfo *info);
|
194
|
+
|
195
|
+
|
196
|
+
GI_AVAILABLE_IN_ALL
|
197
|
+
const char * g_object_info_get_get_value_function (GIObjectInfo *info);
|
198
|
+
|
199
|
+
GI_AVAILABLE_IN_ALL
|
200
|
+
GIObjectInfoGetValueFunction g_object_info_get_get_value_function_pointer (GIObjectInfo *info);
|
201
|
+
|
202
|
+
|
203
|
+
G_END_DECLS
|
204
|
+
|
205
|
+
|
206
|
+
#endif /* __GIOBJECTINFO_H__ */
|
207
|
+
|
@@ -0,0 +1,56 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
2
|
+
* GObject introspection: Property
|
3
|
+
*
|
4
|
+
* Copyright (C) 2005 Matthias Clasen
|
5
|
+
* Copyright (C) 2008,2009 Red Hat, Inc.
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the
|
19
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
20
|
+
* Boston, MA 02111-1307, USA.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#ifndef __GIPROPERTYINFO_H__
|
24
|
+
#define __GIPROPERTYINFO_H__
|
25
|
+
|
26
|
+
#if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
|
27
|
+
#error "Only <girepository.h> can be included directly."
|
28
|
+
#endif
|
29
|
+
|
30
|
+
#include <gitypes.h>
|
31
|
+
|
32
|
+
G_BEGIN_DECLS
|
33
|
+
|
34
|
+
/**
|
35
|
+
* GI_IS_PROPERTY_INFO
|
36
|
+
* @info: an info structure
|
37
|
+
*
|
38
|
+
* Checks if @info is a #GIPropertyInfo.
|
39
|
+
*/
|
40
|
+
#define GI_IS_PROPERTY_INFO(info) \
|
41
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_PROPERTY)
|
42
|
+
|
43
|
+
|
44
|
+
GI_AVAILABLE_IN_ALL
|
45
|
+
GParamFlags g_property_info_get_flags (GIPropertyInfo *info);
|
46
|
+
|
47
|
+
GI_AVAILABLE_IN_ALL
|
48
|
+
GITypeInfo * g_property_info_get_type (GIPropertyInfo *info);
|
49
|
+
|
50
|
+
GI_AVAILABLE_IN_ALL
|
51
|
+
GITransfer g_property_info_get_ownership_transfer (GIPropertyInfo *info);
|
52
|
+
|
53
|
+
G_END_DECLS
|
54
|
+
|
55
|
+
#endif /* __GIPROPERTYINFO_H__ */
|
56
|
+
|
@@ -0,0 +1,64 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
2
|
+
* GObject introspection: Registered Type
|
3
|
+
*
|
4
|
+
* Copyright (C) 2005 Matthias Clasen
|
5
|
+
* Copyright (C) 2008,2009 Red Hat, Inc.
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the
|
19
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
20
|
+
* Boston, MA 02111-1307, USA.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#ifndef __GIREGISTEREDTYPEINFO_H__
|
24
|
+
#define __GIREGISTEREDTYPEINFO_H__
|
25
|
+
|
26
|
+
#if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
|
27
|
+
#error "Only <girepository.h> can be included directly."
|
28
|
+
#endif
|
29
|
+
|
30
|
+
#include <glib-object.h>
|
31
|
+
#include <gitypes.h>
|
32
|
+
|
33
|
+
G_BEGIN_DECLS
|
34
|
+
|
35
|
+
/**
|
36
|
+
* GI_IS_REGISTERED_TYPE_INFO
|
37
|
+
* @info: an info structure
|
38
|
+
*
|
39
|
+
* Checks if @info is a #GIRegisteredTypeInfo or derived from it.
|
40
|
+
*/
|
41
|
+
#define GI_IS_REGISTERED_TYPE_INFO(info) \
|
42
|
+
((g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_BOXED) || \
|
43
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_ENUM) || \
|
44
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_FLAGS) || \
|
45
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_INTERFACE) || \
|
46
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_OBJECT) || \
|
47
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_STRUCT) || \
|
48
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_UNION) || \
|
49
|
+
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_BOXED))
|
50
|
+
|
51
|
+
GI_AVAILABLE_IN_ALL
|
52
|
+
const gchar * g_registered_type_info_get_type_name (GIRegisteredTypeInfo *info);
|
53
|
+
|
54
|
+
GI_AVAILABLE_IN_ALL
|
55
|
+
const gchar * g_registered_type_info_get_type_init (GIRegisteredTypeInfo *info);
|
56
|
+
|
57
|
+
GI_AVAILABLE_IN_ALL
|
58
|
+
GType g_registered_type_info_get_g_type (GIRegisteredTypeInfo *info);
|
59
|
+
|
60
|
+
G_END_DECLS
|
61
|
+
|
62
|
+
|
63
|
+
#endif /* __GIREGISTEREDTYPEINFO_H__ */
|
64
|
+
|
@@ -0,0 +1,239 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
2
|
+
* GObject introspection: Repository
|
3
|
+
*
|
4
|
+
* Copyright (C) 2005 Matthias Clasen
|
5
|
+
* Copyright (C) 2008,2009 Red Hat, Inc.
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the
|
19
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
20
|
+
* Boston, MA 02111-1307, USA.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#ifndef __G_IREPOSITORY_H__
|
24
|
+
#define __G_IREPOSITORY_H__
|
25
|
+
|
26
|
+
#include <glib-object.h>
|
27
|
+
#include <gmodule.h>
|
28
|
+
|
29
|
+
#define __GIREPOSITORY_H_INSIDE__
|
30
|
+
|
31
|
+
#include <giarginfo.h>
|
32
|
+
#include <gibaseinfo.h>
|
33
|
+
#include <gicallableinfo.h>
|
34
|
+
#include <giconstantinfo.h>
|
35
|
+
#include <gienuminfo.h>
|
36
|
+
#include <gifieldinfo.h>
|
37
|
+
#include <gifunctioninfo.h>
|
38
|
+
#include <giinterfaceinfo.h>
|
39
|
+
#include <giobjectinfo.h>
|
40
|
+
#include <gipropertyinfo.h>
|
41
|
+
#include <giregisteredtypeinfo.h>
|
42
|
+
#include <gisignalinfo.h>
|
43
|
+
#include <gistructinfo.h>
|
44
|
+
#include <gitypeinfo.h>
|
45
|
+
#include <gitypelib.h>
|
46
|
+
#include <gitypes.h>
|
47
|
+
#include <giunioninfo.h>
|
48
|
+
#include <giversionmacros.h>
|
49
|
+
#include <givfuncinfo.h>
|
50
|
+
|
51
|
+
G_BEGIN_DECLS
|
52
|
+
|
53
|
+
#define G_TYPE_IREPOSITORY (g_irepository_get_type ())
|
54
|
+
#define G_IREPOSITORY(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_IREPOSITORY, GIRepository))
|
55
|
+
#define G_IREPOSITORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_IREPOSITORY, GIRepositoryClass))
|
56
|
+
#define G_IS_IREPOSITORY(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_IREPOSITORY))
|
57
|
+
#define G_IS_IREPOSITORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_IREPOSITORY))
|
58
|
+
#define G_IREPOSITORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_IREPOSITORY, GIRepositoryClass))
|
59
|
+
|
60
|
+
/**
|
61
|
+
* GIRepository:
|
62
|
+
*
|
63
|
+
* The GIRepository structure contains private data and should only be
|
64
|
+
* accessed using the provided API.
|
65
|
+
*/
|
66
|
+
typedef struct _GIRepository GIRepository;
|
67
|
+
typedef struct _GIRepositoryClass GIRepositoryClass;
|
68
|
+
typedef struct _GIRepositoryPrivate GIRepositoryPrivate;
|
69
|
+
|
70
|
+
struct _GIRepository
|
71
|
+
{
|
72
|
+
/*< private >*/
|
73
|
+
GObject parent;
|
74
|
+
GIRepositoryPrivate *priv;
|
75
|
+
};
|
76
|
+
|
77
|
+
struct _GIRepositoryClass
|
78
|
+
{
|
79
|
+
/*< private >*/
|
80
|
+
GObjectClass parent;
|
81
|
+
};
|
82
|
+
|
83
|
+
/**
|
84
|
+
* GIRepositoryLoadFlags:
|
85
|
+
* @G_IREPOSITORY_LOAD_FLAG_LAZY: Lazily load the typelib.
|
86
|
+
*
|
87
|
+
* Flags that control how a typelib is loaded.
|
88
|
+
*/
|
89
|
+
typedef enum
|
90
|
+
{
|
91
|
+
G_IREPOSITORY_LOAD_FLAG_LAZY = 1 << 0
|
92
|
+
} GIRepositoryLoadFlags;
|
93
|
+
|
94
|
+
/* Repository */
|
95
|
+
|
96
|
+
GI_AVAILABLE_IN_ALL
|
97
|
+
GType g_irepository_get_type (void) G_GNUC_CONST;
|
98
|
+
|
99
|
+
GI_AVAILABLE_IN_ALL
|
100
|
+
GIRepository *g_irepository_get_default (void);
|
101
|
+
|
102
|
+
GI_AVAILABLE_IN_ALL
|
103
|
+
void g_irepository_prepend_search_path (const char *directory);
|
104
|
+
|
105
|
+
GI_AVAILABLE_IN_1_36
|
106
|
+
void g_irepository_prepend_library_path (const char *directory);
|
107
|
+
|
108
|
+
GI_AVAILABLE_IN_ALL
|
109
|
+
GSList * g_irepository_get_search_path (void);
|
110
|
+
|
111
|
+
GI_AVAILABLE_IN_ALL
|
112
|
+
const char * g_irepository_load_typelib (GIRepository *repository,
|
113
|
+
GITypelib *typelib,
|
114
|
+
GIRepositoryLoadFlags flags,
|
115
|
+
GError **error);
|
116
|
+
|
117
|
+
GI_AVAILABLE_IN_ALL
|
118
|
+
gboolean g_irepository_is_registered (GIRepository *repository,
|
119
|
+
const gchar *namespace_,
|
120
|
+
const gchar *version);
|
121
|
+
|
122
|
+
GI_AVAILABLE_IN_ALL
|
123
|
+
GIBaseInfo * g_irepository_find_by_name (GIRepository *repository,
|
124
|
+
const gchar *namespace_,
|
125
|
+
const gchar *name);
|
126
|
+
|
127
|
+
GI_AVAILABLE_IN_ALL
|
128
|
+
GList * g_irepository_enumerate_versions (GIRepository *repository,
|
129
|
+
const gchar *namespace_);
|
130
|
+
|
131
|
+
GI_AVAILABLE_IN_ALL
|
132
|
+
GITypelib * g_irepository_require (GIRepository *repository,
|
133
|
+
const gchar *namespace_,
|
134
|
+
const gchar *version,
|
135
|
+
GIRepositoryLoadFlags flags,
|
136
|
+
GError **error);
|
137
|
+
|
138
|
+
GI_AVAILABLE_IN_ALL
|
139
|
+
GITypelib * g_irepository_require_private (GIRepository *repository,
|
140
|
+
const gchar *typelib_dir,
|
141
|
+
const gchar *namespace_,
|
142
|
+
const gchar *version,
|
143
|
+
GIRepositoryLoadFlags flags,
|
144
|
+
GError **error);
|
145
|
+
|
146
|
+
GI_AVAILABLE_IN_ALL
|
147
|
+
gchar ** g_irepository_get_dependencies (GIRepository *repository,
|
148
|
+
const gchar *namespace_);
|
149
|
+
|
150
|
+
GI_AVAILABLE_IN_ALL
|
151
|
+
gchar ** g_irepository_get_loaded_namespaces (GIRepository *repository);
|
152
|
+
|
153
|
+
GI_AVAILABLE_IN_ALL
|
154
|
+
GIBaseInfo * g_irepository_find_by_gtype (GIRepository *repository,
|
155
|
+
GType gtype);
|
156
|
+
|
157
|
+
GI_AVAILABLE_IN_ALL
|
158
|
+
gint g_irepository_get_n_infos (GIRepository *repository,
|
159
|
+
const gchar *namespace_);
|
160
|
+
|
161
|
+
GI_AVAILABLE_IN_ALL
|
162
|
+
GIBaseInfo * g_irepository_get_info (GIRepository *repository,
|
163
|
+
const gchar *namespace_,
|
164
|
+
gint index);
|
165
|
+
|
166
|
+
GI_AVAILABLE_IN_ALL
|
167
|
+
GIEnumInfo * g_irepository_find_by_error_domain (GIRepository *repository,
|
168
|
+
GQuark domain);
|
169
|
+
|
170
|
+
GI_AVAILABLE_IN_ALL
|
171
|
+
const gchar * g_irepository_get_typelib_path (GIRepository *repository,
|
172
|
+
const gchar *namespace_);
|
173
|
+
GI_AVAILABLE_IN_ALL
|
174
|
+
const gchar * g_irepository_get_shared_library (GIRepository *repository,
|
175
|
+
const gchar *namespace_);
|
176
|
+
GI_AVAILABLE_IN_ALL
|
177
|
+
const gchar * g_irepository_get_c_prefix (GIRepository *repository,
|
178
|
+
const gchar *namespace_);
|
179
|
+
GI_AVAILABLE_IN_ALL
|
180
|
+
const gchar * g_irepository_get_version (GIRepository *repository,
|
181
|
+
const gchar *namespace_);
|
182
|
+
|
183
|
+
|
184
|
+
GI_AVAILABLE_IN_ALL
|
185
|
+
GOptionGroup * g_irepository_get_option_group (void);
|
186
|
+
|
187
|
+
|
188
|
+
GI_AVAILABLE_IN_ALL
|
189
|
+
gboolean g_irepository_dump (const char *arg, GError **error);
|
190
|
+
|
191
|
+
/**
|
192
|
+
* GIRepositoryError:
|
193
|
+
* @G_IREPOSITORY_ERROR_TYPELIB_NOT_FOUND: the typelib could not be found.
|
194
|
+
* @G_IREPOSITORY_ERROR_NAMESPACE_MISMATCH: the namespace does not match the
|
195
|
+
* requested namespace.
|
196
|
+
* @G_IREPOSITORY_ERROR_NAMESPACE_VERSION_CONFLICT: the version of the
|
197
|
+
* typelib does not match the requested version.
|
198
|
+
* @G_IREPOSITORY_ERROR_LIBRARY_NOT_FOUND: the library used by the typelib
|
199
|
+
* could not be found.
|
200
|
+
*
|
201
|
+
* An error code used with #G_IREPOSITORY_ERROR in a #GError returned
|
202
|
+
* from a #GIRepository routine.
|
203
|
+
*/
|
204
|
+
typedef enum
|
205
|
+
{
|
206
|
+
G_IREPOSITORY_ERROR_TYPELIB_NOT_FOUND,
|
207
|
+
G_IREPOSITORY_ERROR_NAMESPACE_MISMATCH,
|
208
|
+
G_IREPOSITORY_ERROR_NAMESPACE_VERSION_CONFLICT,
|
209
|
+
G_IREPOSITORY_ERROR_LIBRARY_NOT_FOUND
|
210
|
+
} GIRepositoryError;
|
211
|
+
|
212
|
+
/**
|
213
|
+
* G_IREPOSITORY_ERROR:
|
214
|
+
*
|
215
|
+
* Error domain for #GIRepository. Errors in this domain will be from the
|
216
|
+
* #GIRepositoryError enumeration. See #GError for more information on
|
217
|
+
* error domains.
|
218
|
+
*/
|
219
|
+
#define G_IREPOSITORY_ERROR (g_irepository_error_quark ())
|
220
|
+
|
221
|
+
GI_AVAILABLE_IN_ALL
|
222
|
+
GQuark g_irepository_error_quark (void);
|
223
|
+
|
224
|
+
|
225
|
+
/* Global utility functions */
|
226
|
+
|
227
|
+
GI_AVAILABLE_IN_ALL
|
228
|
+
void gi_cclosure_marshal_generic (GClosure *closure,
|
229
|
+
GValue *return_gvalue,
|
230
|
+
guint n_param_values,
|
231
|
+
const GValue *param_values,
|
232
|
+
gpointer invocation_hint,
|
233
|
+
gpointer marshal_data);
|
234
|
+
|
235
|
+
G_END_DECLS
|
236
|
+
|
237
|
+
|
238
|
+
#endif /* __G_IREPOSITORY_H__ */
|
239
|
+
|