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,202 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012-2013 Ruby-GNOME2 Project Team
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General Public
|
16
|
+
* License along with this library; if not, write to the Free Software
|
17
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
* MA 02110-1301 USA
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "rb-gi-private.h"
|
22
|
+
|
23
|
+
#define RG_TARGET_NAMESPACE rb_cGIStructInfo
|
24
|
+
#define SELF(self) (RVAL2GI_STRUCT_INFO(self))
|
25
|
+
|
26
|
+
GType
|
27
|
+
gi_struct_info_get_type(void)
|
28
|
+
{
|
29
|
+
static GType type = 0;
|
30
|
+
if (type == 0) {
|
31
|
+
type = g_boxed_type_register_static("GIStructInfo",
|
32
|
+
(GBoxedCopyFunc)g_base_info_ref,
|
33
|
+
(GBoxedFreeFunc)g_base_info_unref);
|
34
|
+
}
|
35
|
+
return type;
|
36
|
+
}
|
37
|
+
|
38
|
+
static VALUE
|
39
|
+
rg_n_fields(VALUE self)
|
40
|
+
{
|
41
|
+
GIStructInfo *info;
|
42
|
+
|
43
|
+
info = SELF(self);
|
44
|
+
return INT2NUM(g_struct_info_get_n_fields(info));
|
45
|
+
}
|
46
|
+
|
47
|
+
static VALUE
|
48
|
+
rg_get_field(VALUE self, VALUE rb_n)
|
49
|
+
{
|
50
|
+
GIStructInfo *info;
|
51
|
+
gint n;
|
52
|
+
|
53
|
+
info = SELF(self);
|
54
|
+
n = NUM2INT(rb_n);
|
55
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_struct_info_get_field(info, n));
|
56
|
+
}
|
57
|
+
|
58
|
+
static gpointer
|
59
|
+
extract_raw_struct(VALUE rb_struct,
|
60
|
+
GIStructInfo *struct_info)
|
61
|
+
{
|
62
|
+
GType gtype;
|
63
|
+
gpointer raw_struct;
|
64
|
+
|
65
|
+
gtype = g_registered_type_info_get_g_type(struct_info);
|
66
|
+
if (gtype == G_TYPE_NONE && rb_respond_to(rb_struct, rb_intern("gtype"))) {
|
67
|
+
VALUE rb_gtype;
|
68
|
+
rb_gtype = rb_funcall(rb_struct, rb_intern("gtype"), 0);
|
69
|
+
gtype = NUM2ULONG(rb_funcall(rb_gtype, rb_intern("to_i"), 0));
|
70
|
+
}
|
71
|
+
if (gtype == G_TYPE_NONE) {
|
72
|
+
raw_struct = DATA_PTR(rb_struct);
|
73
|
+
} else {
|
74
|
+
raw_struct = RVAL2BOXED(rb_struct, gtype);
|
75
|
+
}
|
76
|
+
|
77
|
+
return raw_struct;
|
78
|
+
}
|
79
|
+
|
80
|
+
static VALUE
|
81
|
+
rg_get_field_value(VALUE self, VALUE rb_struct, VALUE rb_n)
|
82
|
+
{
|
83
|
+
GIStructInfo *info;
|
84
|
+
gpointer raw_struct;
|
85
|
+
gint n;
|
86
|
+
GIFieldInfo *field_info;
|
87
|
+
VALUE rb_value;
|
88
|
+
|
89
|
+
info = SELF(self);
|
90
|
+
raw_struct = extract_raw_struct(rb_struct, info);
|
91
|
+
n = NUM2INT(rb_n);
|
92
|
+
field_info = g_struct_info_get_field(info, n);
|
93
|
+
rb_value = rb_gi_field_info_get_field_raw(field_info, raw_struct);
|
94
|
+
g_base_info_unref(field_info);
|
95
|
+
|
96
|
+
return rb_value;
|
97
|
+
}
|
98
|
+
|
99
|
+
static VALUE
|
100
|
+
rg_set_field_value(VALUE self, VALUE rb_struct, VALUE rb_n, VALUE rb_value)
|
101
|
+
{
|
102
|
+
GIStructInfo *info;
|
103
|
+
gpointer raw_struct;
|
104
|
+
gint n;
|
105
|
+
GIFieldInfo *field_info;
|
106
|
+
|
107
|
+
info = SELF(self);
|
108
|
+
raw_struct = extract_raw_struct(rb_struct, info);
|
109
|
+
n = NUM2INT(rb_n);
|
110
|
+
field_info = g_struct_info_get_field(info, n);
|
111
|
+
rb_gi_field_info_set_field_raw(field_info, raw_struct, rb_value);
|
112
|
+
/* TODO: use rb_ensure() to unref field_info. */
|
113
|
+
g_base_info_unref(field_info);
|
114
|
+
|
115
|
+
return Qnil;
|
116
|
+
}
|
117
|
+
|
118
|
+
static VALUE
|
119
|
+
rg_n_methods(VALUE self)
|
120
|
+
{
|
121
|
+
GIStructInfo *info;
|
122
|
+
|
123
|
+
info = SELF(self);
|
124
|
+
return INT2NUM(g_struct_info_get_n_methods(info));
|
125
|
+
}
|
126
|
+
|
127
|
+
static VALUE
|
128
|
+
rg_get_method(VALUE self, VALUE rb_n_or_name)
|
129
|
+
{
|
130
|
+
GIStructInfo *info;
|
131
|
+
GIFunctionInfo *function_info;
|
132
|
+
|
133
|
+
info = SELF(self);
|
134
|
+
if (RB_TYPE_P(rb_n_or_name, RUBY_T_FIXNUM)) {
|
135
|
+
gint n;
|
136
|
+
n = NUM2INT(rb_n_or_name);
|
137
|
+
function_info = g_struct_info_get_method(info, n);
|
138
|
+
} else {
|
139
|
+
const gchar *name;
|
140
|
+
name = RVAL2CSTR(rb_n_or_name);
|
141
|
+
function_info = g_struct_info_find_method(info, name);
|
142
|
+
}
|
143
|
+
|
144
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(function_info);
|
145
|
+
}
|
146
|
+
|
147
|
+
static VALUE
|
148
|
+
rg_size(VALUE self)
|
149
|
+
{
|
150
|
+
GIStructInfo *info;
|
151
|
+
|
152
|
+
info = SELF(self);
|
153
|
+
return UINT2NUM(g_struct_info_get_size(info));
|
154
|
+
}
|
155
|
+
|
156
|
+
static VALUE
|
157
|
+
rg_alignment(VALUE self)
|
158
|
+
{
|
159
|
+
GIStructInfo *info;
|
160
|
+
|
161
|
+
info = SELF(self);
|
162
|
+
return UINT2NUM(g_struct_info_get_alignment(info));
|
163
|
+
}
|
164
|
+
|
165
|
+
static VALUE
|
166
|
+
rg_gtype_struct_p(VALUE self)
|
167
|
+
{
|
168
|
+
GIStructInfo *info;
|
169
|
+
|
170
|
+
info = SELF(self);
|
171
|
+
return CBOOL2RVAL(g_struct_info_is_gtype_struct(info));
|
172
|
+
}
|
173
|
+
|
174
|
+
static VALUE
|
175
|
+
rg_foreign_p(VALUE self)
|
176
|
+
{
|
177
|
+
GIStructInfo *info;
|
178
|
+
|
179
|
+
info = SELF(self);
|
180
|
+
return CBOOL2RVAL(g_struct_info_is_foreign(info));
|
181
|
+
}
|
182
|
+
|
183
|
+
void
|
184
|
+
rb_gi_struct_info_init(VALUE rb_mGI, VALUE rb_cGIRegisteredTypeInfo)
|
185
|
+
{
|
186
|
+
VALUE RG_TARGET_NAMESPACE;
|
187
|
+
|
188
|
+
RG_TARGET_NAMESPACE =
|
189
|
+
G_DEF_CLASS_WITH_PARENT(GI_TYPE_STRUCT_INFO, "StructInfo", rb_mGI,
|
190
|
+
rb_cGIRegisteredTypeInfo);
|
191
|
+
|
192
|
+
RG_DEF_METHOD(n_fields, 0);
|
193
|
+
RG_DEF_METHOD(get_field, 1);
|
194
|
+
RG_DEF_METHOD(get_field_value, 2);
|
195
|
+
RG_DEF_METHOD(set_field_value, 3);
|
196
|
+
RG_DEF_METHOD(n_methods, 0);
|
197
|
+
RG_DEF_METHOD(get_method, 1);
|
198
|
+
RG_DEF_METHOD(size, 0);
|
199
|
+
RG_DEF_METHOD(alignment, 0);
|
200
|
+
RG_DEF_METHOD_P(gtype_struct, 0);
|
201
|
+
RG_DEF_METHOD_P(foreign, 0);
|
202
|
+
}
|
@@ -0,0 +1,143 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012 Ruby-GNOME2 Project Team
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General Public
|
16
|
+
* License along with this library; if not, write to the Free Software
|
17
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
* MA 02110-1301 USA
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "rb-gi-private.h"
|
22
|
+
|
23
|
+
#define RG_TARGET_NAMESPACE rb_cGITypeInfo
|
24
|
+
#define SELF(self) (RVAL2GI_TYPE_INFO(self))
|
25
|
+
|
26
|
+
GType
|
27
|
+
gi_type_info_get_type(void)
|
28
|
+
{
|
29
|
+
static GType type = 0;
|
30
|
+
if (type == 0) {
|
31
|
+
type = g_boxed_type_register_static("GITypeInfo",
|
32
|
+
(GBoxedCopyFunc)g_base_info_ref,
|
33
|
+
(GBoxedFreeFunc)g_base_info_unref);
|
34
|
+
}
|
35
|
+
return type;
|
36
|
+
}
|
37
|
+
|
38
|
+
VALUE
|
39
|
+
rb_gi_array_type_to_ruby(GIArrayType type)
|
40
|
+
{
|
41
|
+
if (type == (GIArrayType)-1) {
|
42
|
+
return Qnil;
|
43
|
+
} else {
|
44
|
+
return GENUM2RVAL(type, G_TYPE_I_ARRAY_TYPE);
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
static VALUE
|
49
|
+
rg_pointer_p(VALUE self)
|
50
|
+
{
|
51
|
+
GITypeInfo *info;
|
52
|
+
|
53
|
+
info = SELF(self);
|
54
|
+
return CBOOL2RVAL(g_type_info_is_pointer(info));
|
55
|
+
}
|
56
|
+
|
57
|
+
static VALUE
|
58
|
+
rg_tag(VALUE self)
|
59
|
+
{
|
60
|
+
GITypeInfo *info;
|
61
|
+
|
62
|
+
info = SELF(self);
|
63
|
+
return GI_TYPE_TAG2RVAL(g_type_info_get_tag(info));
|
64
|
+
}
|
65
|
+
|
66
|
+
static VALUE
|
67
|
+
rg_get_param_type(VALUE self, VALUE rb_n)
|
68
|
+
{
|
69
|
+
GITypeInfo *info;
|
70
|
+
gint n;
|
71
|
+
|
72
|
+
info = SELF(self);
|
73
|
+
n = NUM2INT(rb_n);
|
74
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_type_info_get_param_type(info, n));
|
75
|
+
}
|
76
|
+
|
77
|
+
static VALUE
|
78
|
+
rg_interface(VALUE self)
|
79
|
+
{
|
80
|
+
GITypeInfo *info;
|
81
|
+
|
82
|
+
info = SELF(self);
|
83
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_type_info_get_interface(info));
|
84
|
+
}
|
85
|
+
|
86
|
+
static VALUE
|
87
|
+
rg_array_length(VALUE self)
|
88
|
+
{
|
89
|
+
GITypeInfo *info;
|
90
|
+
|
91
|
+
info = SELF(self);
|
92
|
+
return INT2NUM(g_type_info_get_array_length(info));
|
93
|
+
}
|
94
|
+
|
95
|
+
static VALUE
|
96
|
+
rg_array_fixed_size(VALUE self)
|
97
|
+
{
|
98
|
+
GITypeInfo *info;
|
99
|
+
|
100
|
+
info = SELF(self);
|
101
|
+
return INT2NUM(g_type_info_get_array_fixed_size(info));
|
102
|
+
}
|
103
|
+
|
104
|
+
static VALUE
|
105
|
+
rg_zero_terminated_p(VALUE self)
|
106
|
+
{
|
107
|
+
GITypeInfo *info;
|
108
|
+
|
109
|
+
info = SELF(self);
|
110
|
+
return CBOOL2RVAL(g_type_info_is_zero_terminated(info));
|
111
|
+
}
|
112
|
+
|
113
|
+
static VALUE
|
114
|
+
rg_array_type(VALUE self)
|
115
|
+
{
|
116
|
+
GITypeInfo *info;
|
117
|
+
|
118
|
+
info = SELF(self);
|
119
|
+
return GI_ARRAY_TYPE2RVAL(g_type_info_get_array_type(info));
|
120
|
+
}
|
121
|
+
|
122
|
+
void
|
123
|
+
rb_gi_type_info_init(VALUE rb_mGI, VALUE rb_cGIBaseInfo)
|
124
|
+
{
|
125
|
+
VALUE RG_TARGET_NAMESPACE;
|
126
|
+
|
127
|
+
RG_TARGET_NAMESPACE =
|
128
|
+
G_DEF_CLASS_WITH_PARENT(GI_TYPE_TYPE_INFO, "TypeInfo", rb_mGI,
|
129
|
+
rb_cGIBaseInfo);
|
130
|
+
|
131
|
+
RG_DEF_METHOD_P(pointer, 0);
|
132
|
+
RG_DEF_METHOD(tag, 0);
|
133
|
+
RG_DEF_METHOD(get_param_type, 1);
|
134
|
+
RG_DEF_METHOD(interface, 0);
|
135
|
+
RG_DEF_METHOD(array_length, 0);
|
136
|
+
RG_DEF_METHOD(array_fixed_size, 0);
|
137
|
+
RG_DEF_METHOD_P(zero_terminated, 0);
|
138
|
+
RG_DEF_METHOD(array_type, 0);
|
139
|
+
|
140
|
+
rb_undef_method(RG_TARGET_NAMESPACE, "name");
|
141
|
+
|
142
|
+
G_DEF_CLASS(G_TYPE_I_ARRAY_TYPE, "ArrayType", rb_mGI);
|
143
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012 Ruby-GNOME2 Project Team
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General Public
|
16
|
+
* License along with this library; if not, write to the Free Software
|
17
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
* MA 02110-1301 USA
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "rb-gi-private.h"
|
22
|
+
|
23
|
+
#define RG_TARGET_NAMESPACE rb_cGITypeTag
|
24
|
+
#define SELF(self) (RVAL2GI_TYPE_TAG(self))
|
25
|
+
|
26
|
+
static VALUE
|
27
|
+
rg_to_s(VALUE self)
|
28
|
+
{
|
29
|
+
GITypeTag tag;
|
30
|
+
|
31
|
+
tag = SELF(self);
|
32
|
+
return CSTR2RVAL(g_type_tag_to_string(tag));
|
33
|
+
}
|
34
|
+
|
35
|
+
void
|
36
|
+
rb_gi_type_tag_init(VALUE rb_mGI)
|
37
|
+
{
|
38
|
+
VALUE RG_TARGET_NAMESPACE;
|
39
|
+
|
40
|
+
RG_TARGET_NAMESPACE = G_DEF_CLASS(G_TYPE_I_TYPE_TAG, "TypeTag", rb_mGI);
|
41
|
+
|
42
|
+
RG_DEF_METHOD(to_s, 0);
|
43
|
+
}
|
@@ -0,0 +1,71 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012 Ruby-GNOME2 Project Team
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General Public
|
16
|
+
* License along with this library; if not, write to the Free Software
|
17
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
* MA 02110-1301 USA
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef RB_GI_TYPES_H
|
22
|
+
#define RB_GI_TYPES_H
|
23
|
+
|
24
|
+
#define GI_TYPE_CALLABLE_INFO (gi_callable_info_get_type())
|
25
|
+
#define GI_TYPE_FUNCTION_INFO (gi_function_info_get_type())
|
26
|
+
#define GI_TYPE_METHOD_INFO (gi_method_info_get_type())
|
27
|
+
#define GI_TYPE_CONSTRUCTOR_INFO (gi_constructor_info_get_type())
|
28
|
+
#define GI_TYPE_CALLBACK_INFO (gi_callback_info_get_type())
|
29
|
+
#define GI_TYPE_REGISTERED_TYPE_INFO (gi_registered_type_info_get_type())
|
30
|
+
#define GI_TYPE_STRUCT_INFO (gi_struct_info_get_type())
|
31
|
+
#define GI_TYPE_BOXED_INFO (gi_boxed_info_get_type())
|
32
|
+
#define GI_TYPE_ENUM_INFO (gi_enum_info_get_type())
|
33
|
+
#define GI_TYPE_FLAGS_INFO (gi_flags_info_get_type())
|
34
|
+
#define GI_TYPE_OBJECT_INFO (gi_object_info_get_type())
|
35
|
+
#define GI_TYPE_INTERFACE_INFO (gi_interface_info_get_type())
|
36
|
+
#define GI_TYPE_CONSTANT_INFO (gi_constant_info_get_type())
|
37
|
+
#define GI_TYPE_UNION_INFO (gi_union_info_get_type())
|
38
|
+
#define GI_TYPE_VALUE_INFO (gi_value_info_get_type())
|
39
|
+
#define GI_TYPE_SIGNAL_INFO (gi_signal_info_get_type())
|
40
|
+
#define GI_TYPE_VFUNC_INFO (gi_vfunc_info_get_type())
|
41
|
+
#define GI_TYPE_PROPERTY_INFO (gi_property_info_get_type())
|
42
|
+
#define GI_TYPE_FIELD_INFO (gi_field_info_get_type())
|
43
|
+
#define GI_TYPE_ARG_INFO (gi_arg_info_get_type())
|
44
|
+
#define GI_TYPE_TYPE_INFO (gi_type_info_get_type())
|
45
|
+
#define GI_TYPE_UNRESOLVED_INFO (gi_unresolved_info_get_type())
|
46
|
+
|
47
|
+
GType gi_callable_info_get_type (void);
|
48
|
+
GType gi_function_info_get_type (void);
|
49
|
+
GType gi_method_info_get_type (void);
|
50
|
+
GType gi_constructor_info_get_type (void);
|
51
|
+
GType gi_callback_info_get_type (void);
|
52
|
+
GType gi_registered_type_info_get_type (void);
|
53
|
+
GType gi_struct_info_get_type (void);
|
54
|
+
GType gi_boxed_info_get_type (void);
|
55
|
+
GType gi_enum_info_get_type (void);
|
56
|
+
GType gi_flags_info_get_type (void);
|
57
|
+
GType gi_object_info_get_type (void);
|
58
|
+
GType gi_interface_info_get_type (void);
|
59
|
+
GType gi_constant_info_get_type (void);
|
60
|
+
GType gi_union_info_get_type (void);
|
61
|
+
GType gi_value_info_get_type (void);
|
62
|
+
GType gi_signal_info_get_type (void);
|
63
|
+
GType gi_vfunc_info_get_type (void);
|
64
|
+
GType gi_property_info_get_type (void);
|
65
|
+
GType gi_field_info_get_type (void);
|
66
|
+
GType gi_arg_info_get_type (void);
|
67
|
+
GType gi_type_info_get_type (void);
|
68
|
+
GType gi_unresolved_info_get_type (void);
|
69
|
+
|
70
|
+
|
71
|
+
#endif
|