glib2 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/README +40 -0
- data/Rakefile +157 -0
- data/ext/glib2/depend +18 -0
- data/ext/glib2/extconf.rb +80 -0
- data/ext/glib2/glib2.def +147 -0
- data/ext/glib2/rbgcompat.h +29 -0
- data/ext/glib2/rbglib.c +1158 -0
- data/ext/glib2/rbglib.h +202 -0
- data/ext/glib2/rbglib2conversions.h +57 -0
- data/ext/glib2/rbglib_bookmarkfile.c +546 -0
- data/ext/glib2/rbglib_convert.c +197 -0
- data/ext/glib2/rbglib_error.c +164 -0
- data/ext/glib2/rbglib_fileutils.c +119 -0
- data/ext/glib2/rbglib_gettext.c +48 -0
- data/ext/glib2/rbglib_i18n.c +40 -0
- data/ext/glib2/rbglib_int64.c +165 -0
- data/ext/glib2/rbglib_io_constants.c +30 -0
- data/ext/glib2/rbglib_iochannel.c +824 -0
- data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
- data/ext/glib2/rbglib_iochannelerror.c +49 -0
- data/ext/glib2/rbglib_keyfile.c +755 -0
- data/ext/glib2/rbglib_maincontext.c +565 -0
- data/ext/glib2/rbglib_mainloop.c +121 -0
- data/ext/glib2/rbglib_messages.c +148 -0
- data/ext/glib2/rbglib_pollfd.c +112 -0
- data/ext/glib2/rbglib_shell.c +64 -0
- data/ext/glib2/rbglib_shellerror.c +34 -0
- data/ext/glib2/rbglib_source.c +242 -0
- data/ext/glib2/rbglib_spawn.c +245 -0
- data/ext/glib2/rbglib_spawnerror.c +53 -0
- data/ext/glib2/rbglib_threads.c +61 -0
- data/ext/glib2/rbglib_timer.c +127 -0
- data/ext/glib2/rbglib_ucs4.c +79 -0
- data/ext/glib2/rbglib_unichar.c +201 -0
- data/ext/glib2/rbglib_unicode.c +90 -0
- data/ext/glib2/rbglib_utf16.c +78 -0
- data/ext/glib2/rbglib_utf8.c +257 -0
- data/ext/glib2/rbglib_utils.c +339 -0
- data/ext/glib2/rbglib_win32.c +112 -0
- data/ext/glib2/rbglibdeprecated.c +56 -0
- data/ext/glib2/rbglibdeprecated.h +34 -0
- data/ext/glib2/rbgobj_boxed.c +295 -0
- data/ext/glib2/rbgobj_closure.c +345 -0
- data/ext/glib2/rbgobj_convert.c +195 -0
- data/ext/glib2/rbgobj_enumflags.c +109 -0
- data/ext/glib2/rbgobj_enums.c +401 -0
- data/ext/glib2/rbgobj_flags.c +522 -0
- data/ext/glib2/rbgobj_object.c +885 -0
- data/ext/glib2/rbgobj_param.c +378 -0
- data/ext/glib2/rbgobj_paramspecs.c +311 -0
- data/ext/glib2/rbgobj_signal.c +978 -0
- data/ext/glib2/rbgobj_strv.c +44 -0
- data/ext/glib2/rbgobj_type.c +846 -0
- data/ext/glib2/rbgobj_typeinstance.c +128 -0
- data/ext/glib2/rbgobj_typeinterface.c +149 -0
- data/ext/glib2/rbgobj_typemodule.c +72 -0
- data/ext/glib2/rbgobj_typeplugin.c +57 -0
- data/ext/glib2/rbgobj_value.c +395 -0
- data/ext/glib2/rbgobj_valuearray.c +100 -0
- data/ext/glib2/rbgobj_valuetypes.c +243 -0
- data/ext/glib2/rbgobject.c +387 -0
- data/ext/glib2/rbgobject.h +301 -0
- data/ext/glib2/rbgprivate.h +178 -0
- data/ext/glib2/rbgutil.c +183 -0
- data/ext/glib2/rbgutil.h +119 -0
- data/ext/glib2/rbgutil_callback.c +272 -0
- data/ext/glib2/rbgutil_list.c +173 -0
- data/ext/glib2/rbgutil_list.h +85 -0
- data/ext/glib2/rbgutildeprecated.c +252 -0
- data/ext/glib2/rbgutildeprecated.h +63 -0
- data/extconf.rb +49 -0
- data/lib/2.0/glib2.so +0 -0
- data/lib/2.1/glib2.so +0 -0
- data/lib/2.2/glib2.so +0 -0
- data/lib/glib-mkenums.rb +214 -0
- data/lib/glib2.rb +231 -0
- data/lib/glib2/deprecatable.rb +153 -0
- data/lib/gnome2-raketask.rb +8 -0
- data/lib/gnome2/rake/external-package.rb +227 -0
- data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
- data/lib/gnome2/rake/package-task.rb +273 -0
- data/lib/gnome2/rake/package.rb +152 -0
- data/lib/gnome2/rake/source-download-task.rb +82 -0
- data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
- data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
- data/lib/mkmf-gnome2.rb +637 -0
- data/sample/bookmarkfile.rb +66 -0
- data/sample/idle.rb +41 -0
- data/sample/iochannel.rb +44 -0
- data/sample/keyfile.rb +62 -0
- data/sample/shell.rb +36 -0
- data/sample/spawn.rb +25 -0
- data/sample/timeout.rb +28 -0
- data/sample/timeout2.rb +35 -0
- data/sample/timer.rb +40 -0
- data/sample/type-register.rb +103 -0
- data/sample/type-register2.rb +104 -0
- data/sample/utils.rb +54 -0
- data/test/glib-test-init.rb +5 -0
- data/test/glib-test-utils.rb +12 -0
- data/test/run-test.rb +21 -0
- data/test/test_enum.rb +99 -0
- data/test/test_file_utils.rb +53 -0
- data/test/test_flags.rb +129 -0
- data/test/test_glib2.rb +122 -0
- data/test/test_iochannel.rb +275 -0
- data/test/test_key_file.rb +42 -0
- data/test/test_mkenums.rb +25 -0
- data/test/test_poll_fd.rb +26 -0
- data/test/test_signal.rb +20 -0
- data/test/test_source.rb +63 -0
- data/test/test_spawn.rb +33 -0
- data/test/test_timeout.rb +28 -0
- data/test/test_unicode.rb +394 -0
- data/test/test_utils.rb +37 -0
- data/test/test_value.rb +31 -0
- data/test/test_win32.rb +13 -0
- data/vendor/local/bin/certtool.exe +0 -0
- data/vendor/local/bin/danetool.exe +0 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/gdbus-codegen +39 -0
- data/vendor/local/bin/gdbus.exe +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +121 -0
- data/vendor/local/bin/gio-querymodules.exe +0 -0
- data/vendor/local/bin/glib-compile-resources.exe +0 -0
- data/vendor/local/bin/glib-compile-schemas.exe +0 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +187 -0
- data/vendor/local/bin/glib-mkenums +565 -0
- data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
- data/vendor/local/bin/gnutls-cli.exe +0 -0
- data/vendor/local/bin/gnutls-serv.exe +0 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gresource.exe +0 -0
- data/vendor/local/bin/gsettings.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
- data/vendor/local/bin/iconv.exe +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libcharset-1.dll +0 -0
- data/vendor/local/bin/libffi-6.dll +0 -0
- data/vendor/local/bin/libgio-2.0-0.dll +0 -0
- data/vendor/local/bin/libglib-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmp-10.dll +0 -0
- data/vendor/local/bin/libgnutls-28.def +861 -0
- data/vendor/local/bin/libgnutls-28.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
- data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
- data/vendor/local/bin/libgnutls-xssl-28.def +13 -0
- data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
- data/vendor/local/bin/libhogweed-2-5.dll +0 -0
- data/vendor/local/bin/libiconv-2.dll +0 -0
- data/vendor/local/bin/libintl-8.dll +0 -0
- data/vendor/local/bin/libnettle-4-7.dll +0 -0
- data/vendor/local/bin/nettle-hash.exe +0 -0
- data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/bin/ocsptool.exe +0 -0
- data/vendor/local/bin/pkcs1-conv.exe +0 -0
- data/vendor/local/bin/psktool.exe +0 -0
- data/vendor/local/bin/sexp-conv.exe +0 -0
- data/vendor/local/bin/srptool.exe +0 -0
- data/vendor/local/include/autosprintf.h +67 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
- data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
- data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
- data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
- data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
- data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
- data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
- data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
- data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
- data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
- data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
- data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
- data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
- data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
- data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
- data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
- data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
- data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
- data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
- data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
- data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
- data/vendor/local/include/glib-2.0/glib-object.h +40 -0
- data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
- data/vendor/local/include/glib-2.0/glib.h +112 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
- data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
- data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
- data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
- data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
- data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
- data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
- data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
- data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
- data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
- data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
- data/vendor/local/include/glib-2.0/gmodule.h +115 -0
- data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
- data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
- data/vendor/local/include/gmp.h +2301 -0
- data/vendor/local/include/gnutls/abstract.h +454 -0
- data/vendor/local/include/gnutls/compat.h +401 -0
- data/vendor/local/include/gnutls/crypto.h +117 -0
- data/vendor/local/include/gnutls/dtls.h +92 -0
- data/vendor/local/include/gnutls/gnutls.h +2299 -0
- data/vendor/local/include/gnutls/ocsp.h +257 -0
- data/vendor/local/include/gnutls/openpgp.h +366 -0
- data/vendor/local/include/gnutls/openssl.h +329 -0
- data/vendor/local/include/gnutls/pkcs11.h +356 -0
- data/vendor/local/include/gnutls/pkcs12.h +135 -0
- data/vendor/local/include/gnutls/tpm.h +79 -0
- data/vendor/local/include/gnutls/x509.h +1192 -0
- data/vendor/local/include/gnutls/xssl.h +125 -0
- data/vendor/local/include/iconv.h +242 -0
- data/vendor/local/include/libcharset.h +46 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/include/localcharset.h +42 -0
- data/vendor/local/include/nettle/aes.h +85 -0
- data/vendor/local/include/nettle/arcfour.h +66 -0
- data/vendor/local/include/nettle/arctwo.h +82 -0
- data/vendor/local/include/nettle/asn1.h +144 -0
- data/vendor/local/include/nettle/base16.h +106 -0
- data/vendor/local/include/nettle/base64.h +153 -0
- data/vendor/local/include/nettle/bignum.h +121 -0
- data/vendor/local/include/nettle/blowfish.h +76 -0
- data/vendor/local/include/nettle/buffer.h +98 -0
- data/vendor/local/include/nettle/camellia.h +82 -0
- data/vendor/local/include/nettle/cast128.h +77 -0
- data/vendor/local/include/nettle/cbc.h +76 -0
- data/vendor/local/include/nettle/ctr.h +62 -0
- data/vendor/local/include/nettle/des-compat.h +154 -0
- data/vendor/local/include/nettle/des.h +111 -0
- data/vendor/local/include/nettle/dsa.h +293 -0
- data/vendor/local/include/nettle/ecc-curve.h +45 -0
- data/vendor/local/include/nettle/ecc.h +261 -0
- data/vendor/local/include/nettle/ecdsa.h +94 -0
- data/vendor/local/include/nettle/gcm.h +186 -0
- data/vendor/local/include/nettle/gosthash94.h +88 -0
- data/vendor/local/include/nettle/hmac.h +202 -0
- data/vendor/local/include/nettle/knuth-lfib.h +75 -0
- data/vendor/local/include/nettle/macros.h +238 -0
- data/vendor/local/include/nettle/md2.h +69 -0
- data/vendor/local/include/nettle/md4.h +73 -0
- data/vendor/local/include/nettle/md5-compat.h +50 -0
- data/vendor/local/include/nettle/md5.h +76 -0
- data/vendor/local/include/nettle/memxor.h +22 -0
- data/vendor/local/include/nettle/nettle-meta.h +232 -0
- data/vendor/local/include/nettle/nettle-stdint.h +286 -0
- data/vendor/local/include/nettle/nettle-types.h +92 -0
- data/vendor/local/include/nettle/pbkdf2.h +77 -0
- data/vendor/local/include/nettle/pgp.h +240 -0
- data/vendor/local/include/nettle/pkcs1.h +106 -0
- data/vendor/local/include/nettle/realloc.h +41 -0
- data/vendor/local/include/nettle/ripemd160.h +78 -0
- data/vendor/local/include/nettle/rsa-compat.h +131 -0
- data/vendor/local/include/nettle/rsa.h +419 -0
- data/vendor/local/include/nettle/salsa20.h +93 -0
- data/vendor/local/include/nettle/serpent.h +81 -0
- data/vendor/local/include/nettle/sexp.h +212 -0
- data/vendor/local/include/nettle/sha.h +34 -0
- data/vendor/local/include/nettle/sha1.h +78 -0
- data/vendor/local/include/nettle/sha2.h +156 -0
- data/vendor/local/include/nettle/sha3.h +176 -0
- data/vendor/local/include/nettle/twofish.h +78 -0
- data/vendor/local/include/nettle/umac.h +241 -0
- data/vendor/local/include/nettle/yarrow.h +137 -0
- data/vendor/local/lib/charset.alias +4 -0
- data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/libasprintf.a +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libasprintf.la +41 -0
- data/vendor/local/lib/libcharset.a +0 -0
- data/vendor/local/lib/libcharset.dll.a +0 -0
- data/vendor/local/lib/libcharset.la +41 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
- data/vendor/local/lib/libffi.a +0 -0
- data/vendor/local/lib/libffi.dll.a +0 -0
- data/vendor/local/lib/libffi.la +41 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.la +41 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.la +41 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.la +41 -0
- data/vendor/local/lib/libgmp.dll.a +0 -0
- data/vendor/local/lib/libgmp.la +41 -0
- data/vendor/local/lib/libgnutls-openssl.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.la +41 -0
- data/vendor/local/lib/libgnutls-xssl.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.la +41 -0
- data/vendor/local/lib/libgnutls.a +0 -0
- data/vendor/local/lib/libgnutls.dll.a +0 -0
- data/vendor/local/lib/libgnutls.la +41 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.la +41 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.la +41 -0
- data/vendor/local/lib/libhogweed.a +0 -0
- data/vendor/local/lib/libhogweed.dll.a +0 -0
- data/vendor/local/lib/libiconv.dll.a +0 -0
- data/vendor/local/lib/libiconv.la +41 -0
- data/vendor/local/lib/libintl.a +0 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/libintl.la +41 -0
- data/vendor/local/lib/libnettle.a +0 -0
- data/vendor/local/lib/libnettle.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
- data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
- data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
- data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
- data/vendor/local/share/aclocal/gsettings.m4 +83 -0
- data/vendor/local/share/bash-completion/completions/gapplication +55 -0
- data/vendor/local/share/bash-completion/completions/gdbus +33 -0
- data/vendor/local/share/bash-completion/completions/gresource +58 -0
- data/vendor/local/share/bash-completion/completions/gsettings +84 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
- data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
- data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
- data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
- data/vendor/local/share/doc/gettext/envsubst.1.html +139 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
- data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
- data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
- data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
- data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
- data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
- data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
- data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
- data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
- data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
- data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
- data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
- data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
- data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
- data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
- data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
- data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
- data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
- data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
- data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
- data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
- data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
- data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
- data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -0
- data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/gapplication-tool.html +288 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -0
- data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +60 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
- data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
- data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
- data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
- data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +1130 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
- data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
- data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +380 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -0
- data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +677 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +392 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +98 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
- data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt02.html +67 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +48 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/info/autosprintf.info +133 -0
- data/vendor/local/share/info/dir +43 -0
- data/vendor/local/share/info/gmp.info +181 -0
- data/vendor/local/share/info/gmp.info-1 +7073 -0
- data/vendor/local/share/info/gmp.info-2 +3865 -0
- data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
- data/vendor/local/share/info/gnutls-guile.info +1589 -0
- data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
- data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
- data/vendor/local/share/info/gnutls-internals.png +0 -0
- data/vendor/local/share/info/gnutls-layers.png +0 -0
- data/vendor/local/share/info/gnutls-logo.png +0 -0
- data/vendor/local/share/info/gnutls-modauth.png +0 -0
- data/vendor/local/share/info/gnutls-pgp.png +0 -0
- data/vendor/local/share/info/gnutls-x509.png +0 -0
- data/vendor/local/share/info/gnutls.info +1371 -0
- data/vendor/local/share/info/gnutls.info-1 +7371 -0
- data/vendor/local/share/info/gnutls.info-2 +7842 -0
- data/vendor/local/share/info/gnutls.info-3 +11715 -0
- data/vendor/local/share/info/gnutls.info-4 +6737 -0
- data/vendor/local/share/info/gnutls.info-5 +2308 -0
- data/vendor/local/share/info/libffi.info +765 -0
- data/vendor/local/share/info/pkcs11-vision.png +0 -0
- data/vendor/local/share/license/gettext/AUTHORS +2 -0
- data/vendor/local/share/license/gettext/COPYING +13 -0
- data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
- data/vendor/local/share/license/glib-networking/COPYING +481 -0
- data/vendor/local/share/license/glib/AUTHORS +40 -0
- data/vendor/local/share/license/glib/COPYING +482 -0
- data/vendor/local/share/license/gmp/AUTHORS +100 -0
- data/vendor/local/share/license/gmp/COPYING +674 -0
- data/vendor/local/share/license/gnutls/AUTHORS +92 -0
- data/vendor/local/share/license/gnutls/COPYING +674 -0
- data/vendor/local/share/license/libiconv/AUTHORS +1 -0
- data/vendor/local/share/license/libiconv/COPYING +674 -0
- data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
- data/vendor/local/share/license/nettle/AUTHORS +1 -0
- data/vendor/local/share/license/nettle/COPYING.LIB +510 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +75 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/certtool.1 +741 -0
- data/vendor/local/share/man/man1/envsubst.1 +54 -0
- data/vendor/local/share/man/man1/gettext.1 +69 -0
- data/vendor/local/share/man/man1/gnutls-cli-debug.1 +165 -0
- data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
- data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
- data/vendor/local/share/man/man1/iconv.1 +108 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man1/ocsptool.1 +335 -0
- data/vendor/local/share/man/man1/p11tool.1 +320 -0
- data/vendor/local/share/man/man1/psktool.1 +129 -0
- data/vendor/local/share/man/man1/srptool.1 +164 -0
- data/vendor/local/share/man/man1/tpmtool.1 +223 -0
- data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
- data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
- data/vendor/local/share/man/man3/dcgettext.3 +1 -0
- data/vendor/local/share/man/man3/dcngettext.3 +1 -0
- data/vendor/local/share/man/man3/dgettext.3 +1 -0
- data/vendor/local/share/man/man3/dngettext.3 +1 -0
- data/vendor/local/share/man/man3/ffi.3 +41 -0
- data/vendor/local/share/man/man3/ffi_call.3 +103 -0
- data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
- data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -0
- data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
- data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
- data/vendor/local/share/man/man3/iconv.3 +92 -0
- data/vendor/local/share/man/man3/iconv_close.3 +31 -0
- data/vendor/local/share/man/man3/iconv_open.3 +205 -0
- data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
- data/vendor/local/share/man/man3/iconvctl.3 +67 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
- data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
- data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
- data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
- data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
- data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
- data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
- data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
- data/vendor/local/share/man/man3/xssl_read.3 +43 -0
- data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
- data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
- data/vendor/local/share/man/man3/xssl_write.3 +47 -0
- metadata +2311 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
/* GObject - GLib Type, Object, Parameter and Signal Library
|
2
|
+
* Copyright (C) 2001 Red Hat, Inc.
|
3
|
+
*
|
4
|
+
* This library is free software; you can redistribute it and/or
|
5
|
+
* modify it under the terms of the GNU Lesser General Public
|
6
|
+
* License as published by the Free Software Foundation; either
|
7
|
+
* version 2 of the License, or (at your option) any later version.
|
8
|
+
*
|
9
|
+
* This library is distributed in the hope that it will be useful,
|
10
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
12
|
+
* Lesser General Public License for more details.
|
13
|
+
*
|
14
|
+
* You should have received a copy of the GNU Lesser General
|
15
|
+
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
16
|
+
*/
|
17
|
+
#ifndef __G_SOURCECLOSURE_H__
|
18
|
+
#define __G_SOURCECLOSURE_H__
|
19
|
+
|
20
|
+
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
|
21
|
+
#error "Only <glib-object.h> can be included directly."
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#include <gobject/gclosure.h>
|
25
|
+
#include <gobject/glib-types.h>
|
26
|
+
|
27
|
+
G_BEGIN_DECLS
|
28
|
+
|
29
|
+
GLIB_AVAILABLE_IN_ALL
|
30
|
+
void g_source_set_closure (GSource *source,
|
31
|
+
GClosure *closure);
|
32
|
+
|
33
|
+
GLIB_AVAILABLE_IN_ALL
|
34
|
+
void g_source_set_dummy_callback (GSource *source);
|
35
|
+
|
36
|
+
G_END_DECLS
|
37
|
+
|
38
|
+
#endif /* __G_SOURCECLOSURE_H__ */
|
@@ -0,0 +1,1990 @@
|
|
1
|
+
/* GObject - GLib Type, Object, Parameter and Signal Library
|
2
|
+
* Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
|
3
|
+
*
|
4
|
+
* This library is free software; you can redistribute it and/or
|
5
|
+
* modify it under the terms of the GNU Lesser General Public
|
6
|
+
* License as published by the Free Software Foundation; either
|
7
|
+
* version 2 of the License, or (at your option) any later version.
|
8
|
+
*
|
9
|
+
* This library is distributed in the hope that it will be useful,
|
10
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
12
|
+
* Lesser General Public License for more details.
|
13
|
+
*
|
14
|
+
* You should have received a copy of the GNU Lesser General
|
15
|
+
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
16
|
+
*/
|
17
|
+
#ifndef __G_TYPE_H__
|
18
|
+
#define __G_TYPE_H__
|
19
|
+
|
20
|
+
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
|
21
|
+
#error "Only <glib-object.h> can be included directly."
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#include <glib.h>
|
25
|
+
|
26
|
+
G_BEGIN_DECLS
|
27
|
+
|
28
|
+
/* Basic Type Macros
|
29
|
+
*/
|
30
|
+
/**
|
31
|
+
* G_TYPE_FUNDAMENTAL:
|
32
|
+
* @type: A #GType value.
|
33
|
+
*
|
34
|
+
* The fundamental type which is the ancestor of @type.
|
35
|
+
* Fundamental types are types that serve as ultimate bases for the derived types,
|
36
|
+
* thus they are the roots of distinct inheritance hierarchies.
|
37
|
+
*/
|
38
|
+
#define G_TYPE_FUNDAMENTAL(type) (g_type_fundamental (type))
|
39
|
+
/**
|
40
|
+
* G_TYPE_FUNDAMENTAL_MAX:
|
41
|
+
*
|
42
|
+
* An integer constant that represents the number of identifiers reserved
|
43
|
+
* for types that are assigned at compile-time.
|
44
|
+
*/
|
45
|
+
#define G_TYPE_FUNDAMENTAL_MAX (255 << G_TYPE_FUNDAMENTAL_SHIFT)
|
46
|
+
|
47
|
+
/* Constant fundamental types,
|
48
|
+
*/
|
49
|
+
/**
|
50
|
+
* G_TYPE_INVALID:
|
51
|
+
*
|
52
|
+
* An invalid #GType used as error return value in some functions which return
|
53
|
+
* a #GType.
|
54
|
+
*/
|
55
|
+
#define G_TYPE_INVALID G_TYPE_MAKE_FUNDAMENTAL (0)
|
56
|
+
/**
|
57
|
+
* G_TYPE_NONE:
|
58
|
+
*
|
59
|
+
* A fundamental type which is used as a replacement for the C
|
60
|
+
* void return type.
|
61
|
+
*/
|
62
|
+
#define G_TYPE_NONE G_TYPE_MAKE_FUNDAMENTAL (1)
|
63
|
+
/**
|
64
|
+
* G_TYPE_INTERFACE:
|
65
|
+
*
|
66
|
+
* The fundamental type from which all interfaces are derived.
|
67
|
+
*/
|
68
|
+
#define G_TYPE_INTERFACE G_TYPE_MAKE_FUNDAMENTAL (2)
|
69
|
+
/**
|
70
|
+
* G_TYPE_CHAR:
|
71
|
+
*
|
72
|
+
* The fundamental type corresponding to #gchar.
|
73
|
+
* The type designated by G_TYPE_CHAR is unconditionally an 8-bit signed integer.
|
74
|
+
* This may or may not be the same type a the C type "gchar".
|
75
|
+
*/
|
76
|
+
#define G_TYPE_CHAR G_TYPE_MAKE_FUNDAMENTAL (3)
|
77
|
+
/**
|
78
|
+
* G_TYPE_UCHAR:
|
79
|
+
*
|
80
|
+
* The fundamental type corresponding to #guchar.
|
81
|
+
*/
|
82
|
+
#define G_TYPE_UCHAR G_TYPE_MAKE_FUNDAMENTAL (4)
|
83
|
+
/**
|
84
|
+
* G_TYPE_BOOLEAN:
|
85
|
+
*
|
86
|
+
* The fundamental type corresponding to #gboolean.
|
87
|
+
*/
|
88
|
+
#define G_TYPE_BOOLEAN G_TYPE_MAKE_FUNDAMENTAL (5)
|
89
|
+
/**
|
90
|
+
* G_TYPE_INT:
|
91
|
+
*
|
92
|
+
* The fundamental type corresponding to #gint.
|
93
|
+
*/
|
94
|
+
#define G_TYPE_INT G_TYPE_MAKE_FUNDAMENTAL (6)
|
95
|
+
/**
|
96
|
+
* G_TYPE_UINT:
|
97
|
+
*
|
98
|
+
* The fundamental type corresponding to #guint.
|
99
|
+
*/
|
100
|
+
#define G_TYPE_UINT G_TYPE_MAKE_FUNDAMENTAL (7)
|
101
|
+
/**
|
102
|
+
* G_TYPE_LONG:
|
103
|
+
*
|
104
|
+
* The fundamental type corresponding to #glong.
|
105
|
+
*/
|
106
|
+
#define G_TYPE_LONG G_TYPE_MAKE_FUNDAMENTAL (8)
|
107
|
+
/**
|
108
|
+
* G_TYPE_ULONG:
|
109
|
+
*
|
110
|
+
* The fundamental type corresponding to #gulong.
|
111
|
+
*/
|
112
|
+
#define G_TYPE_ULONG G_TYPE_MAKE_FUNDAMENTAL (9)
|
113
|
+
/**
|
114
|
+
* G_TYPE_INT64:
|
115
|
+
*
|
116
|
+
* The fundamental type corresponding to #gint64.
|
117
|
+
*/
|
118
|
+
#define G_TYPE_INT64 G_TYPE_MAKE_FUNDAMENTAL (10)
|
119
|
+
/**
|
120
|
+
* G_TYPE_UINT64:
|
121
|
+
*
|
122
|
+
* The fundamental type corresponding to #guint64.
|
123
|
+
*/
|
124
|
+
#define G_TYPE_UINT64 G_TYPE_MAKE_FUNDAMENTAL (11)
|
125
|
+
/**
|
126
|
+
* G_TYPE_ENUM:
|
127
|
+
*
|
128
|
+
* The fundamental type from which all enumeration types are derived.
|
129
|
+
*/
|
130
|
+
#define G_TYPE_ENUM G_TYPE_MAKE_FUNDAMENTAL (12)
|
131
|
+
/**
|
132
|
+
* G_TYPE_FLAGS:
|
133
|
+
*
|
134
|
+
* The fundamental type from which all flags types are derived.
|
135
|
+
*/
|
136
|
+
#define G_TYPE_FLAGS G_TYPE_MAKE_FUNDAMENTAL (13)
|
137
|
+
/**
|
138
|
+
* G_TYPE_FLOAT:
|
139
|
+
*
|
140
|
+
* The fundamental type corresponding to #gfloat.
|
141
|
+
*/
|
142
|
+
#define G_TYPE_FLOAT G_TYPE_MAKE_FUNDAMENTAL (14)
|
143
|
+
/**
|
144
|
+
* G_TYPE_DOUBLE:
|
145
|
+
*
|
146
|
+
* The fundamental type corresponding to #gdouble.
|
147
|
+
*/
|
148
|
+
#define G_TYPE_DOUBLE G_TYPE_MAKE_FUNDAMENTAL (15)
|
149
|
+
/**
|
150
|
+
* G_TYPE_STRING:
|
151
|
+
*
|
152
|
+
* The fundamental type corresponding to nul-terminated C strings.
|
153
|
+
*/
|
154
|
+
#define G_TYPE_STRING G_TYPE_MAKE_FUNDAMENTAL (16)
|
155
|
+
/**
|
156
|
+
* G_TYPE_POINTER:
|
157
|
+
*
|
158
|
+
* The fundamental type corresponding to #gpointer.
|
159
|
+
*/
|
160
|
+
#define G_TYPE_POINTER G_TYPE_MAKE_FUNDAMENTAL (17)
|
161
|
+
/**
|
162
|
+
* G_TYPE_BOXED:
|
163
|
+
*
|
164
|
+
* The fundamental type from which all boxed types are derived.
|
165
|
+
*/
|
166
|
+
#define G_TYPE_BOXED G_TYPE_MAKE_FUNDAMENTAL (18)
|
167
|
+
/**
|
168
|
+
* G_TYPE_PARAM:
|
169
|
+
*
|
170
|
+
* The fundamental type from which all #GParamSpec types are derived.
|
171
|
+
*/
|
172
|
+
#define G_TYPE_PARAM G_TYPE_MAKE_FUNDAMENTAL (19)
|
173
|
+
/**
|
174
|
+
* G_TYPE_OBJECT:
|
175
|
+
*
|
176
|
+
* The fundamental type for #GObject.
|
177
|
+
*/
|
178
|
+
#define G_TYPE_OBJECT G_TYPE_MAKE_FUNDAMENTAL (20)
|
179
|
+
/**
|
180
|
+
* G_TYPE_VARIANT:
|
181
|
+
*
|
182
|
+
* The fundamental type corresponding to #GVariant.
|
183
|
+
*
|
184
|
+
* All floating #GVariant instances passed through the #GType system are
|
185
|
+
* consumed.
|
186
|
+
*
|
187
|
+
* Note that callbacks in closures, and signal handlers
|
188
|
+
* for signals of return type %G_TYPE_VARIANT, must never return floating
|
189
|
+
* variants.
|
190
|
+
*
|
191
|
+
* Note: GLib 2.24 did include a boxed type with this name. It was replaced
|
192
|
+
* with this fundamental type in 2.26.
|
193
|
+
*
|
194
|
+
* Since: 2.26
|
195
|
+
*/
|
196
|
+
#define G_TYPE_VARIANT G_TYPE_MAKE_FUNDAMENTAL (21)
|
197
|
+
|
198
|
+
|
199
|
+
/* Reserved fundamental type numbers to create new fundamental
|
200
|
+
* type IDs with G_TYPE_MAKE_FUNDAMENTAL().
|
201
|
+
* Send email to gtk-devel-list@gnome.org for reservations.
|
202
|
+
*/
|
203
|
+
/**
|
204
|
+
* G_TYPE_FUNDAMENTAL_SHIFT:
|
205
|
+
*
|
206
|
+
* Shift value used in converting numbers to type IDs.
|
207
|
+
*/
|
208
|
+
#define G_TYPE_FUNDAMENTAL_SHIFT (2)
|
209
|
+
/**
|
210
|
+
* G_TYPE_MAKE_FUNDAMENTAL:
|
211
|
+
* @x: the fundamental type number.
|
212
|
+
*
|
213
|
+
* Get the type ID for the fundamental type number @x.
|
214
|
+
* Use g_type_fundamental_next() instead of this macro to create new fundamental
|
215
|
+
* types.
|
216
|
+
*
|
217
|
+
* Returns: the GType
|
218
|
+
*/
|
219
|
+
#define G_TYPE_MAKE_FUNDAMENTAL(x) ((GType) ((x) << G_TYPE_FUNDAMENTAL_SHIFT))
|
220
|
+
/**
|
221
|
+
* G_TYPE_RESERVED_GLIB_FIRST:
|
222
|
+
*
|
223
|
+
* First fundamental type number to create a new fundamental type id with
|
224
|
+
* G_TYPE_MAKE_FUNDAMENTAL() reserved for GLib.
|
225
|
+
*/
|
226
|
+
#define G_TYPE_RESERVED_GLIB_FIRST (22)
|
227
|
+
/**
|
228
|
+
* G_TYPE_RESERVED_GLIB_LAST:
|
229
|
+
*
|
230
|
+
* Last fundamental type number reserved for GLib.
|
231
|
+
*/
|
232
|
+
#define G_TYPE_RESERVED_GLIB_LAST (31)
|
233
|
+
/**
|
234
|
+
* G_TYPE_RESERVED_BSE_FIRST:
|
235
|
+
*
|
236
|
+
* First fundamental type number to create a new fundamental type id with
|
237
|
+
* G_TYPE_MAKE_FUNDAMENTAL() reserved for BSE.
|
238
|
+
*/
|
239
|
+
#define G_TYPE_RESERVED_BSE_FIRST (32)
|
240
|
+
/**
|
241
|
+
* G_TYPE_RESERVED_BSE_LAST:
|
242
|
+
*
|
243
|
+
* Last fundamental type number reserved for BSE.
|
244
|
+
*/
|
245
|
+
#define G_TYPE_RESERVED_BSE_LAST (48)
|
246
|
+
/**
|
247
|
+
* G_TYPE_RESERVED_USER_FIRST:
|
248
|
+
*
|
249
|
+
* First available fundamental type number to create new fundamental
|
250
|
+
* type id with G_TYPE_MAKE_FUNDAMENTAL().
|
251
|
+
*/
|
252
|
+
#define G_TYPE_RESERVED_USER_FIRST (49)
|
253
|
+
|
254
|
+
|
255
|
+
/* Type Checking Macros
|
256
|
+
*/
|
257
|
+
/**
|
258
|
+
* G_TYPE_IS_FUNDAMENTAL:
|
259
|
+
* @type: A #GType value
|
260
|
+
*
|
261
|
+
* Checks if @type is a fundamental type.
|
262
|
+
*
|
263
|
+
* Returns: %TRUE on success
|
264
|
+
*/
|
265
|
+
#define G_TYPE_IS_FUNDAMENTAL(type) ((type) <= G_TYPE_FUNDAMENTAL_MAX)
|
266
|
+
/**
|
267
|
+
* G_TYPE_IS_DERIVED:
|
268
|
+
* @type: A #GType value
|
269
|
+
*
|
270
|
+
* Checks if @type is derived (or in object-oriented terminology:
|
271
|
+
* inherited) from another type (this holds true for all non-fundamental
|
272
|
+
* types).
|
273
|
+
*
|
274
|
+
* Returns: %TRUE on success
|
275
|
+
*/
|
276
|
+
#define G_TYPE_IS_DERIVED(type) ((type) > G_TYPE_FUNDAMENTAL_MAX)
|
277
|
+
/**
|
278
|
+
* G_TYPE_IS_INTERFACE:
|
279
|
+
* @type: A #GType value
|
280
|
+
*
|
281
|
+
* Checks if @type is an interface type.
|
282
|
+
* An interface type provides a pure API, the implementation
|
283
|
+
* of which is provided by another type (which is then said to conform
|
284
|
+
* to the interface). GLib interfaces are somewhat analogous to Java
|
285
|
+
* interfaces and C++ classes containing only pure virtual functions,
|
286
|
+
* with the difference that GType interfaces are not derivable (but see
|
287
|
+
* g_type_interface_add_prerequisite() for an alternative).
|
288
|
+
*
|
289
|
+
* Returns: %TRUE on success
|
290
|
+
*/
|
291
|
+
#define G_TYPE_IS_INTERFACE(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_INTERFACE)
|
292
|
+
/**
|
293
|
+
* G_TYPE_IS_CLASSED:
|
294
|
+
* @type: A #GType value
|
295
|
+
*
|
296
|
+
* Checks if @type is a classed type.
|
297
|
+
*
|
298
|
+
* Returns: %TRUE on success
|
299
|
+
*/
|
300
|
+
#define G_TYPE_IS_CLASSED(type) (g_type_test_flags ((type), G_TYPE_FLAG_CLASSED))
|
301
|
+
/**
|
302
|
+
* G_TYPE_IS_INSTANTIATABLE:
|
303
|
+
* @type: A #GType value
|
304
|
+
*
|
305
|
+
* Checks if @type can be instantiated. Instantiation is the
|
306
|
+
* process of creating an instance (object) of this type.
|
307
|
+
*
|
308
|
+
* Returns: %TRUE on success
|
309
|
+
*/
|
310
|
+
#define G_TYPE_IS_INSTANTIATABLE(type) (g_type_test_flags ((type), G_TYPE_FLAG_INSTANTIATABLE))
|
311
|
+
/**
|
312
|
+
* G_TYPE_IS_DERIVABLE:
|
313
|
+
* @type: A #GType value
|
314
|
+
*
|
315
|
+
* Checks if @type is a derivable type. A derivable type can
|
316
|
+
* be used as the base class of a flat (single-level) class hierarchy.
|
317
|
+
*
|
318
|
+
* Returns: %TRUE on success
|
319
|
+
*/
|
320
|
+
#define G_TYPE_IS_DERIVABLE(type) (g_type_test_flags ((type), G_TYPE_FLAG_DERIVABLE))
|
321
|
+
/**
|
322
|
+
* G_TYPE_IS_DEEP_DERIVABLE:
|
323
|
+
* @type: A #GType value
|
324
|
+
*
|
325
|
+
* Checks if @type is a deep derivable type. A deep derivable type
|
326
|
+
* can be used as the base class of a deep (multi-level) class hierarchy.
|
327
|
+
*
|
328
|
+
* Returns: %TRUE on success
|
329
|
+
*/
|
330
|
+
#define G_TYPE_IS_DEEP_DERIVABLE(type) (g_type_test_flags ((type), G_TYPE_FLAG_DEEP_DERIVABLE))
|
331
|
+
/**
|
332
|
+
* G_TYPE_IS_ABSTRACT:
|
333
|
+
* @type: A #GType value
|
334
|
+
*
|
335
|
+
* Checks if @type is an abstract type. An abstract type cannot be
|
336
|
+
* instantiated and is normally used as an abstract base class for
|
337
|
+
* derived classes.
|
338
|
+
*
|
339
|
+
* Returns: %TRUE on success
|
340
|
+
*/
|
341
|
+
#define G_TYPE_IS_ABSTRACT(type) (g_type_test_flags ((type), G_TYPE_FLAG_ABSTRACT))
|
342
|
+
/**
|
343
|
+
* G_TYPE_IS_VALUE_ABSTRACT:
|
344
|
+
* @type: A #GType value
|
345
|
+
*
|
346
|
+
* Checks if @type is an abstract value type. An abstract value type introduces
|
347
|
+
* a value table, but can't be used for g_value_init() and is normally used as
|
348
|
+
* an abstract base type for derived value types.
|
349
|
+
*
|
350
|
+
* Returns: %TRUE on success
|
351
|
+
*/
|
352
|
+
#define G_TYPE_IS_VALUE_ABSTRACT(type) (g_type_test_flags ((type), G_TYPE_FLAG_VALUE_ABSTRACT))
|
353
|
+
/**
|
354
|
+
* G_TYPE_IS_VALUE_TYPE:
|
355
|
+
* @type: A #GType value
|
356
|
+
*
|
357
|
+
* Checks if @type is a value type and can be used with g_value_init().
|
358
|
+
*
|
359
|
+
* Returns: %TRUE on success
|
360
|
+
*/
|
361
|
+
#define G_TYPE_IS_VALUE_TYPE(type) (g_type_check_is_value_type (type))
|
362
|
+
/**
|
363
|
+
* G_TYPE_HAS_VALUE_TABLE:
|
364
|
+
* @type: A #GType value
|
365
|
+
*
|
366
|
+
* Checks if @type has a #GTypeValueTable.
|
367
|
+
*
|
368
|
+
* Returns: %TRUE on success
|
369
|
+
*/
|
370
|
+
#define G_TYPE_HAS_VALUE_TABLE(type) (g_type_value_table_peek (type) != NULL)
|
371
|
+
|
372
|
+
|
373
|
+
/* Typedefs
|
374
|
+
*/
|
375
|
+
/**
|
376
|
+
* GType:
|
377
|
+
*
|
378
|
+
* A numerical value which represents the unique identifier of a registered
|
379
|
+
* type.
|
380
|
+
*/
|
381
|
+
#if GLIB_SIZEOF_SIZE_T != GLIB_SIZEOF_LONG || !defined __cplusplus
|
382
|
+
typedef gsize GType;
|
383
|
+
#else /* for historic reasons, C++ links against gulong GTypes */
|
384
|
+
typedef gulong GType;
|
385
|
+
#endif
|
386
|
+
typedef struct _GValue GValue;
|
387
|
+
typedef union _GTypeCValue GTypeCValue;
|
388
|
+
typedef struct _GTypePlugin GTypePlugin;
|
389
|
+
typedef struct _GTypeClass GTypeClass;
|
390
|
+
typedef struct _GTypeInterface GTypeInterface;
|
391
|
+
typedef struct _GTypeInstance GTypeInstance;
|
392
|
+
typedef struct _GTypeInfo GTypeInfo;
|
393
|
+
typedef struct _GTypeFundamentalInfo GTypeFundamentalInfo;
|
394
|
+
typedef struct _GInterfaceInfo GInterfaceInfo;
|
395
|
+
typedef struct _GTypeValueTable GTypeValueTable;
|
396
|
+
typedef struct _GTypeQuery GTypeQuery;
|
397
|
+
|
398
|
+
|
399
|
+
/* Basic Type Structures
|
400
|
+
*/
|
401
|
+
/**
|
402
|
+
* GTypeClass:
|
403
|
+
*
|
404
|
+
* An opaque structure used as the base of all classes.
|
405
|
+
*/
|
406
|
+
struct _GTypeClass
|
407
|
+
{
|
408
|
+
/*< private >*/
|
409
|
+
GType g_type;
|
410
|
+
};
|
411
|
+
/**
|
412
|
+
* GTypeInstance:
|
413
|
+
*
|
414
|
+
* An opaque structure used as the base of all type instances.
|
415
|
+
*/
|
416
|
+
struct _GTypeInstance
|
417
|
+
{
|
418
|
+
/*< private >*/
|
419
|
+
GTypeClass *g_class;
|
420
|
+
};
|
421
|
+
/**
|
422
|
+
* GTypeInterface:
|
423
|
+
*
|
424
|
+
* An opaque structure used as the base of all interface types.
|
425
|
+
*/
|
426
|
+
struct _GTypeInterface
|
427
|
+
{
|
428
|
+
/*< private >*/
|
429
|
+
GType g_type; /* iface type */
|
430
|
+
GType g_instance_type;
|
431
|
+
};
|
432
|
+
/**
|
433
|
+
* GTypeQuery:
|
434
|
+
* @type: the #GType value of the type
|
435
|
+
* @type_name: the name of the type
|
436
|
+
* @class_size: the size of the class structure
|
437
|
+
* @instance_size: the size of the instance structure
|
438
|
+
*
|
439
|
+
* A structure holding information for a specific type.
|
440
|
+
* It is filled in by the g_type_query() function.
|
441
|
+
*/
|
442
|
+
struct _GTypeQuery
|
443
|
+
{
|
444
|
+
GType type;
|
445
|
+
const gchar *type_name;
|
446
|
+
guint class_size;
|
447
|
+
guint instance_size;
|
448
|
+
};
|
449
|
+
|
450
|
+
|
451
|
+
/* Casts, checks and accessors for structured types
|
452
|
+
* usage of these macros is reserved to type implementations only
|
453
|
+
*/
|
454
|
+
/*< protected >*/
|
455
|
+
/**
|
456
|
+
* G_TYPE_CHECK_INSTANCE:
|
457
|
+
* @instance: Location of a #GTypeInstance structure
|
458
|
+
*
|
459
|
+
* Checks if @instance is a valid #GTypeInstance structure,
|
460
|
+
* otherwise issues a warning and returns %FALSE.
|
461
|
+
*
|
462
|
+
* This macro should only be used in type implementations.
|
463
|
+
*
|
464
|
+
* Returns: %TRUE on success
|
465
|
+
*/
|
466
|
+
#define G_TYPE_CHECK_INSTANCE(instance) (_G_TYPE_CHI ((GTypeInstance*) (instance)))
|
467
|
+
/**
|
468
|
+
* G_TYPE_CHECK_INSTANCE_CAST:
|
469
|
+
* @instance: Location of a #GTypeInstance structure
|
470
|
+
* @g_type: The type to be returned
|
471
|
+
* @c_type: The corresponding C type of @g_type
|
472
|
+
*
|
473
|
+
* Checks that @instance is an instance of the type identified by @g_type
|
474
|
+
* and issues a warning if this is not the case. Returns @instance casted
|
475
|
+
* to a pointer to @c_type.
|
476
|
+
*
|
477
|
+
* This macro should only be used in type implementations.
|
478
|
+
*/
|
479
|
+
#define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type) (_G_TYPE_CIC ((instance), (g_type), c_type))
|
480
|
+
/**
|
481
|
+
* G_TYPE_CHECK_INSTANCE_TYPE:
|
482
|
+
* @instance: Location of a #GTypeInstance structure.
|
483
|
+
* @g_type: The type to be checked
|
484
|
+
*
|
485
|
+
* Checks if @instance is an instance of the type identified by @g_type.
|
486
|
+
*
|
487
|
+
* This macro should only be used in type implementations.
|
488
|
+
*
|
489
|
+
* Returns: %TRUE on success
|
490
|
+
*/
|
491
|
+
#define G_TYPE_CHECK_INSTANCE_TYPE(instance, g_type) (_G_TYPE_CIT ((instance), (g_type)))
|
492
|
+
/**
|
493
|
+
* G_TYPE_CHECK_INSTANCE_FUNDAMENTAL_TYPE:
|
494
|
+
* @instance: Location of a #GTypeInstance structure.
|
495
|
+
* @g_type: The fundamental type to be checked
|
496
|
+
*
|
497
|
+
* Checks if @instance is an instance of the fundamental type identified by @g_type.
|
498
|
+
*
|
499
|
+
* This macro should only be used in type implementations.
|
500
|
+
*
|
501
|
+
* Returns: %TRUE on success
|
502
|
+
*/
|
503
|
+
#define G_TYPE_CHECK_INSTANCE_FUNDAMENTAL_TYPE(instance, g_type) (_G_TYPE_CIFT ((instance), (g_type)))
|
504
|
+
/**
|
505
|
+
* G_TYPE_INSTANCE_GET_CLASS:
|
506
|
+
* @instance: Location of the #GTypeInstance structure
|
507
|
+
* @g_type: The #GType of the class to be returned
|
508
|
+
* @c_type: The C type of the class structure
|
509
|
+
*
|
510
|
+
* Get the class structure of a given @instance, casted
|
511
|
+
* to a specified ancestor type @g_type of the instance.
|
512
|
+
*
|
513
|
+
* Note that while calling a GInstanceInitFunc(), the class pointer
|
514
|
+
* gets modified, so it might not always return the expected pointer.
|
515
|
+
*
|
516
|
+
* This macro should only be used in type implementations.
|
517
|
+
*
|
518
|
+
* Returns: a pointer to the class structure
|
519
|
+
*/
|
520
|
+
#define G_TYPE_INSTANCE_GET_CLASS(instance, g_type, c_type) (_G_TYPE_IGC ((instance), (g_type), c_type))
|
521
|
+
/**
|
522
|
+
* G_TYPE_INSTANCE_GET_INTERFACE:
|
523
|
+
* @instance: Location of the #GTypeInstance structure
|
524
|
+
* @g_type: The #GType of the interface to be returned
|
525
|
+
* @c_type: The C type of the interface structure
|
526
|
+
*
|
527
|
+
* Get the interface structure for interface @g_type of a given @instance.
|
528
|
+
*
|
529
|
+
* This macro should only be used in type implementations.
|
530
|
+
*
|
531
|
+
* Returns: a pointer to the interface structure
|
532
|
+
*/
|
533
|
+
#define G_TYPE_INSTANCE_GET_INTERFACE(instance, g_type, c_type) (_G_TYPE_IGI ((instance), (g_type), c_type))
|
534
|
+
/**
|
535
|
+
* G_TYPE_CHECK_CLASS_CAST:
|
536
|
+
* @g_class: Location of a #GTypeClass structure
|
537
|
+
* @g_type: The type to be returned
|
538
|
+
* @c_type: The corresponding C type of class structure of @g_type
|
539
|
+
*
|
540
|
+
* Checks that @g_class is a class structure of the type identified by @g_type
|
541
|
+
* and issues a warning if this is not the case. Returns @g_class casted
|
542
|
+
* to a pointer to @c_type.
|
543
|
+
*
|
544
|
+
* This macro should only be used in type implementations.
|
545
|
+
*/
|
546
|
+
#define G_TYPE_CHECK_CLASS_CAST(g_class, g_type, c_type) (_G_TYPE_CCC ((g_class), (g_type), c_type))
|
547
|
+
/**
|
548
|
+
* G_TYPE_CHECK_CLASS_TYPE:
|
549
|
+
* @g_class: Location of a #GTypeClass structure
|
550
|
+
* @g_type: The type to be checked
|
551
|
+
*
|
552
|
+
* Checks if @g_class is a class structure of the type identified by
|
553
|
+
* @g_type.
|
554
|
+
*
|
555
|
+
* This macro should only be used in type implementations.
|
556
|
+
*
|
557
|
+
* Returns: %TRUE on success
|
558
|
+
*/
|
559
|
+
#define G_TYPE_CHECK_CLASS_TYPE(g_class, g_type) (_G_TYPE_CCT ((g_class), (g_type)))
|
560
|
+
/**
|
561
|
+
* G_TYPE_CHECK_VALUE:
|
562
|
+
* @value: a #GValue
|
563
|
+
*
|
564
|
+
* Checks if @value has been initialized to hold values
|
565
|
+
* of a value type.
|
566
|
+
*
|
567
|
+
* This macro should only be used in type implementations.
|
568
|
+
*
|
569
|
+
* Returns: %TRUE on success
|
570
|
+
*/
|
571
|
+
#define G_TYPE_CHECK_VALUE(value) (_G_TYPE_CHV ((value)))
|
572
|
+
/**
|
573
|
+
* G_TYPE_CHECK_VALUE_TYPE:
|
574
|
+
* @value: a #GValue
|
575
|
+
* @g_type: The type to be checked
|
576
|
+
*
|
577
|
+
* Checks if @value has been initialized to hold values
|
578
|
+
* of type @g_type.
|
579
|
+
*
|
580
|
+
* This macro should only be used in type implementations.
|
581
|
+
*
|
582
|
+
* Returns: %TRUE on success
|
583
|
+
*/
|
584
|
+
#define G_TYPE_CHECK_VALUE_TYPE(value, g_type) (_G_TYPE_CVH ((value), (g_type)))
|
585
|
+
/**
|
586
|
+
* G_TYPE_FROM_INSTANCE:
|
587
|
+
* @instance: Location of a valid #GTypeInstance structure
|
588
|
+
*
|
589
|
+
* Get the type identifier from a given @instance structure.
|
590
|
+
*
|
591
|
+
* This macro should only be used in type implementations.
|
592
|
+
*
|
593
|
+
* Returns: the #GType
|
594
|
+
*/
|
595
|
+
#define G_TYPE_FROM_INSTANCE(instance) (G_TYPE_FROM_CLASS (((GTypeInstance*) (instance))->g_class))
|
596
|
+
/**
|
597
|
+
* G_TYPE_FROM_CLASS:
|
598
|
+
* @g_class: Location of a valid #GTypeClass structure
|
599
|
+
*
|
600
|
+
* Get the type identifier from a given @class structure.
|
601
|
+
*
|
602
|
+
* This macro should only be used in type implementations.
|
603
|
+
*
|
604
|
+
* Returns: the #GType
|
605
|
+
*/
|
606
|
+
#define G_TYPE_FROM_CLASS(g_class) (((GTypeClass*) (g_class))->g_type)
|
607
|
+
/**
|
608
|
+
* G_TYPE_FROM_INTERFACE:
|
609
|
+
* @g_iface: Location of a valid #GTypeInterface structure
|
610
|
+
*
|
611
|
+
* Get the type identifier from a given @interface structure.
|
612
|
+
*
|
613
|
+
* This macro should only be used in type implementations.
|
614
|
+
*
|
615
|
+
* Returns: the #GType
|
616
|
+
*/
|
617
|
+
#define G_TYPE_FROM_INTERFACE(g_iface) (((GTypeInterface*) (g_iface))->g_type)
|
618
|
+
|
619
|
+
/**
|
620
|
+
* G_TYPE_INSTANCE_GET_PRIVATE:
|
621
|
+
* @instance: the instance of a type deriving from @private_type
|
622
|
+
* @g_type: the type identifying which private data to retrieve
|
623
|
+
* @c_type: The C type for the private structure
|
624
|
+
*
|
625
|
+
* Gets the private structure for a particular type.
|
626
|
+
* The private structure must have been registered in the
|
627
|
+
* class_init function with g_type_class_add_private().
|
628
|
+
*
|
629
|
+
* This macro should only be used in type implementations.
|
630
|
+
*
|
631
|
+
* Since: 2.4
|
632
|
+
* Returns: a pointer to the private data structure
|
633
|
+
*/
|
634
|
+
#define G_TYPE_INSTANCE_GET_PRIVATE(instance, g_type, c_type) ((c_type*) g_type_instance_get_private ((GTypeInstance*) (instance), (g_type)))
|
635
|
+
|
636
|
+
/**
|
637
|
+
* G_TYPE_CLASS_GET_PRIVATE:
|
638
|
+
* @klass: the class of a type deriving from @private_type
|
639
|
+
* @g_type: the type identifying which private data to retrieve
|
640
|
+
* @c_type: The C type for the private structure
|
641
|
+
*
|
642
|
+
* Gets the private class structure for a particular type.
|
643
|
+
* The private structure must have been registered in the
|
644
|
+
* get_type() function with g_type_add_class_private().
|
645
|
+
*
|
646
|
+
* This macro should only be used in type implementations.
|
647
|
+
*
|
648
|
+
* Since: 2.24
|
649
|
+
* Returns: a pointer to the private data structure
|
650
|
+
*/
|
651
|
+
#define G_TYPE_CLASS_GET_PRIVATE(klass, g_type, c_type) ((c_type*) g_type_class_get_private ((GTypeClass*) (klass), (g_type)))
|
652
|
+
|
653
|
+
/**
|
654
|
+
* GTypeDebugFlags:
|
655
|
+
* @G_TYPE_DEBUG_NONE: Print no messages
|
656
|
+
* @G_TYPE_DEBUG_OBJECTS: Print messages about object bookkeeping
|
657
|
+
* @G_TYPE_DEBUG_SIGNALS: Print messages about signal emissions
|
658
|
+
* @G_TYPE_DEBUG_MASK: Mask covering all debug flags
|
659
|
+
*
|
660
|
+
* These flags used to be passed to g_type_init_with_debug_flags() which
|
661
|
+
* is now deprecated.
|
662
|
+
*
|
663
|
+
* If you need to enable debugging features, use the GOBJECT_DEBUG
|
664
|
+
* environment variable.
|
665
|
+
*
|
666
|
+
* Deprecated: 2.36: g_type_init() is now done automatically
|
667
|
+
*/
|
668
|
+
typedef enum /*< skip >*/
|
669
|
+
{
|
670
|
+
G_TYPE_DEBUG_NONE = 0,
|
671
|
+
G_TYPE_DEBUG_OBJECTS = 1 << 0,
|
672
|
+
G_TYPE_DEBUG_SIGNALS = 1 << 1,
|
673
|
+
G_TYPE_DEBUG_MASK = 0x03
|
674
|
+
} GTypeDebugFlags;
|
675
|
+
|
676
|
+
|
677
|
+
/* --- prototypes --- */
|
678
|
+
GLIB_DEPRECATED_IN_2_36
|
679
|
+
void g_type_init (void);
|
680
|
+
GLIB_DEPRECATED_IN_2_36
|
681
|
+
void g_type_init_with_debug_flags (GTypeDebugFlags debug_flags);
|
682
|
+
GLIB_AVAILABLE_IN_ALL
|
683
|
+
const gchar * g_type_name (GType type);
|
684
|
+
GLIB_AVAILABLE_IN_ALL
|
685
|
+
GQuark g_type_qname (GType type);
|
686
|
+
GLIB_AVAILABLE_IN_ALL
|
687
|
+
GType g_type_from_name (const gchar *name);
|
688
|
+
GLIB_AVAILABLE_IN_ALL
|
689
|
+
GType g_type_parent (GType type);
|
690
|
+
GLIB_AVAILABLE_IN_ALL
|
691
|
+
guint g_type_depth (GType type);
|
692
|
+
GLIB_AVAILABLE_IN_ALL
|
693
|
+
GType g_type_next_base (GType leaf_type,
|
694
|
+
GType root_type);
|
695
|
+
GLIB_AVAILABLE_IN_ALL
|
696
|
+
gboolean g_type_is_a (GType type,
|
697
|
+
GType is_a_type);
|
698
|
+
GLIB_AVAILABLE_IN_ALL
|
699
|
+
gpointer g_type_class_ref (GType type);
|
700
|
+
GLIB_AVAILABLE_IN_ALL
|
701
|
+
gpointer g_type_class_peek (GType type);
|
702
|
+
GLIB_AVAILABLE_IN_ALL
|
703
|
+
gpointer g_type_class_peek_static (GType type);
|
704
|
+
GLIB_AVAILABLE_IN_ALL
|
705
|
+
void g_type_class_unref (gpointer g_class);
|
706
|
+
GLIB_AVAILABLE_IN_ALL
|
707
|
+
gpointer g_type_class_peek_parent (gpointer g_class);
|
708
|
+
GLIB_AVAILABLE_IN_ALL
|
709
|
+
gpointer g_type_interface_peek (gpointer instance_class,
|
710
|
+
GType iface_type);
|
711
|
+
GLIB_AVAILABLE_IN_ALL
|
712
|
+
gpointer g_type_interface_peek_parent (gpointer g_iface);
|
713
|
+
|
714
|
+
GLIB_AVAILABLE_IN_ALL
|
715
|
+
gpointer g_type_default_interface_ref (GType g_type);
|
716
|
+
GLIB_AVAILABLE_IN_ALL
|
717
|
+
gpointer g_type_default_interface_peek (GType g_type);
|
718
|
+
GLIB_AVAILABLE_IN_ALL
|
719
|
+
void g_type_default_interface_unref (gpointer g_iface);
|
720
|
+
|
721
|
+
/* g_free() the returned arrays */
|
722
|
+
GLIB_AVAILABLE_IN_ALL
|
723
|
+
GType* g_type_children (GType type,
|
724
|
+
guint *n_children);
|
725
|
+
GLIB_AVAILABLE_IN_ALL
|
726
|
+
GType* g_type_interfaces (GType type,
|
727
|
+
guint *n_interfaces);
|
728
|
+
|
729
|
+
/* per-type _static_ data */
|
730
|
+
GLIB_AVAILABLE_IN_ALL
|
731
|
+
void g_type_set_qdata (GType type,
|
732
|
+
GQuark quark,
|
733
|
+
gpointer data);
|
734
|
+
GLIB_AVAILABLE_IN_ALL
|
735
|
+
gpointer g_type_get_qdata (GType type,
|
736
|
+
GQuark quark);
|
737
|
+
GLIB_AVAILABLE_IN_ALL
|
738
|
+
void g_type_query (GType type,
|
739
|
+
GTypeQuery *query);
|
740
|
+
|
741
|
+
|
742
|
+
/* --- type registration --- */
|
743
|
+
/**
|
744
|
+
* GBaseInitFunc:
|
745
|
+
* @g_class: The #GTypeClass structure to initialize
|
746
|
+
*
|
747
|
+
* A callback function used by the type system to do base initialization
|
748
|
+
* of the class structures of derived types. It is called as part of the
|
749
|
+
* initialization process of all derived classes and should reallocate
|
750
|
+
* or reset all dynamic class members copied over from the parent class.
|
751
|
+
* For example, class members (such as strings) that are not sufficiently
|
752
|
+
* handled by a plain memory copy of the parent class into the derived class
|
753
|
+
* have to be altered. See GClassInitFunc() for a discussion of the class
|
754
|
+
* intialization process.
|
755
|
+
*/
|
756
|
+
typedef void (*GBaseInitFunc) (gpointer g_class);
|
757
|
+
/**
|
758
|
+
* GBaseFinalizeFunc:
|
759
|
+
* @g_class: The #GTypeClass structure to finalize
|
760
|
+
*
|
761
|
+
* A callback function used by the type system to finalize those portions
|
762
|
+
* of a derived types class structure that were setup from the corresponding
|
763
|
+
* GBaseInitFunc() function. Class finalization basically works the inverse
|
764
|
+
* way in which class intialization is performed.
|
765
|
+
* See GClassInitFunc() for a discussion of the class intialization process.
|
766
|
+
*/
|
767
|
+
typedef void (*GBaseFinalizeFunc) (gpointer g_class);
|
768
|
+
/**
|
769
|
+
* GClassInitFunc:
|
770
|
+
* @g_class: The #GTypeClass structure to initialize.
|
771
|
+
* @class_data: The @class_data member supplied via the #GTypeInfo structure.
|
772
|
+
*
|
773
|
+
* A callback function used by the type system to initialize the class
|
774
|
+
* of a specific type. This function should initialize all static class
|
775
|
+
* members.
|
776
|
+
*
|
777
|
+
* The initialization process of a class involves:
|
778
|
+
*
|
779
|
+
* - Copying common members from the parent class over to the
|
780
|
+
* derived class structure.
|
781
|
+
* - Zero initialization of the remaining members not copied
|
782
|
+
* over from the parent class.
|
783
|
+
* - Invocation of the GBaseInitFunc() initializers of all parent
|
784
|
+
* types and the class' type.
|
785
|
+
* - Invocation of the class' GClassInitFunc() initializer.
|
786
|
+
*
|
787
|
+
* Since derived classes are partially initialized through a memory copy
|
788
|
+
* of the parent class, the general rule is that GBaseInitFunc() and
|
789
|
+
* GBaseFinalizeFunc() should take care of necessary reinitialization
|
790
|
+
* and release of those class members that were introduced by the type
|
791
|
+
* that specified these GBaseInitFunc()/GBaseFinalizeFunc().
|
792
|
+
* GClassInitFunc() should only care about initializing static
|
793
|
+
* class members, while dynamic class members (such as allocated strings
|
794
|
+
* or reference counted resources) are better handled by a GBaseInitFunc()
|
795
|
+
* for this type, so proper initialization of the dynamic class members
|
796
|
+
* is performed for class initialization of derived types as well.
|
797
|
+
*
|
798
|
+
* An example may help to correspond the intend of the different class
|
799
|
+
* initializers:
|
800
|
+
*
|
801
|
+
* |[<!-- language="C" -->
|
802
|
+
* typedef struct {
|
803
|
+
* GObjectClass parent_class;
|
804
|
+
* gint static_integer;
|
805
|
+
* gchar *dynamic_string;
|
806
|
+
* } TypeAClass;
|
807
|
+
* static void
|
808
|
+
* type_a_base_class_init (TypeAClass *class)
|
809
|
+
* {
|
810
|
+
* class->dynamic_string = g_strdup ("some string");
|
811
|
+
* }
|
812
|
+
* static void
|
813
|
+
* type_a_base_class_finalize (TypeAClass *class)
|
814
|
+
* {
|
815
|
+
* g_free (class->dynamic_string);
|
816
|
+
* }
|
817
|
+
* static void
|
818
|
+
* type_a_class_init (TypeAClass *class)
|
819
|
+
* {
|
820
|
+
* class->static_integer = 42;
|
821
|
+
* }
|
822
|
+
*
|
823
|
+
* typedef struct {
|
824
|
+
* TypeAClass parent_class;
|
825
|
+
* gfloat static_float;
|
826
|
+
* GString *dynamic_gstring;
|
827
|
+
* } TypeBClass;
|
828
|
+
* static void
|
829
|
+
* type_b_base_class_init (TypeBClass *class)
|
830
|
+
* {
|
831
|
+
* class->dynamic_gstring = g_string_new ("some other string");
|
832
|
+
* }
|
833
|
+
* static void
|
834
|
+
* type_b_base_class_finalize (TypeBClass *class)
|
835
|
+
* {
|
836
|
+
* g_string_free (class->dynamic_gstring);
|
837
|
+
* }
|
838
|
+
* static void
|
839
|
+
* type_b_class_init (TypeBClass *class)
|
840
|
+
* {
|
841
|
+
* class->static_float = 3.14159265358979323846;
|
842
|
+
* }
|
843
|
+
* ]|
|
844
|
+
* Initialization of TypeBClass will first cause initialization of
|
845
|
+
* TypeAClass (derived classes reference their parent classes, see
|
846
|
+
* g_type_class_ref() on this).
|
847
|
+
*
|
848
|
+
* Initialization of TypeAClass roughly involves zero-initializing its fields,
|
849
|
+
* then calling its GBaseInitFunc() type_a_base_class_init() to allocate
|
850
|
+
* its dynamic members (dynamic_string), and finally calling its GClassInitFunc()
|
851
|
+
* type_a_class_init() to initialize its static members (static_integer).
|
852
|
+
* The first step in the initialization process of TypeBClass is then
|
853
|
+
* a plain memory copy of the contents of TypeAClass into TypeBClass and
|
854
|
+
* zero-initialization of the remaining fields in TypeBClass.
|
855
|
+
* The dynamic members of TypeAClass within TypeBClass now need
|
856
|
+
* reinitialization which is performed by calling type_a_base_class_init()
|
857
|
+
* with an argument of TypeBClass.
|
858
|
+
*
|
859
|
+
* After that, the GBaseInitFunc() of TypeBClass, type_b_base_class_init()
|
860
|
+
* is called to allocate the dynamic members of TypeBClass (dynamic_gstring),
|
861
|
+
* and finally the GClassInitFunc() of TypeBClass, type_b_class_init(),
|
862
|
+
* is called to complete the initialization process with the static members
|
863
|
+
* (static_float).
|
864
|
+
*
|
865
|
+
* Corresponding finalization counter parts to the GBaseInitFunc() functions
|
866
|
+
* have to be provided to release allocated resources at class finalization
|
867
|
+
* time.
|
868
|
+
*/
|
869
|
+
typedef void (*GClassInitFunc) (gpointer g_class,
|
870
|
+
gpointer class_data);
|
871
|
+
/**
|
872
|
+
* GClassFinalizeFunc:
|
873
|
+
* @g_class: The #GTypeClass structure to finalize
|
874
|
+
* @class_data: The @class_data member supplied via the #GTypeInfo structure
|
875
|
+
*
|
876
|
+
* A callback function used by the type system to finalize a class.
|
877
|
+
* This function is rarely needed, as dynamically allocated class resources
|
878
|
+
* should be handled by GBaseInitFunc() and GBaseFinalizeFunc().
|
879
|
+
* Also, specification of a GClassFinalizeFunc() in the #GTypeInfo
|
880
|
+
* structure of a static type is invalid, because classes of static types
|
881
|
+
* will never be finalized (they are artificially kept alive when their
|
882
|
+
* reference count drops to zero).
|
883
|
+
*/
|
884
|
+
typedef void (*GClassFinalizeFunc) (gpointer g_class,
|
885
|
+
gpointer class_data);
|
886
|
+
/**
|
887
|
+
* GInstanceInitFunc:
|
888
|
+
* @instance: The instance to initialize
|
889
|
+
* @g_class: The class of the type the instance is created for
|
890
|
+
*
|
891
|
+
* A callback function used by the type system to initialize a new
|
892
|
+
* instance of a type. This function initializes all instance members and
|
893
|
+
* allocates any resources required by it.
|
894
|
+
*
|
895
|
+
* Initialization of a derived instance involves calling all its parent
|
896
|
+
* types instance initializers, so the class member of the instance
|
897
|
+
* is altered during its initialization to always point to the class that
|
898
|
+
* belongs to the type the current initializer was introduced for.
|
899
|
+
*
|
900
|
+
* The extended members of @instance are guaranteed to have been filled with
|
901
|
+
* zeros before this function is called.
|
902
|
+
*/
|
903
|
+
typedef void (*GInstanceInitFunc) (GTypeInstance *instance,
|
904
|
+
gpointer g_class);
|
905
|
+
/**
|
906
|
+
* GInterfaceInitFunc:
|
907
|
+
* @g_iface: The interface structure to initialize
|
908
|
+
* @iface_data: The @interface_data supplied via the #GInterfaceInfo structure
|
909
|
+
*
|
910
|
+
* A callback function used by the type system to initialize a new
|
911
|
+
* interface. This function should initialize all internal data and
|
912
|
+
* allocate any resources required by the interface.
|
913
|
+
*
|
914
|
+
* The members of @iface_data are guaranteed to have been filled with
|
915
|
+
* zeros before this function is called.
|
916
|
+
*/
|
917
|
+
typedef void (*GInterfaceInitFunc) (gpointer g_iface,
|
918
|
+
gpointer iface_data);
|
919
|
+
/**
|
920
|
+
* GInterfaceFinalizeFunc:
|
921
|
+
* @g_iface: The interface structure to finalize
|
922
|
+
* @iface_data: The @interface_data supplied via the #GInterfaceInfo structure
|
923
|
+
*
|
924
|
+
* A callback function used by the type system to finalize an interface.
|
925
|
+
* This function should destroy any internal data and release any resources
|
926
|
+
* allocated by the corresponding GInterfaceInitFunc() function.
|
927
|
+
*/
|
928
|
+
typedef void (*GInterfaceFinalizeFunc) (gpointer g_iface,
|
929
|
+
gpointer iface_data);
|
930
|
+
/**
|
931
|
+
* GTypeClassCacheFunc:
|
932
|
+
* @cache_data: data that was given to the g_type_add_class_cache_func() call
|
933
|
+
* @g_class: The #GTypeClass structure which is unreferenced
|
934
|
+
*
|
935
|
+
* A callback function which is called when the reference count of a class
|
936
|
+
* drops to zero. It may use g_type_class_ref() to prevent the class from
|
937
|
+
* being freed. You should not call g_type_class_unref() from a
|
938
|
+
* #GTypeClassCacheFunc function to prevent infinite recursion, use
|
939
|
+
* g_type_class_unref_uncached() instead.
|
940
|
+
*
|
941
|
+
* The functions have to check the class id passed in to figure
|
942
|
+
* whether they actually want to cache the class of this type, since all
|
943
|
+
* classes are routed through the same #GTypeClassCacheFunc chain.
|
944
|
+
*
|
945
|
+
* Returns: %TRUE to stop further #GTypeClassCacheFuncs from being
|
946
|
+
* called, %FALSE to continue
|
947
|
+
*/
|
948
|
+
typedef gboolean (*GTypeClassCacheFunc) (gpointer cache_data,
|
949
|
+
GTypeClass *g_class);
|
950
|
+
/**
|
951
|
+
* GTypeInterfaceCheckFunc:
|
952
|
+
* @check_data: data passed to g_type_add_interface_check()
|
953
|
+
* @g_iface: the interface that has been initialized
|
954
|
+
*
|
955
|
+
* A callback called after an interface vtable is initialized.
|
956
|
+
* See g_type_add_interface_check().
|
957
|
+
*
|
958
|
+
* Since: 2.4
|
959
|
+
*/
|
960
|
+
typedef void (*GTypeInterfaceCheckFunc) (gpointer check_data,
|
961
|
+
gpointer g_iface);
|
962
|
+
/**
|
963
|
+
* GTypeFundamentalFlags:
|
964
|
+
* @G_TYPE_FLAG_CLASSED: Indicates a classed type
|
965
|
+
* @G_TYPE_FLAG_INSTANTIATABLE: Indicates an instantiable type (implies classed)
|
966
|
+
* @G_TYPE_FLAG_DERIVABLE: Indicates a flat derivable type
|
967
|
+
* @G_TYPE_FLAG_DEEP_DERIVABLE: Indicates a deep derivable type (implies derivable)
|
968
|
+
*
|
969
|
+
* Bit masks used to check or determine specific characteristics of a
|
970
|
+
* fundamental type.
|
971
|
+
*/
|
972
|
+
typedef enum /*< skip >*/
|
973
|
+
{
|
974
|
+
G_TYPE_FLAG_CLASSED = (1 << 0),
|
975
|
+
G_TYPE_FLAG_INSTANTIATABLE = (1 << 1),
|
976
|
+
G_TYPE_FLAG_DERIVABLE = (1 << 2),
|
977
|
+
G_TYPE_FLAG_DEEP_DERIVABLE = (1 << 3)
|
978
|
+
} GTypeFundamentalFlags;
|
979
|
+
/**
|
980
|
+
* GTypeFlags:
|
981
|
+
* @G_TYPE_FLAG_ABSTRACT: Indicates an abstract type. No instances can be
|
982
|
+
* created for an abstract type
|
983
|
+
* @G_TYPE_FLAG_VALUE_ABSTRACT: Indicates an abstract value type, i.e. a type
|
984
|
+
* that introduces a value table, but can't be used for
|
985
|
+
* g_value_init()
|
986
|
+
*
|
987
|
+
* Bit masks used to check or determine characteristics of a type.
|
988
|
+
*/
|
989
|
+
typedef enum /*< skip >*/
|
990
|
+
{
|
991
|
+
G_TYPE_FLAG_ABSTRACT = (1 << 4),
|
992
|
+
G_TYPE_FLAG_VALUE_ABSTRACT = (1 << 5)
|
993
|
+
} GTypeFlags;
|
994
|
+
/**
|
995
|
+
* GTypeInfo:
|
996
|
+
* @class_size: Size of the class structure (required for interface, classed and instantiatable types)
|
997
|
+
* @base_init: Location of the base initialization function (optional)
|
998
|
+
* @base_finalize: Location of the base finalization function (optional)
|
999
|
+
* @class_init: Location of the class initialization function for
|
1000
|
+
* classed and instantiatable types. Location of the default vtable
|
1001
|
+
* inititalization function for interface types. (optional) This function
|
1002
|
+
* is used both to fill in virtual functions in the class or default vtable,
|
1003
|
+
* and to do type-specific setup such as registering signals and object
|
1004
|
+
* properties.
|
1005
|
+
* @class_finalize: Location of the class finalization function for
|
1006
|
+
* classed and instantiatable types. Location of the default vtable
|
1007
|
+
* finalization function for interface types. (optional)
|
1008
|
+
* @class_data: User-supplied data passed to the class init/finalize functions
|
1009
|
+
* @instance_size: Size of the instance (object) structure (required for instantiatable types only)
|
1010
|
+
* @n_preallocs: Prior to GLib 2.10, it specified the number of pre-allocated (cached) instances to reserve memory for (0 indicates no caching). Since GLib 2.10, it is ignored, since instances are allocated with the [slice allocator][glib-Memory-Slices] now.
|
1011
|
+
* @instance_init: Location of the instance initialization function (optional, for instantiatable types only)
|
1012
|
+
* @value_table: A #GTypeValueTable function table for generic handling of GValues
|
1013
|
+
* of this type (usually only useful for fundamental types)
|
1014
|
+
*
|
1015
|
+
* This structure is used to provide the type system with the information
|
1016
|
+
* required to initialize and destruct (finalize) a type's class and
|
1017
|
+
* its instances.
|
1018
|
+
*
|
1019
|
+
* The initialized structure is passed to the g_type_register_static() function
|
1020
|
+
* (or is copied into the provided #GTypeInfo structure in the
|
1021
|
+
* g_type_plugin_complete_type_info()). The type system will perform a deep
|
1022
|
+
* copy of this structure, so its memory does not need to be persistent
|
1023
|
+
* across invocation of g_type_register_static().
|
1024
|
+
*/
|
1025
|
+
struct _GTypeInfo
|
1026
|
+
{
|
1027
|
+
/* interface types, classed types, instantiated types */
|
1028
|
+
guint16 class_size;
|
1029
|
+
|
1030
|
+
GBaseInitFunc base_init;
|
1031
|
+
GBaseFinalizeFunc base_finalize;
|
1032
|
+
|
1033
|
+
/* interface types, classed types, instantiated types */
|
1034
|
+
GClassInitFunc class_init;
|
1035
|
+
GClassFinalizeFunc class_finalize;
|
1036
|
+
gconstpointer class_data;
|
1037
|
+
|
1038
|
+
/* instantiated types */
|
1039
|
+
guint16 instance_size;
|
1040
|
+
guint16 n_preallocs;
|
1041
|
+
GInstanceInitFunc instance_init;
|
1042
|
+
|
1043
|
+
/* value handling */
|
1044
|
+
const GTypeValueTable *value_table;
|
1045
|
+
};
|
1046
|
+
/**
|
1047
|
+
* GTypeFundamentalInfo:
|
1048
|
+
* @type_flags: #GTypeFundamentalFlags describing the characteristics of the fundamental type
|
1049
|
+
*
|
1050
|
+
* A structure that provides information to the type system which is
|
1051
|
+
* used specifically for managing fundamental types.
|
1052
|
+
*/
|
1053
|
+
struct _GTypeFundamentalInfo
|
1054
|
+
{
|
1055
|
+
GTypeFundamentalFlags type_flags;
|
1056
|
+
};
|
1057
|
+
/**
|
1058
|
+
* GInterfaceInfo:
|
1059
|
+
* @interface_init: location of the interface initialization function
|
1060
|
+
* @interface_finalize: location of the interface finalization function
|
1061
|
+
* @interface_data: user-supplied data passed to the interface init/finalize functions
|
1062
|
+
*
|
1063
|
+
* A structure that provides information to the type system which is
|
1064
|
+
* used specifically for managing interface types.
|
1065
|
+
*/
|
1066
|
+
struct _GInterfaceInfo
|
1067
|
+
{
|
1068
|
+
GInterfaceInitFunc interface_init;
|
1069
|
+
GInterfaceFinalizeFunc interface_finalize;
|
1070
|
+
gpointer interface_data;
|
1071
|
+
};
|
1072
|
+
/**
|
1073
|
+
* GTypeValueTable:
|
1074
|
+
* @value_init: Default initialize @values contents by poking values
|
1075
|
+
* directly into the value->data array. The data array of
|
1076
|
+
* the #GValue passed into this function was zero-filled
|
1077
|
+
* with `memset()`, so no care has to be taken to free any
|
1078
|
+
* old contents. E.g. for the implementation of a string
|
1079
|
+
* value that may never be %NULL, the implementation might
|
1080
|
+
* look like:
|
1081
|
+
* |[<!-- language="C" -->
|
1082
|
+
* value->data[0].v_pointer = g_strdup ("");
|
1083
|
+
* ]|
|
1084
|
+
* @value_free: Free any old contents that might be left in the
|
1085
|
+
* data array of the passed in @value. No resources may
|
1086
|
+
* remain allocated through the #GValue contents after
|
1087
|
+
* this function returns. E.g. for our above string type:
|
1088
|
+
* |[<!-- language="C" -->
|
1089
|
+
* // only free strings without a specific flag for static storage
|
1090
|
+
* if (!(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
|
1091
|
+
* g_free (value->data[0].v_pointer);
|
1092
|
+
* ]|
|
1093
|
+
* @value_copy: @dest_value is a #GValue with zero-filled data section
|
1094
|
+
* and @src_value is a properly setup #GValue of same or
|
1095
|
+
* derived type.
|
1096
|
+
* The purpose of this function is to copy the contents of
|
1097
|
+
* @src_value into @dest_value in a way, that even after
|
1098
|
+
* @src_value has been freed, the contents of @dest_value
|
1099
|
+
* remain valid. String type example:
|
1100
|
+
* |[<!-- language="C" -->
|
1101
|
+
* dest_value->data[0].v_pointer = g_strdup (src_value->data[0].v_pointer);
|
1102
|
+
* ]|
|
1103
|
+
* @value_peek_pointer: If the value contents fit into a pointer, such as objects
|
1104
|
+
* or strings, return this pointer, so the caller can peek at
|
1105
|
+
* the current contents. To extend on our above string example:
|
1106
|
+
* |[<!-- language="C" -->
|
1107
|
+
* return value->data[0].v_pointer;
|
1108
|
+
* ]|
|
1109
|
+
* @collect_format: A string format describing how to collect the contents of
|
1110
|
+
* this value bit-by-bit. Each character in the format represents
|
1111
|
+
* an argument to be collected, and the characters themselves indicate
|
1112
|
+
* the type of the argument. Currently supported arguments are:
|
1113
|
+
*
|
1114
|
+
* - 'i' - Integers. passed as collect_values[].v_int.
|
1115
|
+
* - 'l' - Longs. passed as collect_values[].v_long.
|
1116
|
+
* - 'd' - Doubles. passed as collect_values[].v_double.
|
1117
|
+
* - 'p' - Pointers. passed as collect_values[].v_pointer.
|
1118
|
+
*
|
1119
|
+
* It should be noted that for variable argument list construction,
|
1120
|
+
* ANSI C promotes every type smaller than an integer to an int, and
|
1121
|
+
* floats to doubles. So for collection of short int or char, 'i'
|
1122
|
+
* needs to be used, and for collection of floats 'd'.
|
1123
|
+
* @collect_value: The collect_value() function is responsible for converting the
|
1124
|
+
* values collected from a variable argument list into contents
|
1125
|
+
* suitable for storage in a GValue. This function should setup
|
1126
|
+
* @value similar to value_init(); e.g. for a string value that
|
1127
|
+
* does not allow %NULL pointers, it needs to either spew an error,
|
1128
|
+
* or do an implicit conversion by storing an empty string.
|
1129
|
+
* The @value passed in to this function has a zero-filled data
|
1130
|
+
* array, so just like for value_init() it is guaranteed to not
|
1131
|
+
* contain any old contents that might need freeing.
|
1132
|
+
* @n_collect_values is exactly the string length of @collect_format,
|
1133
|
+
* and @collect_values is an array of unions #GTypeCValue with
|
1134
|
+
* length @n_collect_values, containing the collected values
|
1135
|
+
* according to @collect_format.
|
1136
|
+
* @collect_flags is an argument provided as a hint by the caller.
|
1137
|
+
* It may contain the flag %G_VALUE_NOCOPY_CONTENTS indicating,
|
1138
|
+
* that the collected value contents may be considered "static"
|
1139
|
+
* for the duration of the @value lifetime.
|
1140
|
+
* Thus an extra copy of the contents stored in @collect_values is
|
1141
|
+
* not required for assignment to @value.
|
1142
|
+
* For our above string example, we continue with:
|
1143
|
+
* |[<!-- language="C" -->
|
1144
|
+
* if (!collect_values[0].v_pointer)
|
1145
|
+
* value->data[0].v_pointer = g_strdup ("");
|
1146
|
+
* else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
|
1147
|
+
* {
|
1148
|
+
* value->data[0].v_pointer = collect_values[0].v_pointer;
|
1149
|
+
* // keep a flag for the value_free() implementation to not free this string
|
1150
|
+
* value->data[1].v_uint = G_VALUE_NOCOPY_CONTENTS;
|
1151
|
+
* }
|
1152
|
+
* else
|
1153
|
+
* value->data[0].v_pointer = g_strdup (collect_values[0].v_pointer);
|
1154
|
+
* return NULL;
|
1155
|
+
* ]|
|
1156
|
+
* It should be noted, that it is generally a bad idea to follow the
|
1157
|
+
* #G_VALUE_NOCOPY_CONTENTS hint for reference counted types. Due to
|
1158
|
+
* reentrancy requirements and reference count assertions performed
|
1159
|
+
* by the signal emission code, reference counts should always be
|
1160
|
+
* incremented for reference counted contents stored in the value->data
|
1161
|
+
* array. To deviate from our string example for a moment, and taking
|
1162
|
+
* a look at an exemplary implementation for collect_value() of
|
1163
|
+
* #GObject:
|
1164
|
+
* |[<!-- language="C" -->
|
1165
|
+
* if (collect_values[0].v_pointer)
|
1166
|
+
* {
|
1167
|
+
* GObject *object = G_OBJECT (collect_values[0].v_pointer);
|
1168
|
+
* // never honour G_VALUE_NOCOPY_CONTENTS for ref-counted types
|
1169
|
+
* value->data[0].v_pointer = g_object_ref (object);
|
1170
|
+
* return NULL;
|
1171
|
+
* }
|
1172
|
+
* else
|
1173
|
+
* return g_strdup_printf ("Object passed as invalid NULL pointer");
|
1174
|
+
* }
|
1175
|
+
* ]|
|
1176
|
+
* The reference count for valid objects is always incremented,
|
1177
|
+
* regardless of @collect_flags. For invalid objects, the example
|
1178
|
+
* returns a newly allocated string without altering @value.
|
1179
|
+
* Upon success, collect_value() needs to return %NULL. If, however,
|
1180
|
+
* an error condition occurred, collect_value() may spew an
|
1181
|
+
* error by returning a newly allocated non-%NULL string, giving
|
1182
|
+
* a suitable description of the error condition.
|
1183
|
+
* The calling code makes no assumptions about the @value
|
1184
|
+
* contents being valid upon error returns, @value
|
1185
|
+
* is simply thrown away without further freeing. As such, it is
|
1186
|
+
* a good idea to not allocate #GValue contents, prior to returning
|
1187
|
+
* an error, however, collect_values() is not obliged to return
|
1188
|
+
* a correctly setup @value for error returns, simply because
|
1189
|
+
* any non-%NULL return is considered a fatal condition so further
|
1190
|
+
* program behaviour is undefined.
|
1191
|
+
* @lcopy_format: Format description of the arguments to collect for @lcopy_value,
|
1192
|
+
* analogous to @collect_format. Usually, @lcopy_format string consists
|
1193
|
+
* only of 'p's to provide lcopy_value() with pointers to storage locations.
|
1194
|
+
* @lcopy_value: This function is responsible for storing the @value contents into
|
1195
|
+
* arguments passed through a variable argument list which got
|
1196
|
+
* collected into @collect_values according to @lcopy_format.
|
1197
|
+
* @n_collect_values equals the string length of @lcopy_format,
|
1198
|
+
* and @collect_flags may contain %G_VALUE_NOCOPY_CONTENTS.
|
1199
|
+
* In contrast to collect_value(), lcopy_value() is obliged to
|
1200
|
+
* always properly support %G_VALUE_NOCOPY_CONTENTS.
|
1201
|
+
* Similar to collect_value() the function may prematurely abort
|
1202
|
+
* by returning a newly allocated string describing an error condition.
|
1203
|
+
* To complete the string example:
|
1204
|
+
* |[<!-- language="C" -->
|
1205
|
+
* gchar **string_p = collect_values[0].v_pointer;
|
1206
|
+
* if (!string_p)
|
1207
|
+
* return g_strdup_printf ("string location passed as NULL");
|
1208
|
+
* if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
|
1209
|
+
* *string_p = value->data[0].v_pointer;
|
1210
|
+
* else
|
1211
|
+
* *string_p = g_strdup (value->data[0].v_pointer);
|
1212
|
+
* ]|
|
1213
|
+
* And an illustrative version of lcopy_value() for
|
1214
|
+
* reference-counted types:
|
1215
|
+
* |[<!-- language="C" -->
|
1216
|
+
* GObject **object_p = collect_values[0].v_pointer;
|
1217
|
+
* if (!object_p)
|
1218
|
+
* return g_strdup_printf ("object location passed as NULL");
|
1219
|
+
* if (!value->data[0].v_pointer)
|
1220
|
+
* *object_p = NULL;
|
1221
|
+
* else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) // always honour
|
1222
|
+
* *object_p = value->data[0].v_pointer;
|
1223
|
+
* else
|
1224
|
+
* *object_p = g_object_ref (value->data[0].v_pointer);
|
1225
|
+
* return NULL;
|
1226
|
+
* ]|
|
1227
|
+
*
|
1228
|
+
* The #GTypeValueTable provides the functions required by the #GValue
|
1229
|
+
* implementation, to serve as a container for values of a type.
|
1230
|
+
*/
|
1231
|
+
|
1232
|
+
struct _GTypeValueTable
|
1233
|
+
{
|
1234
|
+
void (*value_init) (GValue *value);
|
1235
|
+
void (*value_free) (GValue *value);
|
1236
|
+
void (*value_copy) (const GValue *src_value,
|
1237
|
+
GValue *dest_value);
|
1238
|
+
/* varargs functionality (optional) */
|
1239
|
+
gpointer (*value_peek_pointer) (const GValue *value);
|
1240
|
+
const gchar *collect_format;
|
1241
|
+
gchar* (*collect_value) (GValue *value,
|
1242
|
+
guint n_collect_values,
|
1243
|
+
GTypeCValue *collect_values,
|
1244
|
+
guint collect_flags);
|
1245
|
+
const gchar *lcopy_format;
|
1246
|
+
gchar* (*lcopy_value) (const GValue *value,
|
1247
|
+
guint n_collect_values,
|
1248
|
+
GTypeCValue *collect_values,
|
1249
|
+
guint collect_flags);
|
1250
|
+
};
|
1251
|
+
GLIB_AVAILABLE_IN_ALL
|
1252
|
+
GType g_type_register_static (GType parent_type,
|
1253
|
+
const gchar *type_name,
|
1254
|
+
const GTypeInfo *info,
|
1255
|
+
GTypeFlags flags);
|
1256
|
+
GLIB_AVAILABLE_IN_ALL
|
1257
|
+
GType g_type_register_static_simple (GType parent_type,
|
1258
|
+
const gchar *type_name,
|
1259
|
+
guint class_size,
|
1260
|
+
GClassInitFunc class_init,
|
1261
|
+
guint instance_size,
|
1262
|
+
GInstanceInitFunc instance_init,
|
1263
|
+
GTypeFlags flags);
|
1264
|
+
|
1265
|
+
GLIB_AVAILABLE_IN_ALL
|
1266
|
+
GType g_type_register_dynamic (GType parent_type,
|
1267
|
+
const gchar *type_name,
|
1268
|
+
GTypePlugin *plugin,
|
1269
|
+
GTypeFlags flags);
|
1270
|
+
GLIB_AVAILABLE_IN_ALL
|
1271
|
+
GType g_type_register_fundamental (GType type_id,
|
1272
|
+
const gchar *type_name,
|
1273
|
+
const GTypeInfo *info,
|
1274
|
+
const GTypeFundamentalInfo *finfo,
|
1275
|
+
GTypeFlags flags);
|
1276
|
+
GLIB_AVAILABLE_IN_ALL
|
1277
|
+
void g_type_add_interface_static (GType instance_type,
|
1278
|
+
GType interface_type,
|
1279
|
+
const GInterfaceInfo *info);
|
1280
|
+
GLIB_AVAILABLE_IN_ALL
|
1281
|
+
void g_type_add_interface_dynamic (GType instance_type,
|
1282
|
+
GType interface_type,
|
1283
|
+
GTypePlugin *plugin);
|
1284
|
+
GLIB_AVAILABLE_IN_ALL
|
1285
|
+
void g_type_interface_add_prerequisite (GType interface_type,
|
1286
|
+
GType prerequisite_type);
|
1287
|
+
GLIB_AVAILABLE_IN_ALL
|
1288
|
+
GType*g_type_interface_prerequisites (GType interface_type,
|
1289
|
+
guint *n_prerequisites);
|
1290
|
+
GLIB_AVAILABLE_IN_ALL
|
1291
|
+
void g_type_class_add_private (gpointer g_class,
|
1292
|
+
gsize private_size);
|
1293
|
+
GLIB_AVAILABLE_IN_2_38
|
1294
|
+
gint g_type_add_instance_private (GType class_type,
|
1295
|
+
gsize private_size);
|
1296
|
+
GLIB_AVAILABLE_IN_ALL
|
1297
|
+
gpointer g_type_instance_get_private (GTypeInstance *instance,
|
1298
|
+
GType private_type);
|
1299
|
+
GLIB_AVAILABLE_IN_2_38
|
1300
|
+
void g_type_class_adjust_private_offset (gpointer g_class,
|
1301
|
+
gint *private_size_or_offset);
|
1302
|
+
|
1303
|
+
GLIB_AVAILABLE_IN_ALL
|
1304
|
+
void g_type_add_class_private (GType class_type,
|
1305
|
+
gsize private_size);
|
1306
|
+
GLIB_AVAILABLE_IN_ALL
|
1307
|
+
gpointer g_type_class_get_private (GTypeClass *klass,
|
1308
|
+
GType private_type);
|
1309
|
+
GLIB_AVAILABLE_IN_2_38
|
1310
|
+
gint g_type_class_get_instance_private_offset (gpointer g_class);
|
1311
|
+
|
1312
|
+
GLIB_AVAILABLE_IN_2_34
|
1313
|
+
void g_type_ensure (GType type);
|
1314
|
+
GLIB_AVAILABLE_IN_2_36
|
1315
|
+
guint g_type_get_type_registration_serial (void);
|
1316
|
+
|
1317
|
+
|
1318
|
+
/* --- GType boilerplate --- */
|
1319
|
+
/**
|
1320
|
+
* G_DEFINE_TYPE:
|
1321
|
+
* @TN: The name of the new type, in Camel case.
|
1322
|
+
* @t_n: The name of the new type, in lowercase, with words
|
1323
|
+
* separated by '_'.
|
1324
|
+
* @T_P: The #GType of the parent type.
|
1325
|
+
*
|
1326
|
+
* A convenience macro for type implementations, which declares a class
|
1327
|
+
* initialization function, an instance initialization function (see #GTypeInfo
|
1328
|
+
* for information about these) and a static variable named `t_n_parent_class`
|
1329
|
+
* pointing to the parent class. Furthermore, it defines a *_get_type() function.
|
1330
|
+
* See G_DEFINE_TYPE_EXTENDED() for an example.
|
1331
|
+
*
|
1332
|
+
* Since: 2.4
|
1333
|
+
*/
|
1334
|
+
#define G_DEFINE_TYPE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, 0, {})
|
1335
|
+
/**
|
1336
|
+
* G_DEFINE_TYPE_WITH_CODE:
|
1337
|
+
* @TN: The name of the new type, in Camel case.
|
1338
|
+
* @t_n: The name of the new type in lowercase, with words separated by '_'.
|
1339
|
+
* @T_P: The #GType of the parent type.
|
1340
|
+
* @_C_: Custom code that gets inserted in the *_get_type() function.
|
1341
|
+
*
|
1342
|
+
* A convenience macro for type implementations.
|
1343
|
+
* Similar to G_DEFINE_TYPE(), but allows you to insert custom code into the
|
1344
|
+
* *_get_type() function, e.g. interface implementations via G_IMPLEMENT_INTERFACE().
|
1345
|
+
* See G_DEFINE_TYPE_EXTENDED() for an example.
|
1346
|
+
*
|
1347
|
+
* Since: 2.4
|
1348
|
+
*/
|
1349
|
+
#define G_DEFINE_TYPE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, 0) {_C_;} _G_DEFINE_TYPE_EXTENDED_END()
|
1350
|
+
/**
|
1351
|
+
* G_DEFINE_TYPE_WITH_PRIVATE:
|
1352
|
+
* @TN: The name of the new type, in Camel case.
|
1353
|
+
* @t_n: The name of the new type, in lowercase, with words
|
1354
|
+
* separated by '_'.
|
1355
|
+
* @T_P: The #GType of the parent type.
|
1356
|
+
*
|
1357
|
+
* A convenience macro for type implementations, which declares a class
|
1358
|
+
* initialization function, an instance initialization function (see #GTypeInfo
|
1359
|
+
* for information about these), a static variable named `t_n_parent_class`
|
1360
|
+
* pointing to the parent class, and adds private instance data to the type.
|
1361
|
+
* Furthermore, it defines a *_get_type() function. See G_DEFINE_TYPE_EXTENDED()
|
1362
|
+
* for an example.
|
1363
|
+
*
|
1364
|
+
* Note that private structs added with this macros must have a struct
|
1365
|
+
* name of the form @TN Private.
|
1366
|
+
*
|
1367
|
+
* Since: 2.38
|
1368
|
+
*/
|
1369
|
+
#define G_DEFINE_TYPE_WITH_PRIVATE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, 0, G_ADD_PRIVATE (TN))
|
1370
|
+
/**
|
1371
|
+
* G_DEFINE_ABSTRACT_TYPE:
|
1372
|
+
* @TN: The name of the new type, in Camel case.
|
1373
|
+
* @t_n: The name of the new type, in lowercase, with words
|
1374
|
+
* separated by '_'.
|
1375
|
+
* @T_P: The #GType of the parent type.
|
1376
|
+
*
|
1377
|
+
* A convenience macro for type implementations.
|
1378
|
+
* Similar to G_DEFINE_TYPE(), but defines an abstract type.
|
1379
|
+
* See G_DEFINE_TYPE_EXTENDED() for an example.
|
1380
|
+
*
|
1381
|
+
* Since: 2.4
|
1382
|
+
*/
|
1383
|
+
#define G_DEFINE_ABSTRACT_TYPE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT, {})
|
1384
|
+
/**
|
1385
|
+
* G_DEFINE_ABSTRACT_TYPE_WITH_CODE:
|
1386
|
+
* @TN: The name of the new type, in Camel case.
|
1387
|
+
* @t_n: The name of the new type, in lowercase, with words
|
1388
|
+
* separated by '_'.
|
1389
|
+
* @T_P: The #GType of the parent type.
|
1390
|
+
* @_C_: Custom code that gets inserted in the @type_name_get_type() function.
|
1391
|
+
*
|
1392
|
+
* A convenience macro for type implementations.
|
1393
|
+
* Similar to G_DEFINE_TYPE_WITH_CODE(), but defines an abstract type and
|
1394
|
+
* allows you to insert custom code into the *_get_type() function, e.g.
|
1395
|
+
* interface implementations via G_IMPLEMENT_INTERFACE().
|
1396
|
+
* See G_DEFINE_TYPE_EXTENDED() for an example.
|
1397
|
+
*
|
1398
|
+
* Since: 2.4
|
1399
|
+
*/
|
1400
|
+
#define G_DEFINE_ABSTRACT_TYPE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT) {_C_;} _G_DEFINE_TYPE_EXTENDED_END()
|
1401
|
+
/**
|
1402
|
+
* G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE:
|
1403
|
+
* @TN: The name of the new type, in Camel case.
|
1404
|
+
* @t_n: The name of the new type, in lowercase, with words
|
1405
|
+
* separated by '_'.
|
1406
|
+
* @T_P: The #GType of the parent type.
|
1407
|
+
*
|
1408
|
+
* Similar to G_DEFINE_TYPE_WITH_PRIVATE(), but defines an abstract type.
|
1409
|
+
* See G_DEFINE_TYPE_EXTENDED() for an example.
|
1410
|
+
*
|
1411
|
+
* Since: 2.38
|
1412
|
+
*/
|
1413
|
+
#define G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT, G_ADD_PRIVATE (TN))
|
1414
|
+
/**
|
1415
|
+
* G_DEFINE_TYPE_EXTENDED:
|
1416
|
+
* @TN: The name of the new type, in Camel case.
|
1417
|
+
* @t_n: The name of the new type, in lowercase, with words
|
1418
|
+
* separated by '_'.
|
1419
|
+
* @T_P: The #GType of the parent type.
|
1420
|
+
* @_f_: #GTypeFlags to pass to g_type_register_static()
|
1421
|
+
* @_C_: Custom code that gets inserted in the *_get_type() function.
|
1422
|
+
*
|
1423
|
+
* The most general convenience macro for type implementations, on which
|
1424
|
+
* G_DEFINE_TYPE(), etc are based.
|
1425
|
+
*
|
1426
|
+
* |[<!-- language="C" -->
|
1427
|
+
* G_DEFINE_TYPE_EXTENDED (GtkGadget,
|
1428
|
+
* gtk_gadget,
|
1429
|
+
* GTK_TYPE_WIDGET,
|
1430
|
+
* 0,
|
1431
|
+
* G_IMPLEMENT_INTERFACE (TYPE_GIZMO,
|
1432
|
+
* gtk_gadget_gizmo_init));
|
1433
|
+
* ]|
|
1434
|
+
* expands to
|
1435
|
+
* |[<!-- language="C" -->
|
1436
|
+
* static void gtk_gadget_init (GtkGadget *self);
|
1437
|
+
* static void gtk_gadget_class_init (GtkGadgetClass *klass);
|
1438
|
+
* static gpointer gtk_gadget_parent_class = NULL;
|
1439
|
+
* static void gtk_gadget_class_intern_init (gpointer klass)
|
1440
|
+
* {
|
1441
|
+
* gtk_gadget_parent_class = g_type_class_peek_parent (klass);
|
1442
|
+
* gtk_gadget_class_init ((GtkGadgetClass*) klass);
|
1443
|
+
* }
|
1444
|
+
*
|
1445
|
+
* GType
|
1446
|
+
* gtk_gadget_get_type (void)
|
1447
|
+
* {
|
1448
|
+
* static volatile gsize g_define_type_id__volatile = 0;
|
1449
|
+
* if (g_once_init_enter (&g_define_type_id__volatile))
|
1450
|
+
* {
|
1451
|
+
* GType g_define_type_id =
|
1452
|
+
* g_type_register_static_simple (GTK_TYPE_WIDGET,
|
1453
|
+
* g_intern_static_string ("GtkGadget"),
|
1454
|
+
* sizeof (GtkGadgetClass),
|
1455
|
+
* (GClassInitFunc) gtk_gadget_class_intern_init,
|
1456
|
+
* sizeof (GtkGadget),
|
1457
|
+
* (GInstanceInitFunc) gtk_gadget_init,
|
1458
|
+
* 0);
|
1459
|
+
* {
|
1460
|
+
* const GInterfaceInfo g_implement_interface_info = {
|
1461
|
+
* (GInterfaceInitFunc) gtk_gadget_gizmo_init
|
1462
|
+
* };
|
1463
|
+
* g_type_add_interface_static (g_define_type_id, TYPE_GIZMO, &g_implement_interface_info);
|
1464
|
+
* }
|
1465
|
+
* g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
|
1466
|
+
* }
|
1467
|
+
* return g_define_type_id__volatile;
|
1468
|
+
* }
|
1469
|
+
* ]|
|
1470
|
+
* The only pieces which have to be manually provided are the definitions of
|
1471
|
+
* the instance and class structure and the definitions of the instance and
|
1472
|
+
* class init functions.
|
1473
|
+
*
|
1474
|
+
* Since: 2.4
|
1475
|
+
*/
|
1476
|
+
#define G_DEFINE_TYPE_EXTENDED(TN, t_n, T_P, _f_, _C_) _G_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, _f_) {_C_;} _G_DEFINE_TYPE_EXTENDED_END()
|
1477
|
+
|
1478
|
+
/**
|
1479
|
+
* G_DEFINE_INTERFACE:
|
1480
|
+
* @TN: The name of the new type, in Camel case.
|
1481
|
+
* @t_n: The name of the new type, in lowercase, with words separated by '_'.
|
1482
|
+
* @T_P: The #GType of the prerequisite type for the interface, or 0
|
1483
|
+
* (%G_TYPE_INVALID) for no prerequisite type.
|
1484
|
+
*
|
1485
|
+
* A convenience macro for #GTypeInterface definitions, which declares
|
1486
|
+
* a default vtable initialization function and defines a *_get_type()
|
1487
|
+
* function.
|
1488
|
+
*
|
1489
|
+
* The macro expects the interface initialization function to have the
|
1490
|
+
* name `t_n ## _default_init`, and the interface structure to have the
|
1491
|
+
* name `TN ## Interface`.
|
1492
|
+
*
|
1493
|
+
* Since: 2.24
|
1494
|
+
*/
|
1495
|
+
#define G_DEFINE_INTERFACE(TN, t_n, T_P) G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, ;)
|
1496
|
+
|
1497
|
+
/**
|
1498
|
+
* G_DEFINE_INTERFACE_WITH_CODE:
|
1499
|
+
* @TN: The name of the new type, in Camel case.
|
1500
|
+
* @t_n: The name of the new type, in lowercase, with words separated by '_'.
|
1501
|
+
* @T_P: The #GType of the prerequisite type for the interface, or 0
|
1502
|
+
* (%G_TYPE_INVALID) for no prerequisite type.
|
1503
|
+
* @_C_: Custom code that gets inserted in the *_get_type() function.
|
1504
|
+
*
|
1505
|
+
* A convenience macro for #GTypeInterface definitions. Similar to
|
1506
|
+
* G_DEFINE_INTERFACE(), but allows you to insert custom code into the
|
1507
|
+
* *_get_type() function, e.g. additional interface implementations
|
1508
|
+
* via G_IMPLEMENT_INTERFACE(), or additional prerequisite types. See
|
1509
|
+
* G_DEFINE_TYPE_EXTENDED() for a similar example using
|
1510
|
+
* G_DEFINE_TYPE_WITH_CODE().
|
1511
|
+
*
|
1512
|
+
* Since: 2.24
|
1513
|
+
*/
|
1514
|
+
#define G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TN, t_n, T_P) {_C_;} _G_DEFINE_INTERFACE_EXTENDED_END()
|
1515
|
+
|
1516
|
+
/**
|
1517
|
+
* G_IMPLEMENT_INTERFACE:
|
1518
|
+
* @TYPE_IFACE: The #GType of the interface to add
|
1519
|
+
* @iface_init: The interface init function
|
1520
|
+
*
|
1521
|
+
* A convenience macro to ease interface addition in the `_C_` section
|
1522
|
+
* of G_DEFINE_TYPE_WITH_CODE() or G_DEFINE_ABSTRACT_TYPE_WITH_CODE().
|
1523
|
+
* See G_DEFINE_TYPE_EXTENDED() for an example.
|
1524
|
+
*
|
1525
|
+
* Note that this macro can only be used together with the G_DEFINE_TYPE_*
|
1526
|
+
* macros, since it depends on variable names from those macros.
|
1527
|
+
*
|
1528
|
+
* Since: 2.4
|
1529
|
+
*/
|
1530
|
+
#define G_IMPLEMENT_INTERFACE(TYPE_IFACE, iface_init) { \
|
1531
|
+
const GInterfaceInfo g_implement_interface_info = { \
|
1532
|
+
(GInterfaceInitFunc) iface_init, NULL, NULL \
|
1533
|
+
}; \
|
1534
|
+
g_type_add_interface_static (g_define_type_id, TYPE_IFACE, &g_implement_interface_info); \
|
1535
|
+
}
|
1536
|
+
|
1537
|
+
/**
|
1538
|
+
* G_ADD_PRIVATE:
|
1539
|
+
* @TypeName: the name of the type in CamelCase
|
1540
|
+
*
|
1541
|
+
* A convenience macro to ease adding private data to instances of a new type
|
1542
|
+
* in the @_C_ section of G_DEFINE_TYPE_WITH_CODE() or
|
1543
|
+
* G_DEFINE_ABSTRACT_TYPE_WITH_CODE().
|
1544
|
+
*
|
1545
|
+
* For instance:
|
1546
|
+
*
|
1547
|
+
* |[<!-- language="C" -->
|
1548
|
+
* typedef struct _MyObject MyObject;
|
1549
|
+
* typedef struct _MyObjectClass MyObjectClass;
|
1550
|
+
*
|
1551
|
+
* typedef struct {
|
1552
|
+
* gint foo;
|
1553
|
+
* gint bar;
|
1554
|
+
* } MyObjectPrivate;
|
1555
|
+
*
|
1556
|
+
* G_DEFINE_TYPE_WITH_CODE (MyObject, my_object, G_TYPE_OBJECT,
|
1557
|
+
* G_ADD_PRIVATE (MyObject))
|
1558
|
+
* ]|
|
1559
|
+
*
|
1560
|
+
* Will add MyObjectPrivate as the private data to any instance of the MyObject
|
1561
|
+
* type.
|
1562
|
+
*
|
1563
|
+
* G_DEFINE_TYPE_* macros will automatically create a private function
|
1564
|
+
* based on the arguments to this macro, which can be used to safely
|
1565
|
+
* retrieve the private data from an instance of the type; for instance:
|
1566
|
+
*
|
1567
|
+
* |[<!-- language="C" -->
|
1568
|
+
* gint
|
1569
|
+
* my_object_get_foo (MyObject *obj)
|
1570
|
+
* {
|
1571
|
+
* MyObjectPrivate *priv = my_object_get_instance_private (obj);
|
1572
|
+
*
|
1573
|
+
* return priv->foo;
|
1574
|
+
* }
|
1575
|
+
*
|
1576
|
+
* void
|
1577
|
+
* my_object_set_bar (MyObject *obj,
|
1578
|
+
* gint bar)
|
1579
|
+
* {
|
1580
|
+
* MyObjectPrivate *priv = my_object_get_instance_private (obj);
|
1581
|
+
*
|
1582
|
+
* if (priv->bar != bar)
|
1583
|
+
* priv->bar = bar;
|
1584
|
+
* }
|
1585
|
+
* ]|
|
1586
|
+
*
|
1587
|
+
* Note that this macro can only be used together with the G_DEFINE_TYPE_*
|
1588
|
+
* macros, since it depends on variable names from those macros.
|
1589
|
+
*
|
1590
|
+
* Also note that private structs added with these macros must have a struct
|
1591
|
+
* name of the form `TypeNamePrivate`.
|
1592
|
+
*
|
1593
|
+
* Since: 2.38
|
1594
|
+
*/
|
1595
|
+
#define G_ADD_PRIVATE(TypeName) { \
|
1596
|
+
TypeName##_private_offset = \
|
1597
|
+
g_type_add_instance_private (g_define_type_id, sizeof (TypeName##Private)); \
|
1598
|
+
}
|
1599
|
+
|
1600
|
+
/**
|
1601
|
+
* G_PRIVATE_OFFSET:
|
1602
|
+
* @TypeName: the name of the type in CamelCase
|
1603
|
+
* @field: the name of the field in the private data structure
|
1604
|
+
*
|
1605
|
+
* Evaluates to the offset of the @field inside the instance private data
|
1606
|
+
* structure for @TypeName.
|
1607
|
+
*
|
1608
|
+
* Note that this macro can only be used together with the G_DEFINE_TYPE_*
|
1609
|
+
* and G_ADD_PRIVATE() macros, since it depends on variable names from
|
1610
|
+
* those macros.
|
1611
|
+
*
|
1612
|
+
* Since: 2.38
|
1613
|
+
*/
|
1614
|
+
#define G_PRIVATE_OFFSET(TypeName, field) \
|
1615
|
+
(TypeName##_private_offset + (G_STRUCT_OFFSET (TypeName##Private, field)))
|
1616
|
+
|
1617
|
+
/**
|
1618
|
+
* G_PRIVATE_FIELD_P:
|
1619
|
+
* @TypeName: the name of the type in CamelCase
|
1620
|
+
* @inst: the instance of @TypeName you wish to access
|
1621
|
+
* @field_name: the name of the field in the private data structure
|
1622
|
+
*
|
1623
|
+
* Evaluates to a pointer to the @field_name inside the @inst private data
|
1624
|
+
* structure for @TypeName.
|
1625
|
+
*
|
1626
|
+
* Note that this macro can only be used together with the G_DEFINE_TYPE_*
|
1627
|
+
* and G_ADD_PRIVATE() macros, since it depends on variable names from
|
1628
|
+
* those macros.
|
1629
|
+
*
|
1630
|
+
* Since: 2.38
|
1631
|
+
*/
|
1632
|
+
#define G_PRIVATE_FIELD_P(TypeName, inst, field_name) \
|
1633
|
+
G_STRUCT_MEMBER_P (inst, G_PRIVATE_OFFSET (TypeName, field_name))
|
1634
|
+
|
1635
|
+
/**
|
1636
|
+
* G_PRIVATE_FIELD:
|
1637
|
+
* @TypeName: the name of the type in CamelCase
|
1638
|
+
* @inst: the instance of @TypeName you wish to access
|
1639
|
+
* @field_type: the type of the field in the private data structure
|
1640
|
+
* @field_name: the name of the field in the private data structure
|
1641
|
+
*
|
1642
|
+
* Evaluates to the @field_name inside the @inst private data
|
1643
|
+
* structure for @TypeName.
|
1644
|
+
*
|
1645
|
+
* Note that this macro can only be used together with the G_DEFINE_TYPE_*
|
1646
|
+
* and G_ADD_PRIVATE() macros, since it depends on variable names from
|
1647
|
+
* those macros.
|
1648
|
+
*
|
1649
|
+
* Since: 2.38
|
1650
|
+
*/
|
1651
|
+
#define G_PRIVATE_FIELD(TypeName, inst, field_type, field_name) \
|
1652
|
+
G_STRUCT_MEMBER (field_type, inst, G_PRIVATE_OFFSET (TypeName, field_name))
|
1653
|
+
|
1654
|
+
/* we need to have this macro under conditional expansion, as it references
|
1655
|
+
* a function that has been added in 2.38. see bug:
|
1656
|
+
* https://bugzilla.gnome.org/show_bug.cgi?id=703191
|
1657
|
+
*/
|
1658
|
+
#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
|
1659
|
+
#define _G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \
|
1660
|
+
static void type_name##_class_intern_init (gpointer klass) \
|
1661
|
+
{ \
|
1662
|
+
type_name##_parent_class = g_type_class_peek_parent (klass); \
|
1663
|
+
if (TypeName##_private_offset != 0) \
|
1664
|
+
g_type_class_adjust_private_offset (klass, &TypeName##_private_offset); \
|
1665
|
+
type_name##_class_init ((TypeName##Class*) klass); \
|
1666
|
+
}
|
1667
|
+
|
1668
|
+
#else
|
1669
|
+
#define _G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \
|
1670
|
+
static void type_name##_class_intern_init (gpointer klass) \
|
1671
|
+
{ \
|
1672
|
+
type_name##_parent_class = g_type_class_peek_parent (klass); \
|
1673
|
+
type_name##_class_init ((TypeName##Class*) klass); \
|
1674
|
+
}
|
1675
|
+
#endif /* GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 */
|
1676
|
+
|
1677
|
+
#define _G_DEFINE_TYPE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PARENT, flags) \
|
1678
|
+
\
|
1679
|
+
static void type_name##_init (TypeName *self); \
|
1680
|
+
static void type_name##_class_init (TypeName##Class *klass); \
|
1681
|
+
static gpointer type_name##_parent_class = NULL; \
|
1682
|
+
static gint TypeName##_private_offset; \
|
1683
|
+
\
|
1684
|
+
_G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \
|
1685
|
+
\
|
1686
|
+
G_GNUC_UNUSED \
|
1687
|
+
static inline gpointer \
|
1688
|
+
type_name##_get_instance_private (TypeName *self) \
|
1689
|
+
{ \
|
1690
|
+
return (G_STRUCT_MEMBER_P (self, TypeName##_private_offset)); \
|
1691
|
+
} \
|
1692
|
+
\
|
1693
|
+
GType \
|
1694
|
+
type_name##_get_type (void) \
|
1695
|
+
{ \
|
1696
|
+
static volatile gsize g_define_type_id__volatile = 0; \
|
1697
|
+
if (g_once_init_enter (&g_define_type_id__volatile)) \
|
1698
|
+
{ \
|
1699
|
+
GType g_define_type_id = \
|
1700
|
+
g_type_register_static_simple (TYPE_PARENT, \
|
1701
|
+
g_intern_static_string (#TypeName), \
|
1702
|
+
sizeof (TypeName##Class), \
|
1703
|
+
(GClassInitFunc) type_name##_class_intern_init, \
|
1704
|
+
sizeof (TypeName), \
|
1705
|
+
(GInstanceInitFunc) type_name##_init, \
|
1706
|
+
(GTypeFlags) flags); \
|
1707
|
+
{ /* custom code follows */
|
1708
|
+
#define _G_DEFINE_TYPE_EXTENDED_END() \
|
1709
|
+
/* following custom code */ \
|
1710
|
+
} \
|
1711
|
+
g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); \
|
1712
|
+
} \
|
1713
|
+
return g_define_type_id__volatile; \
|
1714
|
+
} /* closes type_name##_get_type() */
|
1715
|
+
|
1716
|
+
#define _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PREREQ) \
|
1717
|
+
\
|
1718
|
+
static void type_name##_default_init (TypeName##Interface *klass); \
|
1719
|
+
\
|
1720
|
+
GType \
|
1721
|
+
type_name##_get_type (void) \
|
1722
|
+
{ \
|
1723
|
+
static volatile gsize g_define_type_id__volatile = 0; \
|
1724
|
+
if (g_once_init_enter (&g_define_type_id__volatile)) \
|
1725
|
+
{ \
|
1726
|
+
GType g_define_type_id = \
|
1727
|
+
g_type_register_static_simple (G_TYPE_INTERFACE, \
|
1728
|
+
g_intern_static_string (#TypeName), \
|
1729
|
+
sizeof (TypeName##Interface), \
|
1730
|
+
(GClassInitFunc)type_name##_default_init, \
|
1731
|
+
0, \
|
1732
|
+
(GInstanceInitFunc)NULL, \
|
1733
|
+
(GTypeFlags) 0); \
|
1734
|
+
if (TYPE_PREREQ) \
|
1735
|
+
g_type_interface_add_prerequisite (g_define_type_id, TYPE_PREREQ); \
|
1736
|
+
{ /* custom code follows */
|
1737
|
+
#define _G_DEFINE_INTERFACE_EXTENDED_END() \
|
1738
|
+
/* following custom code */ \
|
1739
|
+
} \
|
1740
|
+
g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); \
|
1741
|
+
} \
|
1742
|
+
return g_define_type_id__volatile; \
|
1743
|
+
} /* closes type_name##_get_type() */
|
1744
|
+
|
1745
|
+
/**
|
1746
|
+
* G_DEFINE_BOXED_TYPE:
|
1747
|
+
* @TypeName: The name of the new type, in Camel case
|
1748
|
+
* @type_name: The name of the new type, in lowercase, with words
|
1749
|
+
* separated by '_'
|
1750
|
+
* @copy_func: the #GBoxedCopyFunc for the new type
|
1751
|
+
* @free_func: the #GBoxedFreeFunc for the new type
|
1752
|
+
*
|
1753
|
+
* A convenience macro for boxed type implementations, which defines a
|
1754
|
+
* type_name_get_type() function registering the boxed type.
|
1755
|
+
*
|
1756
|
+
* Since: 2.26
|
1757
|
+
*/
|
1758
|
+
#define G_DEFINE_BOXED_TYPE(TypeName, type_name, copy_func, free_func) G_DEFINE_BOXED_TYPE_WITH_CODE (TypeName, type_name, copy_func, free_func, {})
|
1759
|
+
/**
|
1760
|
+
* G_DEFINE_BOXED_TYPE_WITH_CODE:
|
1761
|
+
* @TypeName: The name of the new type, in Camel case
|
1762
|
+
* @type_name: The name of the new type, in lowercase, with words
|
1763
|
+
* separated by '_'
|
1764
|
+
* @copy_func: the #GBoxedCopyFunc for the new type
|
1765
|
+
* @free_func: the #GBoxedFreeFunc for the new type
|
1766
|
+
* @_C_: Custom code that gets inserted in the *_get_type() function
|
1767
|
+
*
|
1768
|
+
* A convenience macro for boxed type implementations.
|
1769
|
+
* Similar to G_DEFINE_BOXED_TYPE(), but allows to insert custom code into the
|
1770
|
+
* type_name_get_type() function, e.g. to register value transformations with
|
1771
|
+
* g_value_register_transform_func().
|
1772
|
+
*
|
1773
|
+
* Since: 2.26
|
1774
|
+
*/
|
1775
|
+
#define G_DEFINE_BOXED_TYPE_WITH_CODE(TypeName, type_name, copy_func, free_func, _C_) _G_DEFINE_BOXED_TYPE_BEGIN (TypeName, type_name, copy_func, free_func) {_C_;} _G_DEFINE_TYPE_EXTENDED_END()
|
1776
|
+
|
1777
|
+
/* Only use this in non-C++ on GCC >= 2.7, except for Darwin/ppc64.
|
1778
|
+
* See https://bugzilla.gnome.org/show_bug.cgi?id=647145
|
1779
|
+
*/
|
1780
|
+
#if !defined (__cplusplus) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)) && !(defined (__APPLE__) && defined (__ppc64__))
|
1781
|
+
#define _G_DEFINE_BOXED_TYPE_BEGIN(TypeName, type_name, copy_func, free_func) \
|
1782
|
+
GType \
|
1783
|
+
type_name##_get_type (void) \
|
1784
|
+
{ \
|
1785
|
+
static volatile gsize g_define_type_id__volatile = 0; \
|
1786
|
+
if (g_once_init_enter (&g_define_type_id__volatile)) \
|
1787
|
+
{ \
|
1788
|
+
GType (* _g_register_boxed) \
|
1789
|
+
(const gchar *, \
|
1790
|
+
union \
|
1791
|
+
{ \
|
1792
|
+
TypeName * (*do_copy_type) (TypeName *); \
|
1793
|
+
TypeName * (*do_const_copy_type) (const TypeName *); \
|
1794
|
+
GBoxedCopyFunc do_copy_boxed; \
|
1795
|
+
} __attribute__((__transparent_union__)), \
|
1796
|
+
union \
|
1797
|
+
{ \
|
1798
|
+
void (* do_free_type) (TypeName *); \
|
1799
|
+
GBoxedFreeFunc do_free_boxed; \
|
1800
|
+
} __attribute__((__transparent_union__)) \
|
1801
|
+
) = g_boxed_type_register_static; \
|
1802
|
+
GType g_define_type_id = \
|
1803
|
+
_g_register_boxed (g_intern_static_string (#TypeName), copy_func, free_func); \
|
1804
|
+
{ /* custom code follows */
|
1805
|
+
#else
|
1806
|
+
#define _G_DEFINE_BOXED_TYPE_BEGIN(TypeName, type_name, copy_func, free_func) \
|
1807
|
+
GType \
|
1808
|
+
type_name##_get_type (void) \
|
1809
|
+
{ \
|
1810
|
+
static volatile gsize g_define_type_id__volatile = 0; \
|
1811
|
+
if (g_once_init_enter (&g_define_type_id__volatile)) \
|
1812
|
+
{ \
|
1813
|
+
GType g_define_type_id = \
|
1814
|
+
g_boxed_type_register_static (g_intern_static_string (#TypeName), \
|
1815
|
+
(GBoxedCopyFunc) copy_func, \
|
1816
|
+
(GBoxedFreeFunc) free_func); \
|
1817
|
+
{ /* custom code follows */
|
1818
|
+
#endif /* __GNUC__ */
|
1819
|
+
|
1820
|
+
/**
|
1821
|
+
* G_DEFINE_POINTER_TYPE:
|
1822
|
+
* @TypeName: The name of the new type, in Camel case
|
1823
|
+
* @type_name: The name of the new type, in lowercase, with words
|
1824
|
+
* separated by '_'
|
1825
|
+
*
|
1826
|
+
* A convenience macro for pointer type implementations, which defines a
|
1827
|
+
* type_name_get_type() function registering the pointer type.
|
1828
|
+
*
|
1829
|
+
* Since: 2.26
|
1830
|
+
*/
|
1831
|
+
#define G_DEFINE_POINTER_TYPE(TypeName, type_name) G_DEFINE_POINTER_TYPE_WITH_CODE (TypeName, type_name, {})
|
1832
|
+
/**
|
1833
|
+
* G_DEFINE_POINTER_TYPE_WITH_CODE:
|
1834
|
+
* @TypeName: The name of the new type, in Camel case
|
1835
|
+
* @type_name: The name of the new type, in lowercase, with words
|
1836
|
+
* separated by '_'
|
1837
|
+
* @_C_: Custom code that gets inserted in the *_get_type() function
|
1838
|
+
*
|
1839
|
+
* A convenience macro for pointer type implementations.
|
1840
|
+
* Similar to G_DEFINE_POINTER_TYPE(), but allows to insert
|
1841
|
+
* custom code into the type_name_get_type() function.
|
1842
|
+
*
|
1843
|
+
* Since: 2.26
|
1844
|
+
*/
|
1845
|
+
#define G_DEFINE_POINTER_TYPE_WITH_CODE(TypeName, type_name, _C_) _G_DEFINE_POINTER_TYPE_BEGIN (TypeName, type_name) {_C_;} _G_DEFINE_TYPE_EXTENDED_END()
|
1846
|
+
|
1847
|
+
#define _G_DEFINE_POINTER_TYPE_BEGIN(TypeName, type_name) \
|
1848
|
+
GType \
|
1849
|
+
type_name##_get_type (void) \
|
1850
|
+
{ \
|
1851
|
+
static volatile gsize g_define_type_id__volatile = 0; \
|
1852
|
+
if (g_once_init_enter (&g_define_type_id__volatile)) \
|
1853
|
+
{ \
|
1854
|
+
GType g_define_type_id = \
|
1855
|
+
g_pointer_type_register_static (g_intern_static_string (#TypeName)); \
|
1856
|
+
{ /* custom code follows */
|
1857
|
+
|
1858
|
+
/* --- protected (for fundamental type implementations) --- */
|
1859
|
+
GLIB_AVAILABLE_IN_ALL
|
1860
|
+
GTypePlugin* g_type_get_plugin (GType type);
|
1861
|
+
GLIB_AVAILABLE_IN_ALL
|
1862
|
+
GTypePlugin* g_type_interface_get_plugin (GType instance_type,
|
1863
|
+
GType interface_type);
|
1864
|
+
GLIB_AVAILABLE_IN_ALL
|
1865
|
+
GType g_type_fundamental_next (void);
|
1866
|
+
GLIB_AVAILABLE_IN_ALL
|
1867
|
+
GType g_type_fundamental (GType type_id);
|
1868
|
+
GLIB_AVAILABLE_IN_ALL
|
1869
|
+
GTypeInstance* g_type_create_instance (GType type);
|
1870
|
+
GLIB_AVAILABLE_IN_ALL
|
1871
|
+
void g_type_free_instance (GTypeInstance *instance);
|
1872
|
+
|
1873
|
+
GLIB_AVAILABLE_IN_ALL
|
1874
|
+
void g_type_add_class_cache_func (gpointer cache_data,
|
1875
|
+
GTypeClassCacheFunc cache_func);
|
1876
|
+
GLIB_AVAILABLE_IN_ALL
|
1877
|
+
void g_type_remove_class_cache_func (gpointer cache_data,
|
1878
|
+
GTypeClassCacheFunc cache_func);
|
1879
|
+
GLIB_AVAILABLE_IN_ALL
|
1880
|
+
void g_type_class_unref_uncached (gpointer g_class);
|
1881
|
+
|
1882
|
+
GLIB_AVAILABLE_IN_ALL
|
1883
|
+
void g_type_add_interface_check (gpointer check_data,
|
1884
|
+
GTypeInterfaceCheckFunc check_func);
|
1885
|
+
GLIB_AVAILABLE_IN_ALL
|
1886
|
+
void g_type_remove_interface_check (gpointer check_data,
|
1887
|
+
GTypeInterfaceCheckFunc check_func);
|
1888
|
+
|
1889
|
+
GLIB_AVAILABLE_IN_ALL
|
1890
|
+
GTypeValueTable* g_type_value_table_peek (GType type);
|
1891
|
+
|
1892
|
+
|
1893
|
+
/*< private >*/
|
1894
|
+
GLIB_AVAILABLE_IN_ALL
|
1895
|
+
gboolean g_type_check_instance (GTypeInstance *instance) G_GNUC_PURE;
|
1896
|
+
GLIB_AVAILABLE_IN_ALL
|
1897
|
+
GTypeInstance* g_type_check_instance_cast (GTypeInstance *instance,
|
1898
|
+
GType iface_type);
|
1899
|
+
GLIB_AVAILABLE_IN_ALL
|
1900
|
+
gboolean g_type_check_instance_is_a (GTypeInstance *instance,
|
1901
|
+
GType iface_type) G_GNUC_PURE;
|
1902
|
+
GLIB_AVAILABLE_IN_2_42
|
1903
|
+
gboolean g_type_check_instance_is_fundamentally_a (GTypeInstance *instance,
|
1904
|
+
GType fundamental_type) G_GNUC_PURE;
|
1905
|
+
GLIB_AVAILABLE_IN_ALL
|
1906
|
+
GTypeClass* g_type_check_class_cast (GTypeClass *g_class,
|
1907
|
+
GType is_a_type);
|
1908
|
+
GLIB_AVAILABLE_IN_ALL
|
1909
|
+
gboolean g_type_check_class_is_a (GTypeClass *g_class,
|
1910
|
+
GType is_a_type) G_GNUC_PURE;
|
1911
|
+
GLIB_AVAILABLE_IN_ALL
|
1912
|
+
gboolean g_type_check_is_value_type (GType type) G_GNUC_CONST;
|
1913
|
+
GLIB_AVAILABLE_IN_ALL
|
1914
|
+
gboolean g_type_check_value (GValue *value) G_GNUC_PURE;
|
1915
|
+
GLIB_AVAILABLE_IN_ALL
|
1916
|
+
gboolean g_type_check_value_holds (GValue *value,
|
1917
|
+
GType type) G_GNUC_PURE;
|
1918
|
+
GLIB_AVAILABLE_IN_ALL
|
1919
|
+
gboolean g_type_test_flags (GType type,
|
1920
|
+
guint flags) G_GNUC_CONST;
|
1921
|
+
|
1922
|
+
|
1923
|
+
/* --- debugging functions --- */
|
1924
|
+
GLIB_AVAILABLE_IN_ALL
|
1925
|
+
const gchar * g_type_name_from_instance (GTypeInstance *instance);
|
1926
|
+
GLIB_AVAILABLE_IN_ALL
|
1927
|
+
const gchar * g_type_name_from_class (GTypeClass *g_class);
|
1928
|
+
|
1929
|
+
|
1930
|
+
/* --- implementation bits --- */
|
1931
|
+
#ifndef G_DISABLE_CAST_CHECKS
|
1932
|
+
# define _G_TYPE_CIC(ip, gt, ct) \
|
1933
|
+
((ct*) g_type_check_instance_cast ((GTypeInstance*) ip, gt))
|
1934
|
+
# define _G_TYPE_CCC(cp, gt, ct) \
|
1935
|
+
((ct*) g_type_check_class_cast ((GTypeClass*) cp, gt))
|
1936
|
+
#else /* G_DISABLE_CAST_CHECKS */
|
1937
|
+
# define _G_TYPE_CIC(ip, gt, ct) ((ct*) ip)
|
1938
|
+
# define _G_TYPE_CCC(cp, gt, ct) ((ct*) cp)
|
1939
|
+
#endif /* G_DISABLE_CAST_CHECKS */
|
1940
|
+
#define _G_TYPE_CHI(ip) (g_type_check_instance ((GTypeInstance*) ip))
|
1941
|
+
#define _G_TYPE_CHV(vl) (g_type_check_value ((GValue*) vl))
|
1942
|
+
#define _G_TYPE_IGC(ip, gt, ct) ((ct*) (((GTypeInstance*) ip)->g_class))
|
1943
|
+
#define _G_TYPE_IGI(ip, gt, ct) ((ct*) g_type_interface_peek (((GTypeInstance*) ip)->g_class, gt))
|
1944
|
+
#define _G_TYPE_CIFT(ip, ft) (g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ip, ft))
|
1945
|
+
#ifdef __GNUC__
|
1946
|
+
# define _G_TYPE_CIT(ip, gt) (G_GNUC_EXTENSION ({ \
|
1947
|
+
GTypeInstance *__inst = (GTypeInstance*) ip; GType __t = gt; gboolean __r; \
|
1948
|
+
if (!__inst) \
|
1949
|
+
__r = FALSE; \
|
1950
|
+
else if (__inst->g_class && __inst->g_class->g_type == __t) \
|
1951
|
+
__r = TRUE; \
|
1952
|
+
else \
|
1953
|
+
__r = g_type_check_instance_is_a (__inst, __t); \
|
1954
|
+
__r; \
|
1955
|
+
}))
|
1956
|
+
# define _G_TYPE_CCT(cp, gt) (G_GNUC_EXTENSION ({ \
|
1957
|
+
GTypeClass *__class = (GTypeClass*) cp; GType __t = gt; gboolean __r; \
|
1958
|
+
if (!__class) \
|
1959
|
+
__r = FALSE; \
|
1960
|
+
else if (__class->g_type == __t) \
|
1961
|
+
__r = TRUE; \
|
1962
|
+
else \
|
1963
|
+
__r = g_type_check_class_is_a (__class, __t); \
|
1964
|
+
__r; \
|
1965
|
+
}))
|
1966
|
+
# define _G_TYPE_CVH(vl, gt) (G_GNUC_EXTENSION ({ \
|
1967
|
+
GValue *__val = (GValue*) vl; GType __t = gt; gboolean __r; \
|
1968
|
+
if (!__val) \
|
1969
|
+
__r = FALSE; \
|
1970
|
+
else if (__val->g_type == __t) \
|
1971
|
+
__r = TRUE; \
|
1972
|
+
else \
|
1973
|
+
__r = g_type_check_value_holds (__val, __t); \
|
1974
|
+
__r; \
|
1975
|
+
}))
|
1976
|
+
#else /* !__GNUC__ */
|
1977
|
+
# define _G_TYPE_CIT(ip, gt) (g_type_check_instance_is_a ((GTypeInstance*) ip, gt))
|
1978
|
+
# define _G_TYPE_CCT(cp, gt) (g_type_check_class_is_a ((GTypeClass*) cp, gt))
|
1979
|
+
# define _G_TYPE_CVH(vl, gt) (g_type_check_value_holds ((GValue*) vl, gt))
|
1980
|
+
#endif /* !__GNUC__ */
|
1981
|
+
/**
|
1982
|
+
* G_TYPE_FLAG_RESERVED_ID_BIT:
|
1983
|
+
*
|
1984
|
+
* A bit in the type number that's supposed to be left untouched.
|
1985
|
+
*/
|
1986
|
+
#define G_TYPE_FLAG_RESERVED_ID_BIT ((GType) (1 << 0))
|
1987
|
+
|
1988
|
+
G_END_DECLS
|
1989
|
+
|
1990
|
+
#endif /* __G_TYPE_H__ */
|