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,3510 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GObject Reference Manual: Closures</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GObject Reference Manual">
|
8
|
+
<link rel="up" href="rn01.html" title="API Reference">
|
9
|
+
<link rel="prev" href="gobject-Signals.html" title="Signals">
|
10
|
+
<link rel="next" href="gobject-Value-arrays.html" title="Value arrays">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#gobject-Closures.description" class="shortcut">Description</a></span>
|
19
|
+
</td>
|
20
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
21
|
+
<td><a accesskey="u" href="rn01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
22
|
+
<td><a accesskey="p" href="gobject-Signals.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
23
|
+
<td><a accesskey="n" href="gobject-Value-arrays.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
24
|
+
</tr></table>
|
25
|
+
<div class="refentry">
|
26
|
+
<a name="gobject-Closures"></a><div class="titlepage"></div>
|
27
|
+
<div class="refnamediv"><table width="100%"><tr>
|
28
|
+
<td valign="top">
|
29
|
+
<h2><span class="refentrytitle"><a name="gobject-Closures.top_of_page"></a>Closures</span></h2>
|
30
|
+
<p>Closures — Functions as first-class objects</p>
|
31
|
+
</td>
|
32
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
33
|
+
</tr></table></div>
|
34
|
+
<div class="refsect1">
|
35
|
+
<a name="gobject-Closures.functions"></a><h2>Functions</h2>
|
36
|
+
<div class="informaltable"><table width="100%" border="0">
|
37
|
+
<colgroup>
|
38
|
+
<col width="150px" class="functions_return">
|
39
|
+
<col class="functions_name">
|
40
|
+
</colgroup>
|
41
|
+
<tbody>
|
42
|
+
<tr>
|
43
|
+
<td class="define_keyword">#define</td>
|
44
|
+
<td class="function_name">
|
45
|
+
<a class="link" href="gobject-Closures.html#G-CLOSURE-NEEDS-MARSHAL:CAPS" title="G_CLOSURE_NEEDS_MARSHAL()">G_CLOSURE_NEEDS_MARSHAL</a><span class="c_punctuation">()</span>
|
46
|
+
</td>
|
47
|
+
</tr>
|
48
|
+
<tr>
|
49
|
+
<td class="define_keyword">#define</td>
|
50
|
+
<td class="function_name">
|
51
|
+
<a class="link" href="gobject-Closures.html#G-CLOSURE-N-NOTIFIERS:CAPS" title="G_CLOSURE_N_NOTIFIERS()">G_CLOSURE_N_NOTIFIERS</a><span class="c_punctuation">()</span>
|
52
|
+
</td>
|
53
|
+
</tr>
|
54
|
+
<tr>
|
55
|
+
<td class="define_keyword">#define</td>
|
56
|
+
<td class="function_name">
|
57
|
+
<a class="link" href="gobject-Closures.html#G-CCLOSURE-SWAP-DATA:CAPS" title="G_CCLOSURE_SWAP_DATA()">G_CCLOSURE_SWAP_DATA</a><span class="c_punctuation">()</span>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
<tr>
|
61
|
+
<td class="define_keyword">#define</td>
|
62
|
+
<td class="function_name">
|
63
|
+
<a class="link" href="gobject-Closures.html#G-CALLBACK:CAPS" title="G_CALLBACK()">G_CALLBACK</a><span class="c_punctuation">()</span>
|
64
|
+
</td>
|
65
|
+
</tr>
|
66
|
+
<tr>
|
67
|
+
<td class="function_type">
|
68
|
+
<span class="returnvalue">void</span>
|
69
|
+
</td>
|
70
|
+
<td class="function_name">
|
71
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()">*GCallback</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
72
|
+
</td>
|
73
|
+
</tr>
|
74
|
+
<tr>
|
75
|
+
<td class="define_keyword">#define</td>
|
76
|
+
<td class="function_name"><a class="link" href="gobject-Closures.html#G-TYPE-CLOSURE:CAPS" title="G_TYPE_CLOSURE">G_TYPE_CLOSURE</a></td>
|
77
|
+
</tr>
|
78
|
+
<tr>
|
79
|
+
<td class="function_type">
|
80
|
+
<span class="returnvalue">void</span>
|
81
|
+
</td>
|
82
|
+
<td class="function_name">
|
83
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-Closures.html#GClosureMarshal" title="GClosureMarshal ()">*GClosureMarshal</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
84
|
+
</td>
|
85
|
+
</tr>
|
86
|
+
<tr>
|
87
|
+
<td class="function_type">
|
88
|
+
<span class="returnvalue">void</span>
|
89
|
+
</td>
|
90
|
+
<td class="function_name">
|
91
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-Closures.html#GVaClosureMarshal" title="GVaClosureMarshal ()">*GVaClosureMarshal</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
92
|
+
</td>
|
93
|
+
</tr>
|
94
|
+
<tr>
|
95
|
+
<td class="function_type">
|
96
|
+
<span class="returnvalue">void</span>
|
97
|
+
</td>
|
98
|
+
<td class="function_name">
|
99
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()">*GClosureNotify</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
100
|
+
</td>
|
101
|
+
</tr>
|
102
|
+
<tr>
|
103
|
+
<td class="function_type">
|
104
|
+
<a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
105
|
+
</td>
|
106
|
+
<td class="function_name">
|
107
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-new" title="g_cclosure_new ()">g_cclosure_new</a> <span class="c_punctuation">()</span>
|
108
|
+
</td>
|
109
|
+
</tr>
|
110
|
+
<tr>
|
111
|
+
<td class="function_type">
|
112
|
+
<a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
113
|
+
</td>
|
114
|
+
<td class="function_name">
|
115
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-new-swap" title="g_cclosure_new_swap ()">g_cclosure_new_swap</a> <span class="c_punctuation">()</span>
|
116
|
+
</td>
|
117
|
+
</tr>
|
118
|
+
<tr>
|
119
|
+
<td class="function_type">
|
120
|
+
<a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
121
|
+
</td>
|
122
|
+
<td class="function_name">
|
123
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-new-object" title="g_cclosure_new_object ()">g_cclosure_new_object</a> <span class="c_punctuation">()</span>
|
124
|
+
</td>
|
125
|
+
</tr>
|
126
|
+
<tr>
|
127
|
+
<td class="function_type">
|
128
|
+
<a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
129
|
+
</td>
|
130
|
+
<td class="function_name">
|
131
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-new-object-swap" title="g_cclosure_new_object_swap ()">g_cclosure_new_object_swap</a> <span class="c_punctuation">()</span>
|
132
|
+
</td>
|
133
|
+
</tr>
|
134
|
+
<tr>
|
135
|
+
<td class="function_type">
|
136
|
+
<span class="returnvalue">void</span>
|
137
|
+
</td>
|
138
|
+
<td class="function_name">
|
139
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-generic" title="g_cclosure_marshal_generic ()">g_cclosure_marshal_generic</a> <span class="c_punctuation">()</span>
|
140
|
+
</td>
|
141
|
+
</tr>
|
142
|
+
<tr>
|
143
|
+
<td class="function_type">
|
144
|
+
<a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
145
|
+
</td>
|
146
|
+
<td class="function_name">
|
147
|
+
<a class="link" href="gobject-Closures.html#g-closure-new-object" title="g_closure_new_object ()">g_closure_new_object</a> <span class="c_punctuation">()</span>
|
148
|
+
</td>
|
149
|
+
</tr>
|
150
|
+
<tr>
|
151
|
+
<td class="function_type">
|
152
|
+
<a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
153
|
+
</td>
|
154
|
+
<td class="function_name">
|
155
|
+
<a class="link" href="gobject-Closures.html#g-closure-ref" title="g_closure_ref ()">g_closure_ref</a> <span class="c_punctuation">()</span>
|
156
|
+
</td>
|
157
|
+
</tr>
|
158
|
+
<tr>
|
159
|
+
<td class="function_type">
|
160
|
+
<span class="returnvalue">void</span>
|
161
|
+
</td>
|
162
|
+
<td class="function_name">
|
163
|
+
<a class="link" href="gobject-Closures.html#g-closure-sink" title="g_closure_sink ()">g_closure_sink</a> <span class="c_punctuation">()</span>
|
164
|
+
</td>
|
165
|
+
</tr>
|
166
|
+
<tr>
|
167
|
+
<td class="function_type">
|
168
|
+
<span class="returnvalue">void</span>
|
169
|
+
</td>
|
170
|
+
<td class="function_name">
|
171
|
+
<a class="link" href="gobject-Closures.html#g-closure-unref" title="g_closure_unref ()">g_closure_unref</a> <span class="c_punctuation">()</span>
|
172
|
+
</td>
|
173
|
+
</tr>
|
174
|
+
<tr>
|
175
|
+
<td class="function_type">
|
176
|
+
<span class="returnvalue">void</span>
|
177
|
+
</td>
|
178
|
+
<td class="function_name">
|
179
|
+
<a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()">g_closure_invoke</a> <span class="c_punctuation">()</span>
|
180
|
+
</td>
|
181
|
+
</tr>
|
182
|
+
<tr>
|
183
|
+
<td class="function_type">
|
184
|
+
<span class="returnvalue">void</span>
|
185
|
+
</td>
|
186
|
+
<td class="function_name">
|
187
|
+
<a class="link" href="gobject-Closures.html#g-closure-invalidate" title="g_closure_invalidate ()">g_closure_invalidate</a> <span class="c_punctuation">()</span>
|
188
|
+
</td>
|
189
|
+
</tr>
|
190
|
+
<tr>
|
191
|
+
<td class="function_type">
|
192
|
+
<span class="returnvalue">void</span>
|
193
|
+
</td>
|
194
|
+
<td class="function_name">
|
195
|
+
<a class="link" href="gobject-Closures.html#g-closure-add-finalize-notifier" title="g_closure_add_finalize_notifier ()">g_closure_add_finalize_notifier</a> <span class="c_punctuation">()</span>
|
196
|
+
</td>
|
197
|
+
</tr>
|
198
|
+
<tr>
|
199
|
+
<td class="function_type">
|
200
|
+
<span class="returnvalue">void</span>
|
201
|
+
</td>
|
202
|
+
<td class="function_name">
|
203
|
+
<a class="link" href="gobject-Closures.html#g-closure-add-invalidate-notifier" title="g_closure_add_invalidate_notifier ()">g_closure_add_invalidate_notifier</a> <span class="c_punctuation">()</span>
|
204
|
+
</td>
|
205
|
+
</tr>
|
206
|
+
<tr>
|
207
|
+
<td class="function_type">
|
208
|
+
<span class="returnvalue">void</span>
|
209
|
+
</td>
|
210
|
+
<td class="function_name">
|
211
|
+
<a class="link" href="gobject-Closures.html#g-closure-remove-finalize-notifier" title="g_closure_remove_finalize_notifier ()">g_closure_remove_finalize_notifier</a> <span class="c_punctuation">()</span>
|
212
|
+
</td>
|
213
|
+
</tr>
|
214
|
+
<tr>
|
215
|
+
<td class="function_type">
|
216
|
+
<span class="returnvalue">void</span>
|
217
|
+
</td>
|
218
|
+
<td class="function_name">
|
219
|
+
<a class="link" href="gobject-Closures.html#g-closure-remove-invalidate-notifier" title="g_closure_remove_invalidate_notifier ()">g_closure_remove_invalidate_notifier</a> <span class="c_punctuation">()</span>
|
220
|
+
</td>
|
221
|
+
</tr>
|
222
|
+
<tr>
|
223
|
+
<td class="function_type">
|
224
|
+
<a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
225
|
+
</td>
|
226
|
+
<td class="function_name">
|
227
|
+
<a class="link" href="gobject-Closures.html#g-closure-new-simple" title="g_closure_new_simple ()">g_closure_new_simple</a> <span class="c_punctuation">()</span>
|
228
|
+
</td>
|
229
|
+
</tr>
|
230
|
+
<tr>
|
231
|
+
<td class="function_type">
|
232
|
+
<span class="returnvalue">void</span>
|
233
|
+
</td>
|
234
|
+
<td class="function_name">
|
235
|
+
<a class="link" href="gobject-Closures.html#g-closure-set-marshal" title="g_closure_set_marshal ()">g_closure_set_marshal</a> <span class="c_punctuation">()</span>
|
236
|
+
</td>
|
237
|
+
</tr>
|
238
|
+
<tr>
|
239
|
+
<td class="function_type">
|
240
|
+
<span class="returnvalue">void</span>
|
241
|
+
</td>
|
242
|
+
<td class="function_name">
|
243
|
+
<a class="link" href="gobject-Closures.html#g-closure-add-marshal-guards" title="g_closure_add_marshal_guards ()">g_closure_add_marshal_guards</a> <span class="c_punctuation">()</span>
|
244
|
+
</td>
|
245
|
+
</tr>
|
246
|
+
<tr>
|
247
|
+
<td class="function_type">
|
248
|
+
<span class="returnvalue">void</span>
|
249
|
+
</td>
|
250
|
+
<td class="function_name">
|
251
|
+
<a class="link" href="gobject-Closures.html#g-closure-set-meta-marshal" title="g_closure_set_meta_marshal ()">g_closure_set_meta_marshal</a> <span class="c_punctuation">()</span>
|
252
|
+
</td>
|
253
|
+
</tr>
|
254
|
+
<tr>
|
255
|
+
<td class="function_type">
|
256
|
+
<span class="returnvalue">void</span>
|
257
|
+
</td>
|
258
|
+
<td class="function_name">
|
259
|
+
<a class="link" href="gobject-Closures.html#g-source-set-closure" title="g_source_set_closure ()">g_source_set_closure</a> <span class="c_punctuation">()</span>
|
260
|
+
</td>
|
261
|
+
</tr>
|
262
|
+
<tr>
|
263
|
+
<td class="function_type">
|
264
|
+
<span class="returnvalue">void</span>
|
265
|
+
</td>
|
266
|
+
<td class="function_name">
|
267
|
+
<a class="link" href="gobject-Closures.html#g-source-set-dummy-callback" title="g_source_set_dummy_callback ()">g_source_set_dummy_callback</a> <span class="c_punctuation">()</span>
|
268
|
+
</td>
|
269
|
+
</tr>
|
270
|
+
<tr>
|
271
|
+
<td class="function_type">
|
272
|
+
<span class="returnvalue">void</span>
|
273
|
+
</td>
|
274
|
+
<td class="function_name">
|
275
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--VOID" title="g_cclosure_marshal_VOID__VOID ()">g_cclosure_marshal_VOID__VOID</a> <span class="c_punctuation">()</span>
|
276
|
+
</td>
|
277
|
+
</tr>
|
278
|
+
<tr>
|
279
|
+
<td class="function_type">
|
280
|
+
<span class="returnvalue">void</span>
|
281
|
+
</td>
|
282
|
+
<td class="function_name">
|
283
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--BOOLEAN" title="g_cclosure_marshal_VOID__BOOLEAN ()">g_cclosure_marshal_VOID__BOOLEAN</a> <span class="c_punctuation">()</span>
|
284
|
+
</td>
|
285
|
+
</tr>
|
286
|
+
<tr>
|
287
|
+
<td class="function_type">
|
288
|
+
<span class="returnvalue">void</span>
|
289
|
+
</td>
|
290
|
+
<td class="function_name">
|
291
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--CHAR" title="g_cclosure_marshal_VOID__CHAR ()">g_cclosure_marshal_VOID__CHAR</a> <span class="c_punctuation">()</span>
|
292
|
+
</td>
|
293
|
+
</tr>
|
294
|
+
<tr>
|
295
|
+
<td class="function_type">
|
296
|
+
<span class="returnvalue">void</span>
|
297
|
+
</td>
|
298
|
+
<td class="function_name">
|
299
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UCHAR" title="g_cclosure_marshal_VOID__UCHAR ()">g_cclosure_marshal_VOID__UCHAR</a> <span class="c_punctuation">()</span>
|
300
|
+
</td>
|
301
|
+
</tr>
|
302
|
+
<tr>
|
303
|
+
<td class="function_type">
|
304
|
+
<span class="returnvalue">void</span>
|
305
|
+
</td>
|
306
|
+
<td class="function_name">
|
307
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--INT" title="g_cclosure_marshal_VOID__INT ()">g_cclosure_marshal_VOID__INT</a> <span class="c_punctuation">()</span>
|
308
|
+
</td>
|
309
|
+
</tr>
|
310
|
+
<tr>
|
311
|
+
<td class="function_type">
|
312
|
+
<span class="returnvalue">void</span>
|
313
|
+
</td>
|
314
|
+
<td class="function_name">
|
315
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UINT" title="g_cclosure_marshal_VOID__UINT ()">g_cclosure_marshal_VOID__UINT</a> <span class="c_punctuation">()</span>
|
316
|
+
</td>
|
317
|
+
</tr>
|
318
|
+
<tr>
|
319
|
+
<td class="function_type">
|
320
|
+
<span class="returnvalue">void</span>
|
321
|
+
</td>
|
322
|
+
<td class="function_name">
|
323
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--LONG" title="g_cclosure_marshal_VOID__LONG ()">g_cclosure_marshal_VOID__LONG</a> <span class="c_punctuation">()</span>
|
324
|
+
</td>
|
325
|
+
</tr>
|
326
|
+
<tr>
|
327
|
+
<td class="function_type">
|
328
|
+
<span class="returnvalue">void</span>
|
329
|
+
</td>
|
330
|
+
<td class="function_name">
|
331
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--ULONG" title="g_cclosure_marshal_VOID__ULONG ()">g_cclosure_marshal_VOID__ULONG</a> <span class="c_punctuation">()</span>
|
332
|
+
</td>
|
333
|
+
</tr>
|
334
|
+
<tr>
|
335
|
+
<td class="function_type">
|
336
|
+
<span class="returnvalue">void</span>
|
337
|
+
</td>
|
338
|
+
<td class="function_name">
|
339
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--ENUM" title="g_cclosure_marshal_VOID__ENUM ()">g_cclosure_marshal_VOID__ENUM</a> <span class="c_punctuation">()</span>
|
340
|
+
</td>
|
341
|
+
</tr>
|
342
|
+
<tr>
|
343
|
+
<td class="function_type">
|
344
|
+
<span class="returnvalue">void</span>
|
345
|
+
</td>
|
346
|
+
<td class="function_name">
|
347
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--FLAGS" title="g_cclosure_marshal_VOID__FLAGS ()">g_cclosure_marshal_VOID__FLAGS</a> <span class="c_punctuation">()</span>
|
348
|
+
</td>
|
349
|
+
</tr>
|
350
|
+
<tr>
|
351
|
+
<td class="function_type">
|
352
|
+
<span class="returnvalue">void</span>
|
353
|
+
</td>
|
354
|
+
<td class="function_name">
|
355
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--FLOAT" title="g_cclosure_marshal_VOID__FLOAT ()">g_cclosure_marshal_VOID__FLOAT</a> <span class="c_punctuation">()</span>
|
356
|
+
</td>
|
357
|
+
</tr>
|
358
|
+
<tr>
|
359
|
+
<td class="function_type">
|
360
|
+
<span class="returnvalue">void</span>
|
361
|
+
</td>
|
362
|
+
<td class="function_name">
|
363
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--DOUBLE" title="g_cclosure_marshal_VOID__DOUBLE ()">g_cclosure_marshal_VOID__DOUBLE</a> <span class="c_punctuation">()</span>
|
364
|
+
</td>
|
365
|
+
</tr>
|
366
|
+
<tr>
|
367
|
+
<td class="function_type">
|
368
|
+
<span class="returnvalue">void</span>
|
369
|
+
</td>
|
370
|
+
<td class="function_name">
|
371
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--STRING" title="g_cclosure_marshal_VOID__STRING ()">g_cclosure_marshal_VOID__STRING</a> <span class="c_punctuation">()</span>
|
372
|
+
</td>
|
373
|
+
</tr>
|
374
|
+
<tr>
|
375
|
+
<td class="function_type">
|
376
|
+
<span class="returnvalue">void</span>
|
377
|
+
</td>
|
378
|
+
<td class="function_name">
|
379
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--PARAM" title="g_cclosure_marshal_VOID__PARAM ()">g_cclosure_marshal_VOID__PARAM</a> <span class="c_punctuation">()</span>
|
380
|
+
</td>
|
381
|
+
</tr>
|
382
|
+
<tr>
|
383
|
+
<td class="function_type">
|
384
|
+
<span class="returnvalue">void</span>
|
385
|
+
</td>
|
386
|
+
<td class="function_name">
|
387
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--BOXED" title="g_cclosure_marshal_VOID__BOXED ()">g_cclosure_marshal_VOID__BOXED</a> <span class="c_punctuation">()</span>
|
388
|
+
</td>
|
389
|
+
</tr>
|
390
|
+
<tr>
|
391
|
+
<td class="function_type">
|
392
|
+
<span class="returnvalue">void</span>
|
393
|
+
</td>
|
394
|
+
<td class="function_name">
|
395
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--POINTER" title="g_cclosure_marshal_VOID__POINTER ()">g_cclosure_marshal_VOID__POINTER</a> <span class="c_punctuation">()</span>
|
396
|
+
</td>
|
397
|
+
</tr>
|
398
|
+
<tr>
|
399
|
+
<td class="function_type">
|
400
|
+
<span class="returnvalue">void</span>
|
401
|
+
</td>
|
402
|
+
<td class="function_name">
|
403
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--OBJECT" title="g_cclosure_marshal_VOID__OBJECT ()">g_cclosure_marshal_VOID__OBJECT</a> <span class="c_punctuation">()</span>
|
404
|
+
</td>
|
405
|
+
</tr>
|
406
|
+
<tr>
|
407
|
+
<td class="function_type">
|
408
|
+
<span class="returnvalue">void</span>
|
409
|
+
</td>
|
410
|
+
<td class="function_name">
|
411
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--VARIANT" title="g_cclosure_marshal_VOID__VARIANT ()">g_cclosure_marshal_VOID__VARIANT</a> <span class="c_punctuation">()</span>
|
412
|
+
</td>
|
413
|
+
</tr>
|
414
|
+
<tr>
|
415
|
+
<td class="function_type">
|
416
|
+
<span class="returnvalue">void</span>
|
417
|
+
</td>
|
418
|
+
<td class="function_name">
|
419
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-STRING--OBJECT-POINTER" title="g_cclosure_marshal_STRING__OBJECT_POINTER ()">g_cclosure_marshal_STRING__OBJECT_POINTER</a> <span class="c_punctuation">()</span>
|
420
|
+
</td>
|
421
|
+
</tr>
|
422
|
+
<tr>
|
423
|
+
<td class="function_type">
|
424
|
+
<span class="returnvalue">void</span>
|
425
|
+
</td>
|
426
|
+
<td class="function_name">
|
427
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UINT-POINTER" title="g_cclosure_marshal_VOID__UINT_POINTER ()">g_cclosure_marshal_VOID__UINT_POINTER</a> <span class="c_punctuation">()</span>
|
428
|
+
</td>
|
429
|
+
</tr>
|
430
|
+
<tr>
|
431
|
+
<td class="function_type">
|
432
|
+
<span class="returnvalue">void</span>
|
433
|
+
</td>
|
434
|
+
<td class="function_name">
|
435
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOLEAN--FLAGS" title="g_cclosure_marshal_BOOLEAN__FLAGS ()">g_cclosure_marshal_BOOLEAN__FLAGS</a> <span class="c_punctuation">()</span>
|
436
|
+
</td>
|
437
|
+
</tr>
|
438
|
+
<tr>
|
439
|
+
<td class="function_type">
|
440
|
+
<span class="returnvalue">void</span>
|
441
|
+
</td>
|
442
|
+
<td class="function_name">
|
443
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOLEAN--BOXED-BOXED" title="g_cclosure_marshal_BOOLEAN__BOXED_BOXED ()">g_cclosure_marshal_BOOLEAN__BOXED_BOXED</a> <span class="c_punctuation">()</span>
|
444
|
+
</td>
|
445
|
+
</tr>
|
446
|
+
<tr>
|
447
|
+
<td class="function_type">
|
448
|
+
<span class="returnvalue">void</span>
|
449
|
+
</td>
|
450
|
+
<td class="function_name">
|
451
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-generic-va" title="g_cclosure_marshal_generic_va ()">g_cclosure_marshal_generic_va</a> <span class="c_punctuation">()</span>
|
452
|
+
</td>
|
453
|
+
</tr>
|
454
|
+
<tr>
|
455
|
+
<td class="function_type">
|
456
|
+
<span class="returnvalue">void</span>
|
457
|
+
</td>
|
458
|
+
<td class="function_name">
|
459
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--VOIDv" title="g_cclosure_marshal_VOID__VOIDv ()">g_cclosure_marshal_VOID__VOIDv</a> <span class="c_punctuation">()</span>
|
460
|
+
</td>
|
461
|
+
</tr>
|
462
|
+
<tr>
|
463
|
+
<td class="function_type">
|
464
|
+
<span class="returnvalue">void</span>
|
465
|
+
</td>
|
466
|
+
<td class="function_name">
|
467
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--BOOLEANv" title="g_cclosure_marshal_VOID__BOOLEANv ()">g_cclosure_marshal_VOID__BOOLEANv</a> <span class="c_punctuation">()</span>
|
468
|
+
</td>
|
469
|
+
</tr>
|
470
|
+
<tr>
|
471
|
+
<td class="function_type">
|
472
|
+
<span class="returnvalue">void</span>
|
473
|
+
</td>
|
474
|
+
<td class="function_name">
|
475
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--CHARv" title="g_cclosure_marshal_VOID__CHARv ()">g_cclosure_marshal_VOID__CHARv</a> <span class="c_punctuation">()</span>
|
476
|
+
</td>
|
477
|
+
</tr>
|
478
|
+
<tr>
|
479
|
+
<td class="function_type">
|
480
|
+
<span class="returnvalue">void</span>
|
481
|
+
</td>
|
482
|
+
<td class="function_name">
|
483
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UCHARv" title="g_cclosure_marshal_VOID__UCHARv ()">g_cclosure_marshal_VOID__UCHARv</a> <span class="c_punctuation">()</span>
|
484
|
+
</td>
|
485
|
+
</tr>
|
486
|
+
<tr>
|
487
|
+
<td class="function_type">
|
488
|
+
<span class="returnvalue">void</span>
|
489
|
+
</td>
|
490
|
+
<td class="function_name">
|
491
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--INTv" title="g_cclosure_marshal_VOID__INTv ()">g_cclosure_marshal_VOID__INTv</a> <span class="c_punctuation">()</span>
|
492
|
+
</td>
|
493
|
+
</tr>
|
494
|
+
<tr>
|
495
|
+
<td class="function_type">
|
496
|
+
<span class="returnvalue">void</span>
|
497
|
+
</td>
|
498
|
+
<td class="function_name">
|
499
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UINTv" title="g_cclosure_marshal_VOID__UINTv ()">g_cclosure_marshal_VOID__UINTv</a> <span class="c_punctuation">()</span>
|
500
|
+
</td>
|
501
|
+
</tr>
|
502
|
+
<tr>
|
503
|
+
<td class="function_type">
|
504
|
+
<span class="returnvalue">void</span>
|
505
|
+
</td>
|
506
|
+
<td class="function_name">
|
507
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--LONGv" title="g_cclosure_marshal_VOID__LONGv ()">g_cclosure_marshal_VOID__LONGv</a> <span class="c_punctuation">()</span>
|
508
|
+
</td>
|
509
|
+
</tr>
|
510
|
+
<tr>
|
511
|
+
<td class="function_type">
|
512
|
+
<span class="returnvalue">void</span>
|
513
|
+
</td>
|
514
|
+
<td class="function_name">
|
515
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--ULONGv" title="g_cclosure_marshal_VOID__ULONGv ()">g_cclosure_marshal_VOID__ULONGv</a> <span class="c_punctuation">()</span>
|
516
|
+
</td>
|
517
|
+
</tr>
|
518
|
+
<tr>
|
519
|
+
<td class="function_type">
|
520
|
+
<span class="returnvalue">void</span>
|
521
|
+
</td>
|
522
|
+
<td class="function_name">
|
523
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--ENUMv" title="g_cclosure_marshal_VOID__ENUMv ()">g_cclosure_marshal_VOID__ENUMv</a> <span class="c_punctuation">()</span>
|
524
|
+
</td>
|
525
|
+
</tr>
|
526
|
+
<tr>
|
527
|
+
<td class="function_type">
|
528
|
+
<span class="returnvalue">void</span>
|
529
|
+
</td>
|
530
|
+
<td class="function_name">
|
531
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--FLAGSv" title="g_cclosure_marshal_VOID__FLAGSv ()">g_cclosure_marshal_VOID__FLAGSv</a> <span class="c_punctuation">()</span>
|
532
|
+
</td>
|
533
|
+
</tr>
|
534
|
+
<tr>
|
535
|
+
<td class="function_type">
|
536
|
+
<span class="returnvalue">void</span>
|
537
|
+
</td>
|
538
|
+
<td class="function_name">
|
539
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--FLOATv" title="g_cclosure_marshal_VOID__FLOATv ()">g_cclosure_marshal_VOID__FLOATv</a> <span class="c_punctuation">()</span>
|
540
|
+
</td>
|
541
|
+
</tr>
|
542
|
+
<tr>
|
543
|
+
<td class="function_type">
|
544
|
+
<span class="returnvalue">void</span>
|
545
|
+
</td>
|
546
|
+
<td class="function_name">
|
547
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--DOUBLEv" title="g_cclosure_marshal_VOID__DOUBLEv ()">g_cclosure_marshal_VOID__DOUBLEv</a> <span class="c_punctuation">()</span>
|
548
|
+
</td>
|
549
|
+
</tr>
|
550
|
+
<tr>
|
551
|
+
<td class="function_type">
|
552
|
+
<span class="returnvalue">void</span>
|
553
|
+
</td>
|
554
|
+
<td class="function_name">
|
555
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--STRINGv" title="g_cclosure_marshal_VOID__STRINGv ()">g_cclosure_marshal_VOID__STRINGv</a> <span class="c_punctuation">()</span>
|
556
|
+
</td>
|
557
|
+
</tr>
|
558
|
+
<tr>
|
559
|
+
<td class="function_type">
|
560
|
+
<span class="returnvalue">void</span>
|
561
|
+
</td>
|
562
|
+
<td class="function_name">
|
563
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--PARAMv" title="g_cclosure_marshal_VOID__PARAMv ()">g_cclosure_marshal_VOID__PARAMv</a> <span class="c_punctuation">()</span>
|
564
|
+
</td>
|
565
|
+
</tr>
|
566
|
+
<tr>
|
567
|
+
<td class="function_type">
|
568
|
+
<span class="returnvalue">void</span>
|
569
|
+
</td>
|
570
|
+
<td class="function_name">
|
571
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--BOXEDv" title="g_cclosure_marshal_VOID__BOXEDv ()">g_cclosure_marshal_VOID__BOXEDv</a> <span class="c_punctuation">()</span>
|
572
|
+
</td>
|
573
|
+
</tr>
|
574
|
+
<tr>
|
575
|
+
<td class="function_type">
|
576
|
+
<span class="returnvalue">void</span>
|
577
|
+
</td>
|
578
|
+
<td class="function_name">
|
579
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--POINTERv" title="g_cclosure_marshal_VOID__POINTERv ()">g_cclosure_marshal_VOID__POINTERv</a> <span class="c_punctuation">()</span>
|
580
|
+
</td>
|
581
|
+
</tr>
|
582
|
+
<tr>
|
583
|
+
<td class="function_type">
|
584
|
+
<span class="returnvalue">void</span>
|
585
|
+
</td>
|
586
|
+
<td class="function_name">
|
587
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--OBJECTv" title="g_cclosure_marshal_VOID__OBJECTv ()">g_cclosure_marshal_VOID__OBJECTv</a> <span class="c_punctuation">()</span>
|
588
|
+
</td>
|
589
|
+
</tr>
|
590
|
+
<tr>
|
591
|
+
<td class="function_type">
|
592
|
+
<span class="returnvalue">void</span>
|
593
|
+
</td>
|
594
|
+
<td class="function_name">
|
595
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--VARIANTv" title="g_cclosure_marshal_VOID__VARIANTv ()">g_cclosure_marshal_VOID__VARIANTv</a> <span class="c_punctuation">()</span>
|
596
|
+
</td>
|
597
|
+
</tr>
|
598
|
+
<tr>
|
599
|
+
<td class="function_type">
|
600
|
+
<span class="returnvalue">void</span>
|
601
|
+
</td>
|
602
|
+
<td class="function_name">
|
603
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-STRING--OBJECT-POINTERv" title="g_cclosure_marshal_STRING__OBJECT_POINTERv ()">g_cclosure_marshal_STRING__OBJECT_POINTERv</a> <span class="c_punctuation">()</span>
|
604
|
+
</td>
|
605
|
+
</tr>
|
606
|
+
<tr>
|
607
|
+
<td class="function_type">
|
608
|
+
<span class="returnvalue">void</span>
|
609
|
+
</td>
|
610
|
+
<td class="function_name">
|
611
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UINT-POINTERv" title="g_cclosure_marshal_VOID__UINT_POINTERv ()">g_cclosure_marshal_VOID__UINT_POINTERv</a> <span class="c_punctuation">()</span>
|
612
|
+
</td>
|
613
|
+
</tr>
|
614
|
+
<tr>
|
615
|
+
<td class="function_type">
|
616
|
+
<span class="returnvalue">void</span>
|
617
|
+
</td>
|
618
|
+
<td class="function_name">
|
619
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOLEAN--FLAGSv" title="g_cclosure_marshal_BOOLEAN__FLAGSv ()">g_cclosure_marshal_BOOLEAN__FLAGSv</a> <span class="c_punctuation">()</span>
|
620
|
+
</td>
|
621
|
+
</tr>
|
622
|
+
<tr>
|
623
|
+
<td class="function_type">
|
624
|
+
<span class="returnvalue">void</span>
|
625
|
+
</td>
|
626
|
+
<td class="function_name">
|
627
|
+
<a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOLEAN--BOXED-BOXEDv" title="g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv ()">g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv</a> <span class="c_punctuation">()</span>
|
628
|
+
</td>
|
629
|
+
</tr>
|
630
|
+
</tbody>
|
631
|
+
</table></div>
|
632
|
+
</div>
|
633
|
+
<div class="refsect1">
|
634
|
+
<a name="gobject-Closures.other"></a><h2>Types and Values</h2>
|
635
|
+
<div class="informaltable"><table width="100%" border="0">
|
636
|
+
<colgroup>
|
637
|
+
<col width="150px" class="name">
|
638
|
+
<col class="description">
|
639
|
+
</colgroup>
|
640
|
+
<tbody>
|
641
|
+
<tr>
|
642
|
+
<td class="datatype_keyword">struct</td>
|
643
|
+
<td class="function_name"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure">GClosure</a></td>
|
644
|
+
</tr>
|
645
|
+
<tr>
|
646
|
+
<td class="datatype_keyword">struct</td>
|
647
|
+
<td class="function_name"><a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure">GCClosure</a></td>
|
648
|
+
</tr>
|
649
|
+
<tr>
|
650
|
+
<td class="define_keyword">#define</td>
|
651
|
+
<td class="function_name"><a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOL--FLAGS" title="g_cclosure_marshal_BOOL__FLAGS">g_cclosure_marshal_BOOL__FLAGS</a></td>
|
652
|
+
</tr>
|
653
|
+
<tr>
|
654
|
+
<td class="define_keyword">#define</td>
|
655
|
+
<td class="function_name"><a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOL--BOXED-BOXED" title="g_cclosure_marshal_BOOL__BOXED_BOXED">g_cclosure_marshal_BOOL__BOXED_BOXED</a></td>
|
656
|
+
</tr>
|
657
|
+
</tbody>
|
658
|
+
</table></div>
|
659
|
+
</div>
|
660
|
+
<div class="refsect1">
|
661
|
+
<a name="gobject-Closures.includes"></a><h2>Includes</h2>
|
662
|
+
<pre class="synopsis">#include <glib-object.h>
|
663
|
+
</pre>
|
664
|
+
</div>
|
665
|
+
<div class="refsect1">
|
666
|
+
<a name="gobject-Closures.description"></a><h2>Description</h2>
|
667
|
+
<p>A <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> represents a callback supplied by the programmer. It
|
668
|
+
will generally comprise a function of some kind and a marshaller
|
669
|
+
used to call it. It is the responsibility of the marshaller to
|
670
|
+
convert the arguments for the invocation from <a href="gobject-Generic-values.html#GValue"><span class="type">GValues</span></a> into
|
671
|
+
a suitable form, perform the callback on the converted arguments,
|
672
|
+
and transform the return value back into a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a>.</p>
|
673
|
+
<p>In the case of C programs, a closure usually just holds a pointer
|
674
|
+
to a function and maybe a data argument, and the marshaller
|
675
|
+
converts between <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> and native C types. The GObject
|
676
|
+
library provides the <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> type for this purpose. Bindings for
|
677
|
+
other languages need marshallers which convert between <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a><!--
|
678
|
+
-->s and suitable representations in the runtime of the language in
|
679
|
+
order to use functions written in that languages as callbacks.</p>
|
680
|
+
<p>Within GObject, closures play an important role in the
|
681
|
+
implementation of signals. When a signal is registered, the
|
682
|
+
<em class="parameter"><code>c_marshaller</code></em>
|
683
|
+
argument to <a class="link" href="gobject-Signals.html#g-signal-new" title="g_signal_new ()"><code class="function">g_signal_new()</code></a> specifies the default C
|
684
|
+
marshaller for any closure which is connected to this
|
685
|
+
signal. GObject provides a number of C marshallers for this
|
686
|
+
purpose, see the g_cclosure_marshal_*() functions. Additional C
|
687
|
+
marshallers can be generated with the <a href="glib-genmarshal.html">glib-genmarshal</a>
|
688
|
+
utility. Closures can be explicitly connected to signals with
|
689
|
+
<a class="link" href="gobject-Signals.html#g-signal-connect-closure" title="g_signal_connect_closure ()"><code class="function">g_signal_connect_closure()</code></a>, but it usually more convenient to let
|
690
|
+
GObject create a closure automatically by using one of the
|
691
|
+
g_signal_connect_*() functions which take a callback function/user
|
692
|
+
data pair.</p>
|
693
|
+
<p>Using closures has a number of important advantages over a simple
|
694
|
+
callback function/data pointer combination:</p>
|
695
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
696
|
+
<li class="listitem"><p>Closures allow the callee to get the types of the callback parameters,
|
697
|
+
which means that language bindings don't have to write individual glue
|
698
|
+
for each callback type.</p></li>
|
699
|
+
<li class="listitem"><p>The reference counting of <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> makes it easy to handle reentrancy
|
700
|
+
right; if a callback is removed while it is being invoked, the closure
|
701
|
+
and its parameters won't be freed until the invocation finishes.</p></li>
|
702
|
+
<li class="listitem"><p>g_closure_invalidate() and invalidation notifiers allow callbacks to be
|
703
|
+
automatically removed when the objects they point to go away.</p></li>
|
704
|
+
</ul></div>
|
705
|
+
</div>
|
706
|
+
<div class="refsect1">
|
707
|
+
<a name="gobject-Closures.functions_details"></a><h2>Functions</h2>
|
708
|
+
<div class="refsect2">
|
709
|
+
<a name="G-CLOSURE-NEEDS-MARSHAL:CAPS"></a><h3>G_CLOSURE_NEEDS_MARSHAL()</h3>
|
710
|
+
<pre class="programlisting">#define G_CLOSURE_NEEDS_MARSHAL(closure) (((GClosure*) (closure))->marshal == NULL)
|
711
|
+
</pre>
|
712
|
+
<p>Check if the closure still needs a marshaller. See <a class="link" href="gobject-Closures.html#g-closure-set-marshal" title="g_closure_set_marshal ()"><code class="function">g_closure_set_marshal()</code></a>.</p>
|
713
|
+
<div class="refsect3">
|
714
|
+
<a name="id-1.4.13.7.2.5"></a><h4>Parameters</h4>
|
715
|
+
<div class="informaltable"><table width="100%" border="0">
|
716
|
+
<colgroup>
|
717
|
+
<col width="150px" class="parameters_name">
|
718
|
+
<col class="parameters_description">
|
719
|
+
<col width="200px" class="parameters_annotations">
|
720
|
+
</colgroup>
|
721
|
+
<tbody><tr>
|
722
|
+
<td class="parameter_name"><p>closure</p></td>
|
723
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
724
|
+
<td class="parameter_annotations"> </td>
|
725
|
+
</tr></tbody>
|
726
|
+
</table></div>
|
727
|
+
</div>
|
728
|
+
<div class="refsect3">
|
729
|
+
<a name="id-1.4.13.7.2.6"></a><h4>Returns</h4>
|
730
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a <a class="link" href="gobject-Closures.html#GClosureMarshal" title="GClosureMarshal ()"><span class="type">GClosureMarshal</span></a> marshaller has not yet been set on
|
731
|
+
<em class="parameter"><code>closure</code></em>
|
732
|
+
.</p>
|
733
|
+
<p></p>
|
734
|
+
</div>
|
735
|
+
</div>
|
736
|
+
<hr>
|
737
|
+
<div class="refsect2">
|
738
|
+
<a name="G-CLOSURE-N-NOTIFIERS:CAPS"></a><h3>G_CLOSURE_N_NOTIFIERS()</h3>
|
739
|
+
<pre class="programlisting">#define G_CLOSURE_N_NOTIFIERS(cl)</pre>
|
740
|
+
<p>Get the total number of notifiers connected with the closure <em class="parameter"><code>cl</code></em>
|
741
|
+
.
|
742
|
+
The count includes the meta marshaller, the finalize and invalidate notifiers
|
743
|
+
and the marshal guards. Note that each guard counts as two notifiers.
|
744
|
+
See <a class="link" href="gobject-Closures.html#g-closure-set-meta-marshal" title="g_closure_set_meta_marshal ()"><code class="function">g_closure_set_meta_marshal()</code></a>, <a class="link" href="gobject-Closures.html#g-closure-add-finalize-notifier" title="g_closure_add_finalize_notifier ()"><code class="function">g_closure_add_finalize_notifier()</code></a>,
|
745
|
+
<a class="link" href="gobject-Closures.html#g-closure-add-invalidate-notifier" title="g_closure_add_invalidate_notifier ()"><code class="function">g_closure_add_invalidate_notifier()</code></a> and <a class="link" href="gobject-Closures.html#g-closure-add-marshal-guards" title="g_closure_add_marshal_guards ()"><code class="function">g_closure_add_marshal_guards()</code></a>.</p>
|
746
|
+
<div class="refsect3">
|
747
|
+
<a name="id-1.4.13.7.3.5"></a><h4>Parameters</h4>
|
748
|
+
<div class="informaltable"><table width="100%" border="0">
|
749
|
+
<colgroup>
|
750
|
+
<col width="150px" class="parameters_name">
|
751
|
+
<col class="parameters_description">
|
752
|
+
<col width="200px" class="parameters_annotations">
|
753
|
+
</colgroup>
|
754
|
+
<tbody><tr>
|
755
|
+
<td class="parameter_name"><p>cl</p></td>
|
756
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
757
|
+
<td class="parameter_annotations"> </td>
|
758
|
+
</tr></tbody>
|
759
|
+
</table></div>
|
760
|
+
</div>
|
761
|
+
<div class="refsect3">
|
762
|
+
<a name="id-1.4.13.7.3.6"></a><h4>Returns</h4>
|
763
|
+
<p> number of notifiers</p>
|
764
|
+
<p></p>
|
765
|
+
</div>
|
766
|
+
</div>
|
767
|
+
<hr>
|
768
|
+
<div class="refsect2">
|
769
|
+
<a name="G-CCLOSURE-SWAP-DATA:CAPS"></a><h3>G_CCLOSURE_SWAP_DATA()</h3>
|
770
|
+
<pre class="programlisting">#define G_CCLOSURE_SWAP_DATA(cclosure) (((GClosure*) (cclosure))->derivative_flag)
|
771
|
+
</pre>
|
772
|
+
<p>Checks whether the user data of the <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> should be passed as the
|
773
|
+
first parameter to the callback. See <a class="link" href="gobject-Closures.html#g-cclosure-new-swap" title="g_cclosure_new_swap ()"><code class="function">g_cclosure_new_swap()</code></a>.</p>
|
774
|
+
<div class="refsect3">
|
775
|
+
<a name="id-1.4.13.7.4.5"></a><h4>Parameters</h4>
|
776
|
+
<div class="informaltable"><table width="100%" border="0">
|
777
|
+
<colgroup>
|
778
|
+
<col width="150px" class="parameters_name">
|
779
|
+
<col class="parameters_description">
|
780
|
+
<col width="200px" class="parameters_annotations">
|
781
|
+
</colgroup>
|
782
|
+
<tbody><tr>
|
783
|
+
<td class="parameter_name"><p>cclosure</p></td>
|
784
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a></p></td>
|
785
|
+
<td class="parameter_annotations"> </td>
|
786
|
+
</tr></tbody>
|
787
|
+
</table></div>
|
788
|
+
</div>
|
789
|
+
<div class="refsect3">
|
790
|
+
<a name="id-1.4.13.7.4.6"></a><h4>Returns</h4>
|
791
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if data has to be swapped.</p>
|
792
|
+
<p></p>
|
793
|
+
</div>
|
794
|
+
</div>
|
795
|
+
<hr>
|
796
|
+
<div class="refsect2">
|
797
|
+
<a name="G-CALLBACK:CAPS"></a><h3>G_CALLBACK()</h3>
|
798
|
+
<pre class="programlisting">#define G_CALLBACK(f) ((GCallback) (f))
|
799
|
+
</pre>
|
800
|
+
<p>Cast a function pointer to a <a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a>.</p>
|
801
|
+
<div class="refsect3">
|
802
|
+
<a name="id-1.4.13.7.5.5"></a><h4>Parameters</h4>
|
803
|
+
<div class="informaltable"><table width="100%" border="0">
|
804
|
+
<colgroup>
|
805
|
+
<col width="150px" class="parameters_name">
|
806
|
+
<col class="parameters_description">
|
807
|
+
<col width="200px" class="parameters_annotations">
|
808
|
+
</colgroup>
|
809
|
+
<tbody><tr>
|
810
|
+
<td class="parameter_name"><p>f</p></td>
|
811
|
+
<td class="parameter_description"><p>a function pointer.</p></td>
|
812
|
+
<td class="parameter_annotations"> </td>
|
813
|
+
</tr></tbody>
|
814
|
+
</table></div>
|
815
|
+
</div>
|
816
|
+
</div>
|
817
|
+
<hr>
|
818
|
+
<div class="refsect2">
|
819
|
+
<a name="GCallback"></a><h3>GCallback ()</h3>
|
820
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
821
|
+
<span class="c_punctuation">(</span>*GCallback<span class="c_punctuation">)</span> (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
822
|
+
<p>The type used for callback functions in structure definitions and function
|
823
|
+
signatures. This doesn't mean that all callback functions must take no
|
824
|
+
parameters and return void. The required signature of a callback function
|
825
|
+
is determined by the context in which is used (e.g. the signal to which it
|
826
|
+
is connected). Use <a class="link" href="gobject-Closures.html#G-CALLBACK:CAPS" title="G_CALLBACK()"><code class="function">G_CALLBACK()</code></a> to cast the callback function to a <a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a>.</p>
|
827
|
+
</div>
|
828
|
+
<hr>
|
829
|
+
<div class="refsect2">
|
830
|
+
<a name="G-TYPE-CLOSURE:CAPS"></a><h3>G_TYPE_CLOSURE</h3>
|
831
|
+
<pre class="programlisting">#define G_TYPE_CLOSURE (g_closure_get_type ())
|
832
|
+
</pre>
|
833
|
+
<p>The <a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> for <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a>.</p>
|
834
|
+
</div>
|
835
|
+
<hr>
|
836
|
+
<div class="refsect2">
|
837
|
+
<a name="GClosureMarshal"></a><h3>GClosureMarshal ()</h3>
|
838
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
839
|
+
<span class="c_punctuation">(</span>*GClosureMarshal<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
840
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
841
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
842
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
843
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
844
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
845
|
+
<p>The type used for marshaller functions.</p>
|
846
|
+
<div class="refsect3">
|
847
|
+
<a name="id-1.4.13.7.8.5"></a><h4>Parameters</h4>
|
848
|
+
<div class="informaltable"><table width="100%" border="0">
|
849
|
+
<colgroup>
|
850
|
+
<col width="150px" class="parameters_name">
|
851
|
+
<col class="parameters_description">
|
852
|
+
<col width="200px" class="parameters_annotations">
|
853
|
+
</colgroup>
|
854
|
+
<tbody>
|
855
|
+
<tr>
|
856
|
+
<td class="parameter_name"><p>closure</p></td>
|
857
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
858
|
+
<td class="parameter_annotations"> </td>
|
859
|
+
</tr>
|
860
|
+
<tr>
|
861
|
+
<td class="parameter_name"><p>return_value</p></td>
|
862
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> to store the return
|
863
|
+
value. May be <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the callback of <em class="parameter"><code>closure</code></em>
|
864
|
+
doesn't return a
|
865
|
+
value. </p></td>
|
866
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
867
|
+
</tr>
|
868
|
+
<tr>
|
869
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
870
|
+
<td class="parameter_description"><p>the length of the <em class="parameter"><code>param_values</code></em>
|
871
|
+
array</p></td>
|
872
|
+
<td class="parameter_annotations"> </td>
|
873
|
+
</tr>
|
874
|
+
<tr>
|
875
|
+
<td class="parameter_name"><p>param_values</p></td>
|
876
|
+
<td class="parameter_description"><p> an array of
|
877
|
+
<a href="gobject-Generic-values.html#GValue"><span class="type">GValues</span></a> holding the arguments on which to invoke the
|
878
|
+
callback of <em class="parameter"><code>closure</code></em>
|
879
|
+
. </p></td>
|
880
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_param_values]</span></td>
|
881
|
+
</tr>
|
882
|
+
<tr>
|
883
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
884
|
+
<td class="parameter_description"><p> the invocation hint given as the
|
885
|
+
last argument to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a>. </p></td>
|
886
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
887
|
+
</tr>
|
888
|
+
<tr>
|
889
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
890
|
+
<td class="parameter_description"><p> additional data specified when
|
891
|
+
registering the marshaller, see <a class="link" href="gobject-Closures.html#g-closure-set-marshal" title="g_closure_set_marshal ()"><code class="function">g_closure_set_marshal()</code></a> and
|
892
|
+
<a class="link" href="gobject-Closures.html#g-closure-set-meta-marshal" title="g_closure_set_meta_marshal ()"><code class="function">g_closure_set_meta_marshal()</code></a>. </p></td>
|
893
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
894
|
+
</tr>
|
895
|
+
</tbody>
|
896
|
+
</table></div>
|
897
|
+
</div>
|
898
|
+
</div>
|
899
|
+
<hr>
|
900
|
+
<div class="refsect2">
|
901
|
+
<a name="GVaClosureMarshal"></a><h3>GVaClosureMarshal ()</h3>
|
902
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
903
|
+
<span class="c_punctuation">(</span>*GVaClosureMarshal<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
904
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
905
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
906
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
907
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
908
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
909
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
910
|
+
</div>
|
911
|
+
<hr>
|
912
|
+
<div class="refsect2">
|
913
|
+
<a name="GClosureNotify"></a><h3>GClosureNotify ()</h3>
|
914
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
915
|
+
<span class="c_punctuation">(</span>*GClosureNotify<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
916
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>);</pre>
|
917
|
+
<p>The type used for the various notification callbacks which can be registered
|
918
|
+
on closures.</p>
|
919
|
+
<div class="refsect3">
|
920
|
+
<a name="id-1.4.13.7.10.5"></a><h4>Parameters</h4>
|
921
|
+
<div class="informaltable"><table width="100%" border="0">
|
922
|
+
<colgroup>
|
923
|
+
<col width="150px" class="parameters_name">
|
924
|
+
<col class="parameters_description">
|
925
|
+
<col width="200px" class="parameters_annotations">
|
926
|
+
</colgroup>
|
927
|
+
<tbody>
|
928
|
+
<tr>
|
929
|
+
<td class="parameter_name"><p>data</p></td>
|
930
|
+
<td class="parameter_description"><p>data specified when registering the notification callback</p></td>
|
931
|
+
<td class="parameter_annotations"> </td>
|
932
|
+
</tr>
|
933
|
+
<tr>
|
934
|
+
<td class="parameter_name"><p>closure</p></td>
|
935
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> on which the notification is emitted</p></td>
|
936
|
+
<td class="parameter_annotations"> </td>
|
937
|
+
</tr>
|
938
|
+
</tbody>
|
939
|
+
</table></div>
|
940
|
+
</div>
|
941
|
+
</div>
|
942
|
+
<hr>
|
943
|
+
<div class="refsect2">
|
944
|
+
<a name="g-cclosure-new"></a><h3>g_cclosure_new ()</h3>
|
945
|
+
<pre class="programlisting"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
946
|
+
g_cclosure_new (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a> callback_func</code></em>,
|
947
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
|
948
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> destroy_data</code></em>);</pre>
|
949
|
+
<p>Creates a new closure which invokes <em class="parameter"><code>callback_func</code></em>
|
950
|
+
with <em class="parameter"><code>user_data</code></em>
|
951
|
+
as
|
952
|
+
the last parameter.</p>
|
953
|
+
<div class="refsect3">
|
954
|
+
<a name="id-1.4.13.7.11.5"></a><h4>Parameters</h4>
|
955
|
+
<div class="informaltable"><table width="100%" border="0">
|
956
|
+
<colgroup>
|
957
|
+
<col width="150px" class="parameters_name">
|
958
|
+
<col class="parameters_description">
|
959
|
+
<col width="200px" class="parameters_annotations">
|
960
|
+
</colgroup>
|
961
|
+
<tbody>
|
962
|
+
<tr>
|
963
|
+
<td class="parameter_name"><p>callback_func</p></td>
|
964
|
+
<td class="parameter_description"><p>the function to invoke</p></td>
|
965
|
+
<td class="parameter_annotations"> </td>
|
966
|
+
</tr>
|
967
|
+
<tr>
|
968
|
+
<td class="parameter_name"><p>user_data</p></td>
|
969
|
+
<td class="parameter_description"><p>user data to pass to <em class="parameter"><code>callback_func</code></em>
|
970
|
+
</p></td>
|
971
|
+
<td class="parameter_annotations"> </td>
|
972
|
+
</tr>
|
973
|
+
<tr>
|
974
|
+
<td class="parameter_name"><p>destroy_data</p></td>
|
975
|
+
<td class="parameter_description"><p>destroy notify to be called when <em class="parameter"><code>user_data</code></em>
|
976
|
+
is no longer used</p></td>
|
977
|
+
<td class="parameter_annotations"> </td>
|
978
|
+
</tr>
|
979
|
+
</tbody>
|
980
|
+
</table></div>
|
981
|
+
</div>
|
982
|
+
<div class="refsect3">
|
983
|
+
<a name="id-1.4.13.7.11.6"></a><h4>Returns</h4>
|
984
|
+
<p> a new <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a></p>
|
985
|
+
<p></p>
|
986
|
+
</div>
|
987
|
+
</div>
|
988
|
+
<hr>
|
989
|
+
<div class="refsect2">
|
990
|
+
<a name="g-cclosure-new-swap"></a><h3>g_cclosure_new_swap ()</h3>
|
991
|
+
<pre class="programlisting"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
992
|
+
g_cclosure_new_swap (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a> callback_func</code></em>,
|
993
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
|
994
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> destroy_data</code></em>);</pre>
|
995
|
+
<p>Creates a new closure which invokes <em class="parameter"><code>callback_func</code></em>
|
996
|
+
with <em class="parameter"><code>user_data</code></em>
|
997
|
+
as
|
998
|
+
the first parameter.</p>
|
999
|
+
<div class="refsect3">
|
1000
|
+
<a name="id-1.4.13.7.12.5"></a><h4>Parameters</h4>
|
1001
|
+
<div class="informaltable"><table width="100%" border="0">
|
1002
|
+
<colgroup>
|
1003
|
+
<col width="150px" class="parameters_name">
|
1004
|
+
<col class="parameters_description">
|
1005
|
+
<col width="200px" class="parameters_annotations">
|
1006
|
+
</colgroup>
|
1007
|
+
<tbody>
|
1008
|
+
<tr>
|
1009
|
+
<td class="parameter_name"><p>callback_func</p></td>
|
1010
|
+
<td class="parameter_description"><p>the function to invoke</p></td>
|
1011
|
+
<td class="parameter_annotations"> </td>
|
1012
|
+
</tr>
|
1013
|
+
<tr>
|
1014
|
+
<td class="parameter_name"><p>user_data</p></td>
|
1015
|
+
<td class="parameter_description"><p>user data to pass to <em class="parameter"><code>callback_func</code></em>
|
1016
|
+
</p></td>
|
1017
|
+
<td class="parameter_annotations"> </td>
|
1018
|
+
</tr>
|
1019
|
+
<tr>
|
1020
|
+
<td class="parameter_name"><p>destroy_data</p></td>
|
1021
|
+
<td class="parameter_description"><p>destroy notify to be called when <em class="parameter"><code>user_data</code></em>
|
1022
|
+
is no longer used</p></td>
|
1023
|
+
<td class="parameter_annotations"> </td>
|
1024
|
+
</tr>
|
1025
|
+
</tbody>
|
1026
|
+
</table></div>
|
1027
|
+
</div>
|
1028
|
+
<div class="refsect3">
|
1029
|
+
<a name="id-1.4.13.7.12.6"></a><h4>Returns</h4>
|
1030
|
+
<p> a new <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a>. </p>
|
1031
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1032
|
+
</div>
|
1033
|
+
</div>
|
1034
|
+
<hr>
|
1035
|
+
<div class="refsect2">
|
1036
|
+
<a name="g-cclosure-new-object"></a><h3>g_cclosure_new_object ()</h3>
|
1037
|
+
<pre class="programlisting"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
1038
|
+
g_cclosure_new_object (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a> callback_func</code></em>,
|
1039
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
1040
|
+
<p>A variant of <a class="link" href="gobject-Closures.html#g-cclosure-new" title="g_cclosure_new ()"><code class="function">g_cclosure_new()</code></a> which uses <em class="parameter"><code>object</code></em>
|
1041
|
+
as <em class="parameter"><code>user_data</code></em>
|
1042
|
+
and
|
1043
|
+
calls <a class="link" href="gobject-The-Base-Object-Type.html#g-object-watch-closure" title="g_object_watch_closure ()"><code class="function">g_object_watch_closure()</code></a> on <em class="parameter"><code>object</code></em>
|
1044
|
+
and the created
|
1045
|
+
closure. This function is useful when you have a callback closely
|
1046
|
+
associated with a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>, and want the callback to no longer run
|
1047
|
+
after the object is is freed.</p>
|
1048
|
+
<div class="refsect3">
|
1049
|
+
<a name="id-1.4.13.7.13.5"></a><h4>Parameters</h4>
|
1050
|
+
<div class="informaltable"><table width="100%" border="0">
|
1051
|
+
<colgroup>
|
1052
|
+
<col width="150px" class="parameters_name">
|
1053
|
+
<col class="parameters_description">
|
1054
|
+
<col width="200px" class="parameters_annotations">
|
1055
|
+
</colgroup>
|
1056
|
+
<tbody>
|
1057
|
+
<tr>
|
1058
|
+
<td class="parameter_name"><p>callback_func</p></td>
|
1059
|
+
<td class="parameter_description"><p>the function to invoke</p></td>
|
1060
|
+
<td class="parameter_annotations"> </td>
|
1061
|
+
</tr>
|
1062
|
+
<tr>
|
1063
|
+
<td class="parameter_name"><p>object</p></td>
|
1064
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> pointer to pass to <em class="parameter"><code>callback_func</code></em>
|
1065
|
+
</p></td>
|
1066
|
+
<td class="parameter_annotations"> </td>
|
1067
|
+
</tr>
|
1068
|
+
</tbody>
|
1069
|
+
</table></div>
|
1070
|
+
</div>
|
1071
|
+
<div class="refsect3">
|
1072
|
+
<a name="id-1.4.13.7.13.6"></a><h4>Returns</h4>
|
1073
|
+
<p> a new <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a></p>
|
1074
|
+
<p></p>
|
1075
|
+
</div>
|
1076
|
+
</div>
|
1077
|
+
<hr>
|
1078
|
+
<div class="refsect2">
|
1079
|
+
<a name="g-cclosure-new-object-swap"></a><h3>g_cclosure_new_object_swap ()</h3>
|
1080
|
+
<pre class="programlisting"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
1081
|
+
g_cclosure_new_object_swap (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a> callback_func</code></em>,
|
1082
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
1083
|
+
<p>A variant of <a class="link" href="gobject-Closures.html#g-cclosure-new-swap" title="g_cclosure_new_swap ()"><code class="function">g_cclosure_new_swap()</code></a> which uses <em class="parameter"><code>object</code></em>
|
1084
|
+
as <em class="parameter"><code>user_data</code></em>
|
1085
|
+
|
1086
|
+
and calls <a class="link" href="gobject-The-Base-Object-Type.html#g-object-watch-closure" title="g_object_watch_closure ()"><code class="function">g_object_watch_closure()</code></a> on <em class="parameter"><code>object</code></em>
|
1087
|
+
and the created
|
1088
|
+
closure. This function is useful when you have a callback closely
|
1089
|
+
associated with a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>, and want the callback to no longer run
|
1090
|
+
after the object is is freed.</p>
|
1091
|
+
<div class="refsect3">
|
1092
|
+
<a name="id-1.4.13.7.14.5"></a><h4>Parameters</h4>
|
1093
|
+
<div class="informaltable"><table width="100%" border="0">
|
1094
|
+
<colgroup>
|
1095
|
+
<col width="150px" class="parameters_name">
|
1096
|
+
<col class="parameters_description">
|
1097
|
+
<col width="200px" class="parameters_annotations">
|
1098
|
+
</colgroup>
|
1099
|
+
<tbody>
|
1100
|
+
<tr>
|
1101
|
+
<td class="parameter_name"><p>callback_func</p></td>
|
1102
|
+
<td class="parameter_description"><p>the function to invoke</p></td>
|
1103
|
+
<td class="parameter_annotations"> </td>
|
1104
|
+
</tr>
|
1105
|
+
<tr>
|
1106
|
+
<td class="parameter_name"><p>object</p></td>
|
1107
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> pointer to pass to <em class="parameter"><code>callback_func</code></em>
|
1108
|
+
</p></td>
|
1109
|
+
<td class="parameter_annotations"> </td>
|
1110
|
+
</tr>
|
1111
|
+
</tbody>
|
1112
|
+
</table></div>
|
1113
|
+
</div>
|
1114
|
+
<div class="refsect3">
|
1115
|
+
<a name="id-1.4.13.7.14.6"></a><h4>Returns</h4>
|
1116
|
+
<p> a new <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a></p>
|
1117
|
+
<p></p>
|
1118
|
+
</div>
|
1119
|
+
</div>
|
1120
|
+
<hr>
|
1121
|
+
<div class="refsect2">
|
1122
|
+
<a name="g-cclosure-marshal-generic"></a><h3>g_cclosure_marshal_generic ()</h3>
|
1123
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1124
|
+
g_cclosure_marshal_generic (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1125
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_gvalue</code></em>,
|
1126
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
1127
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
1128
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
1129
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
1130
|
+
<p>A generic marshaller function implemented via
|
1131
|
+
<a class="ulink" href="http://sourceware.org/libffi/" target="_top">libffi</a>.</p>
|
1132
|
+
<p>Normally this function is not passed explicitly to <a class="link" href="gobject-Signals.html#g-signal-new" title="g_signal_new ()"><code class="function">g_signal_new()</code></a>,
|
1133
|
+
but used automatically by GLib when specifying a <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> marshaller.</p>
|
1134
|
+
<div class="refsect3">
|
1135
|
+
<a name="id-1.4.13.7.15.6"></a><h4>Parameters</h4>
|
1136
|
+
<div class="informaltable"><table width="100%" border="0">
|
1137
|
+
<colgroup>
|
1138
|
+
<col width="150px" class="parameters_name">
|
1139
|
+
<col class="parameters_description">
|
1140
|
+
<col width="200px" class="parameters_annotations">
|
1141
|
+
</colgroup>
|
1142
|
+
<tbody>
|
1143
|
+
<tr>
|
1144
|
+
<td class="parameter_name"><p>closure</p></td>
|
1145
|
+
<td class="parameter_description"><p>A <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a>.</p></td>
|
1146
|
+
<td class="parameter_annotations"> </td>
|
1147
|
+
</tr>
|
1148
|
+
<tr>
|
1149
|
+
<td class="parameter_name"><p>return_gvalue</p></td>
|
1150
|
+
<td class="parameter_description"><p>A <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> to store the return value. May be <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1151
|
+
if the callback of closure doesn't return a value.</p></td>
|
1152
|
+
<td class="parameter_annotations"> </td>
|
1153
|
+
</tr>
|
1154
|
+
<tr>
|
1155
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
1156
|
+
<td class="parameter_description"><p>The length of the <em class="parameter"><code>param_values</code></em>
|
1157
|
+
array.</p></td>
|
1158
|
+
<td class="parameter_annotations"> </td>
|
1159
|
+
</tr>
|
1160
|
+
<tr>
|
1161
|
+
<td class="parameter_name"><p>param_values</p></td>
|
1162
|
+
<td class="parameter_description"><p>An array of <a href="gobject-Generic-values.html#GValue"><span class="type">GValues</span></a> holding the arguments
|
1163
|
+
on which to invoke the callback of closure.</p></td>
|
1164
|
+
<td class="parameter_annotations"> </td>
|
1165
|
+
</tr>
|
1166
|
+
<tr>
|
1167
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
1168
|
+
<td class="parameter_description"><p>The invocation hint given as the last argument to
|
1169
|
+
<a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a>.</p></td>
|
1170
|
+
<td class="parameter_annotations"> </td>
|
1171
|
+
</tr>
|
1172
|
+
<tr>
|
1173
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
1174
|
+
<td class="parameter_description"><p>Additional data specified when registering the
|
1175
|
+
marshaller, see <a class="link" href="gobject-Closures.html#g-closure-set-marshal" title="g_closure_set_marshal ()"><code class="function">g_closure_set_marshal()</code></a> and
|
1176
|
+
<a class="link" href="gobject-Closures.html#g-closure-set-meta-marshal" title="g_closure_set_meta_marshal ()"><code class="function">g_closure_set_meta_marshal()</code></a></p></td>
|
1177
|
+
<td class="parameter_annotations"> </td>
|
1178
|
+
</tr>
|
1179
|
+
</tbody>
|
1180
|
+
</table></div>
|
1181
|
+
</div>
|
1182
|
+
<p class="since">Since 2.30</p>
|
1183
|
+
</div>
|
1184
|
+
<hr>
|
1185
|
+
<div class="refsect2">
|
1186
|
+
<a name="g-closure-new-object"></a><h3>g_closure_new_object ()</h3>
|
1187
|
+
<pre class="programlisting"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
1188
|
+
g_closure_new_object (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> sizeof_closure</code></em>,
|
1189
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
1190
|
+
<p>A variant of <a class="link" href="gobject-Closures.html#g-closure-new-simple" title="g_closure_new_simple ()"><code class="function">g_closure_new_simple()</code></a> which stores <em class="parameter"><code>object</code></em>
|
1191
|
+
in the
|
1192
|
+
<em class="parameter"><code>data</code></em>
|
1193
|
+
field of the closure and calls <a class="link" href="gobject-The-Base-Object-Type.html#g-object-watch-closure" title="g_object_watch_closure ()"><code class="function">g_object_watch_closure()</code></a> on
|
1194
|
+
<em class="parameter"><code>object</code></em>
|
1195
|
+
and the created closure. This function is mainly useful
|
1196
|
+
when implementing new types of closures.</p>
|
1197
|
+
<div class="refsect3">
|
1198
|
+
<a name="id-1.4.13.7.16.5"></a><h4>Parameters</h4>
|
1199
|
+
<div class="informaltable"><table width="100%" border="0">
|
1200
|
+
<colgroup>
|
1201
|
+
<col width="150px" class="parameters_name">
|
1202
|
+
<col class="parameters_description">
|
1203
|
+
<col width="200px" class="parameters_annotations">
|
1204
|
+
</colgroup>
|
1205
|
+
<tbody>
|
1206
|
+
<tr>
|
1207
|
+
<td class="parameter_name"><p>sizeof_closure</p></td>
|
1208
|
+
<td class="parameter_description"><p>the size of the structure to allocate, must be at least
|
1209
|
+
<code class="literal">sizeof (GClosure)</code></p></td>
|
1210
|
+
<td class="parameter_annotations"> </td>
|
1211
|
+
</tr>
|
1212
|
+
<tr>
|
1213
|
+
<td class="parameter_name"><p>object</p></td>
|
1214
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> pointer to store in the <em class="parameter"><code>data</code></em>
|
1215
|
+
field of the newly
|
1216
|
+
allocated <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1217
|
+
<td class="parameter_annotations"> </td>
|
1218
|
+
</tr>
|
1219
|
+
</tbody>
|
1220
|
+
</table></div>
|
1221
|
+
</div>
|
1222
|
+
<div class="refsect3">
|
1223
|
+
<a name="id-1.4.13.7.16.6"></a><h4>Returns</h4>
|
1224
|
+
<p> a newly allocated <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a>. </p>
|
1225
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1226
|
+
</div>
|
1227
|
+
</div>
|
1228
|
+
<hr>
|
1229
|
+
<div class="refsect2">
|
1230
|
+
<a name="g-closure-ref"></a><h3>g_closure_ref ()</h3>
|
1231
|
+
<pre class="programlisting"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
1232
|
+
g_closure_ref (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>);</pre>
|
1233
|
+
<p>Increments the reference count on a closure to force it staying
|
1234
|
+
alive while the caller holds a pointer to it.</p>
|
1235
|
+
<div class="refsect3">
|
1236
|
+
<a name="id-1.4.13.7.17.5"></a><h4>Parameters</h4>
|
1237
|
+
<div class="informaltable"><table width="100%" border="0">
|
1238
|
+
<colgroup>
|
1239
|
+
<col width="150px" class="parameters_name">
|
1240
|
+
<col class="parameters_description">
|
1241
|
+
<col width="200px" class="parameters_annotations">
|
1242
|
+
</colgroup>
|
1243
|
+
<tbody><tr>
|
1244
|
+
<td class="parameter_name"><p>closure</p></td>
|
1245
|
+
<td class="parameter_description"><p><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to increment the reference count on</p></td>
|
1246
|
+
<td class="parameter_annotations"> </td>
|
1247
|
+
</tr></tbody>
|
1248
|
+
</table></div>
|
1249
|
+
</div>
|
1250
|
+
<div class="refsect3">
|
1251
|
+
<a name="id-1.4.13.7.17.6"></a><h4>Returns</h4>
|
1252
|
+
<p> The <em class="parameter"><code>closure</code></em>
|
1253
|
+
passed in, for convenience. </p>
|
1254
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1255
|
+
</div>
|
1256
|
+
</div>
|
1257
|
+
<hr>
|
1258
|
+
<div class="refsect2">
|
1259
|
+
<a name="g-closure-sink"></a><h3>g_closure_sink ()</h3>
|
1260
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1261
|
+
g_closure_sink (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>);</pre>
|
1262
|
+
<p>Takes over the initial ownership of a closure. Each closure is
|
1263
|
+
initially created in a "floating" state, which means that the initial
|
1264
|
+
reference count is not owned by any caller. <a class="link" href="gobject-Closures.html#g-closure-sink" title="g_closure_sink ()"><code class="function">g_closure_sink()</code></a> checks
|
1265
|
+
to see if the object is still floating, and if so, unsets the
|
1266
|
+
floating state and decreases the reference count. If the closure
|
1267
|
+
is not floating, <a class="link" href="gobject-Closures.html#g-closure-sink" title="g_closure_sink ()"><code class="function">g_closure_sink()</code></a> does nothing. The reason for the
|
1268
|
+
existence of the floating state is to prevent cumbersome code
|
1269
|
+
sequences like:</p>
|
1270
|
+
<div class="informalexample">
|
1271
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1272
|
+
<tbody>
|
1273
|
+
<tr>
|
1274
|
+
<td class="listing_lines" align="right"><pre>1
|
1275
|
+
2
|
1276
|
+
3</pre></td>
|
1277
|
+
<td class="listing_code"><pre class="programlisting"><span class="normal">closure </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="gobject-Closures.html#g-cclosure-new">g_cclosure_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cb_func</span><span class="symbol">,</span><span class="normal"> cb_data</span><span class="symbol">);</span>
|
1278
|
+
<span class="function"><a href="gobject-Closures.html#g-source-set-closure">g_source_set_closure</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">source</span><span class="symbol">,</span><span class="normal"> closure</span><span class="symbol">);</span>
|
1279
|
+
<span class="function"><a href="gobject-Closures.html#g-closure-unref">g_closure_unref</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">closure</span><span class="symbol">);</span><span class="normal"> </span><span class="comment">// GObject doesn't really need this</span></pre></td>
|
1280
|
+
</tr>
|
1281
|
+
</tbody>
|
1282
|
+
</table>
|
1283
|
+
</div>
|
1284
|
+
|
1285
|
+
<p>
|
1286
|
+
Because <a class="link" href="gobject-Closures.html#g-source-set-closure" title="g_source_set_closure ()"><code class="function">g_source_set_closure()</code></a> (and similar functions) take ownership of the
|
1287
|
+
initial reference count, if it is unowned, we instead can write:</p>
|
1288
|
+
<div class="informalexample">
|
1289
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1290
|
+
<tbody>
|
1291
|
+
<tr>
|
1292
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
1293
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="gobject-Closures.html#g-source-set-closure">g_source_set_closure</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">source</span><span class="symbol">,</span><span class="normal"> </span><span class="function"><a href="gobject-Closures.html#g-cclosure-new">g_cclosure_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cb_func</span><span class="symbol">,</span><span class="normal"> cb_data</span><span class="symbol">));</span></pre></td>
|
1294
|
+
</tr>
|
1295
|
+
</tbody>
|
1296
|
+
</table>
|
1297
|
+
</div>
|
1298
|
+
|
1299
|
+
<p></p>
|
1300
|
+
<p>Generally, this function is used together with <a class="link" href="gobject-Closures.html#g-closure-ref" title="g_closure_ref ()"><code class="function">g_closure_ref()</code></a>. Ane example
|
1301
|
+
of storing a closure for later notification looks like:</p>
|
1302
|
+
<div class="informalexample">
|
1303
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1304
|
+
<tbody>
|
1305
|
+
<tr>
|
1306
|
+
<td class="listing_lines" align="right"><pre>1
|
1307
|
+
2
|
1308
|
+
3
|
1309
|
+
4
|
1310
|
+
5
|
1311
|
+
6
|
1312
|
+
7
|
1313
|
+
8
|
1314
|
+
9
|
1315
|
+
10
|
1316
|
+
11
|
1317
|
+
12
|
1318
|
+
13</pre></td>
|
1319
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> </span><span class="usertype">GClosure</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">notify_closure </span><span class="symbol">=</span><span class="normal"> <a href="../glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">;</span>
|
1320
|
+
<span class="type">void</span>
|
1321
|
+
<span class="function">foo_notify_set_closure</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GClosure</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">closure</span><span class="symbol">)</span>
|
1322
|
+
<span class="cbracket">{</span>
|
1323
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">notify_closure</span><span class="symbol">)</span>
|
1324
|
+
<span class="normal"> </span><span class="function"><a href="gobject-Closures.html#g-closure-unref">g_closure_unref</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">notify_closure</span><span class="symbol">);</span>
|
1325
|
+
<span class="normal"> notify_closure </span><span class="symbol">=</span><span class="normal"> closure</span><span class="symbol">;</span>
|
1326
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">notify_closure</span><span class="symbol">)</span>
|
1327
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
1328
|
+
<span class="normal"> </span><span class="function"><a href="gobject-Closures.html#g-closure-ref">g_closure_ref</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">notify_closure</span><span class="symbol">);</span>
|
1329
|
+
<span class="normal"> </span><span class="function"><a href="gobject-Closures.html#g-closure-sink">g_closure_sink</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">notify_closure</span><span class="symbol">);</span>
|
1330
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
1331
|
+
<span class="cbracket">}</span></pre></td>
|
1332
|
+
</tr>
|
1333
|
+
</tbody>
|
1334
|
+
</table>
|
1335
|
+
</div>
|
1336
|
+
|
1337
|
+
<p></p>
|
1338
|
+
<p>Because <a class="link" href="gobject-Closures.html#g-closure-sink" title="g_closure_sink ()"><code class="function">g_closure_sink()</code></a> may decrement the reference count of a closure
|
1339
|
+
(if it hasn't been called on <em class="parameter"><code>closure</code></em>
|
1340
|
+
yet) just like <a class="link" href="gobject-Closures.html#g-closure-unref" title="g_closure_unref ()"><code class="function">g_closure_unref()</code></a>,
|
1341
|
+
<a class="link" href="gobject-Closures.html#g-closure-ref" title="g_closure_ref ()"><code class="function">g_closure_ref()</code></a> should be called prior to this function.</p>
|
1342
|
+
<div class="refsect3">
|
1343
|
+
<a name="id-1.4.13.7.18.13"></a><h4>Parameters</h4>
|
1344
|
+
<div class="informaltable"><table width="100%" border="0">
|
1345
|
+
<colgroup>
|
1346
|
+
<col width="150px" class="parameters_name">
|
1347
|
+
<col class="parameters_description">
|
1348
|
+
<col width="200px" class="parameters_annotations">
|
1349
|
+
</colgroup>
|
1350
|
+
<tbody><tr>
|
1351
|
+
<td class="parameter_name"><p>closure</p></td>
|
1352
|
+
<td class="parameter_description"><p><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to decrement the initial reference count on, if it's
|
1353
|
+
still being held</p></td>
|
1354
|
+
<td class="parameter_annotations"> </td>
|
1355
|
+
</tr></tbody>
|
1356
|
+
</table></div>
|
1357
|
+
</div>
|
1358
|
+
</div>
|
1359
|
+
<hr>
|
1360
|
+
<div class="refsect2">
|
1361
|
+
<a name="g-closure-unref"></a><h3>g_closure_unref ()</h3>
|
1362
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1363
|
+
g_closure_unref (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>);</pre>
|
1364
|
+
<p>Decrements the reference count of a closure after it was previously
|
1365
|
+
incremented by the same caller. If no other callers are using the
|
1366
|
+
closure, then the closure will be destroyed and freed.</p>
|
1367
|
+
<div class="refsect3">
|
1368
|
+
<a name="id-1.4.13.7.19.5"></a><h4>Parameters</h4>
|
1369
|
+
<div class="informaltable"><table width="100%" border="0">
|
1370
|
+
<colgroup>
|
1371
|
+
<col width="150px" class="parameters_name">
|
1372
|
+
<col class="parameters_description">
|
1373
|
+
<col width="200px" class="parameters_annotations">
|
1374
|
+
</colgroup>
|
1375
|
+
<tbody><tr>
|
1376
|
+
<td class="parameter_name"><p>closure</p></td>
|
1377
|
+
<td class="parameter_description"><p><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to decrement the reference count on</p></td>
|
1378
|
+
<td class="parameter_annotations"> </td>
|
1379
|
+
</tr></tbody>
|
1380
|
+
</table></div>
|
1381
|
+
</div>
|
1382
|
+
</div>
|
1383
|
+
<hr>
|
1384
|
+
<div class="refsect2">
|
1385
|
+
<a name="g-closure-invoke"></a><h3>g_closure_invoke ()</h3>
|
1386
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1387
|
+
g_closure_invoke (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1388
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
1389
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
1390
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
1391
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>);</pre>
|
1392
|
+
<p>Invokes the closure, i.e. executes the callback represented by the <em class="parameter"><code>closure</code></em>
|
1393
|
+
.</p>
|
1394
|
+
<div class="refsect3">
|
1395
|
+
<a name="id-1.4.13.7.20.5"></a><h4>Parameters</h4>
|
1396
|
+
<div class="informaltable"><table width="100%" border="0">
|
1397
|
+
<colgroup>
|
1398
|
+
<col width="150px" class="parameters_name">
|
1399
|
+
<col class="parameters_description">
|
1400
|
+
<col width="200px" class="parameters_annotations">
|
1401
|
+
</colgroup>
|
1402
|
+
<tbody>
|
1403
|
+
<tr>
|
1404
|
+
<td class="parameter_name"><p>closure</p></td>
|
1405
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1406
|
+
<td class="parameter_annotations"> </td>
|
1407
|
+
</tr>
|
1408
|
+
<tr>
|
1409
|
+
<td class="parameter_name"><p>return_value</p></td>
|
1410
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> to store the return
|
1411
|
+
value. May be <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the callback of <em class="parameter"><code>closure</code></em>
|
1412
|
+
doesn't return a value. </p></td>
|
1413
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1414
|
+
</tr>
|
1415
|
+
<tr>
|
1416
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
1417
|
+
<td class="parameter_description"><p>the length of the <em class="parameter"><code>param_values</code></em>
|
1418
|
+
array</p></td>
|
1419
|
+
<td class="parameter_annotations"> </td>
|
1420
|
+
</tr>
|
1421
|
+
<tr>
|
1422
|
+
<td class="parameter_name"><p>param_values</p></td>
|
1423
|
+
<td class="parameter_description"><p> an array of
|
1424
|
+
<a href="gobject-Generic-values.html#GValue"><span class="type">GValues</span></a> holding the arguments on which to
|
1425
|
+
invoke the callback of <em class="parameter"><code>closure</code></em>
|
1426
|
+
. </p></td>
|
1427
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_param_values]</span></td>
|
1428
|
+
</tr>
|
1429
|
+
<tr>
|
1430
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
1431
|
+
<td class="parameter_description"><p> a context-dependent invocation hint. </p></td>
|
1432
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1433
|
+
</tr>
|
1434
|
+
</tbody>
|
1435
|
+
</table></div>
|
1436
|
+
</div>
|
1437
|
+
</div>
|
1438
|
+
<hr>
|
1439
|
+
<div class="refsect2">
|
1440
|
+
<a name="g-closure-invalidate"></a><h3>g_closure_invalidate ()</h3>
|
1441
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1442
|
+
g_closure_invalidate (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>);</pre>
|
1443
|
+
<p>Sets a flag on the closure to indicate that its calling
|
1444
|
+
environment has become invalid, and thus causes any future
|
1445
|
+
invocations of <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a> on this <em class="parameter"><code>closure</code></em>
|
1446
|
+
to be
|
1447
|
+
ignored. Also, invalidation notifiers installed on the closure will
|
1448
|
+
be called at this point. Note that unless you are holding a
|
1449
|
+
reference to the closure yourself, the invalidation notifiers may
|
1450
|
+
unref the closure and cause it to be destroyed, so if you need to
|
1451
|
+
access the closure after calling <a class="link" href="gobject-Closures.html#g-closure-invalidate" title="g_closure_invalidate ()"><code class="function">g_closure_invalidate()</code></a>, make sure
|
1452
|
+
that you've previously called <a class="link" href="gobject-Closures.html#g-closure-ref" title="g_closure_ref ()"><code class="function">g_closure_ref()</code></a>.</p>
|
1453
|
+
<p>Note that <a class="link" href="gobject-Closures.html#g-closure-invalidate" title="g_closure_invalidate ()"><code class="function">g_closure_invalidate()</code></a> will also be called when the
|
1454
|
+
reference count of a closure drops to zero (unless it has already
|
1455
|
+
been invalidated before).</p>
|
1456
|
+
<div class="refsect3">
|
1457
|
+
<a name="id-1.4.13.7.21.6"></a><h4>Parameters</h4>
|
1458
|
+
<div class="informaltable"><table width="100%" border="0">
|
1459
|
+
<colgroup>
|
1460
|
+
<col width="150px" class="parameters_name">
|
1461
|
+
<col class="parameters_description">
|
1462
|
+
<col width="200px" class="parameters_annotations">
|
1463
|
+
</colgroup>
|
1464
|
+
<tbody><tr>
|
1465
|
+
<td class="parameter_name"><p>closure</p></td>
|
1466
|
+
<td class="parameter_description"><p>GClosure to invalidate</p></td>
|
1467
|
+
<td class="parameter_annotations"> </td>
|
1468
|
+
</tr></tbody>
|
1469
|
+
</table></div>
|
1470
|
+
</div>
|
1471
|
+
</div>
|
1472
|
+
<hr>
|
1473
|
+
<div class="refsect2">
|
1474
|
+
<a name="g-closure-add-finalize-notifier"></a><h3>g_closure_add_finalize_notifier ()</h3>
|
1475
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1476
|
+
g_closure_add_finalize_notifier (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1477
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> notify_data</code></em>,
|
1478
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> notify_func</code></em>);</pre>
|
1479
|
+
<p>Registers a finalization notifier which will be called when the
|
1480
|
+
reference count of <em class="parameter"><code>closure</code></em>
|
1481
|
+
goes down to 0. Multiple finalization
|
1482
|
+
notifiers on a single closure are invoked in unspecified order. If
|
1483
|
+
a single call to <a class="link" href="gobject-Closures.html#g-closure-unref" title="g_closure_unref ()"><code class="function">g_closure_unref()</code></a> results in the closure being
|
1484
|
+
both invalidated and finalized, then the invalidate notifiers will
|
1485
|
+
be run before the finalize notifiers.</p>
|
1486
|
+
<div class="refsect3">
|
1487
|
+
<a name="id-1.4.13.7.22.5"></a><h4>Parameters</h4>
|
1488
|
+
<div class="informaltable"><table width="100%" border="0">
|
1489
|
+
<colgroup>
|
1490
|
+
<col width="150px" class="parameters_name">
|
1491
|
+
<col class="parameters_description">
|
1492
|
+
<col width="200px" class="parameters_annotations">
|
1493
|
+
</colgroup>
|
1494
|
+
<tbody>
|
1495
|
+
<tr>
|
1496
|
+
<td class="parameter_name"><p>closure</p></td>
|
1497
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1498
|
+
<td class="parameter_annotations"> </td>
|
1499
|
+
</tr>
|
1500
|
+
<tr>
|
1501
|
+
<td class="parameter_name"><p>notify_data</p></td>
|
1502
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>notify_func</code></em>
|
1503
|
+
</p></td>
|
1504
|
+
<td class="parameter_annotations"> </td>
|
1505
|
+
</tr>
|
1506
|
+
<tr>
|
1507
|
+
<td class="parameter_name"><p>notify_func</p></td>
|
1508
|
+
<td class="parameter_description"><p>the callback function to register</p></td>
|
1509
|
+
<td class="parameter_annotations"> </td>
|
1510
|
+
</tr>
|
1511
|
+
</tbody>
|
1512
|
+
</table></div>
|
1513
|
+
</div>
|
1514
|
+
</div>
|
1515
|
+
<hr>
|
1516
|
+
<div class="refsect2">
|
1517
|
+
<a name="g-closure-add-invalidate-notifier"></a><h3>g_closure_add_invalidate_notifier ()</h3>
|
1518
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1519
|
+
g_closure_add_invalidate_notifier (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1520
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> notify_data</code></em>,
|
1521
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> notify_func</code></em>);</pre>
|
1522
|
+
<p>Registers an invalidation notifier which will be called when the
|
1523
|
+
<em class="parameter"><code>closure</code></em>
|
1524
|
+
is invalidated with <a class="link" href="gobject-Closures.html#g-closure-invalidate" title="g_closure_invalidate ()"><code class="function">g_closure_invalidate()</code></a>. Invalidation
|
1525
|
+
notifiers are invoked before finalization notifiers, in an
|
1526
|
+
unspecified order.</p>
|
1527
|
+
<div class="refsect3">
|
1528
|
+
<a name="id-1.4.13.7.23.5"></a><h4>Parameters</h4>
|
1529
|
+
<div class="informaltable"><table width="100%" border="0">
|
1530
|
+
<colgroup>
|
1531
|
+
<col width="150px" class="parameters_name">
|
1532
|
+
<col class="parameters_description">
|
1533
|
+
<col width="200px" class="parameters_annotations">
|
1534
|
+
</colgroup>
|
1535
|
+
<tbody>
|
1536
|
+
<tr>
|
1537
|
+
<td class="parameter_name"><p>closure</p></td>
|
1538
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1539
|
+
<td class="parameter_annotations"> </td>
|
1540
|
+
</tr>
|
1541
|
+
<tr>
|
1542
|
+
<td class="parameter_name"><p>notify_data</p></td>
|
1543
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>notify_func</code></em>
|
1544
|
+
</p></td>
|
1545
|
+
<td class="parameter_annotations"> </td>
|
1546
|
+
</tr>
|
1547
|
+
<tr>
|
1548
|
+
<td class="parameter_name"><p>notify_func</p></td>
|
1549
|
+
<td class="parameter_description"><p>the callback function to register</p></td>
|
1550
|
+
<td class="parameter_annotations"> </td>
|
1551
|
+
</tr>
|
1552
|
+
</tbody>
|
1553
|
+
</table></div>
|
1554
|
+
</div>
|
1555
|
+
</div>
|
1556
|
+
<hr>
|
1557
|
+
<div class="refsect2">
|
1558
|
+
<a name="g-closure-remove-finalize-notifier"></a><h3>g_closure_remove_finalize_notifier ()</h3>
|
1559
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1560
|
+
g_closure_remove_finalize_notifier (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1561
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> notify_data</code></em>,
|
1562
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> notify_func</code></em>);</pre>
|
1563
|
+
<p>Removes a finalization notifier.</p>
|
1564
|
+
<p>Notice that notifiers are automatically removed after they are run.</p>
|
1565
|
+
<div class="refsect3">
|
1566
|
+
<a name="id-1.4.13.7.24.6"></a><h4>Parameters</h4>
|
1567
|
+
<div class="informaltable"><table width="100%" border="0">
|
1568
|
+
<colgroup>
|
1569
|
+
<col width="150px" class="parameters_name">
|
1570
|
+
<col class="parameters_description">
|
1571
|
+
<col width="200px" class="parameters_annotations">
|
1572
|
+
</colgroup>
|
1573
|
+
<tbody>
|
1574
|
+
<tr>
|
1575
|
+
<td class="parameter_name"><p>closure</p></td>
|
1576
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1577
|
+
<td class="parameter_annotations"> </td>
|
1578
|
+
</tr>
|
1579
|
+
<tr>
|
1580
|
+
<td class="parameter_name"><p>notify_data</p></td>
|
1581
|
+
<td class="parameter_description"><p>data which was passed to <a class="link" href="gobject-Closures.html#g-closure-add-finalize-notifier" title="g_closure_add_finalize_notifier ()"><code class="function">g_closure_add_finalize_notifier()</code></a>
|
1582
|
+
when registering <em class="parameter"><code>notify_func</code></em>
|
1583
|
+
</p></td>
|
1584
|
+
<td class="parameter_annotations"> </td>
|
1585
|
+
</tr>
|
1586
|
+
<tr>
|
1587
|
+
<td class="parameter_name"><p>notify_func</p></td>
|
1588
|
+
<td class="parameter_description"><p>the callback function to remove</p></td>
|
1589
|
+
<td class="parameter_annotations"> </td>
|
1590
|
+
</tr>
|
1591
|
+
</tbody>
|
1592
|
+
</table></div>
|
1593
|
+
</div>
|
1594
|
+
</div>
|
1595
|
+
<hr>
|
1596
|
+
<div class="refsect2">
|
1597
|
+
<a name="g-closure-remove-invalidate-notifier"></a><h3>g_closure_remove_invalidate_notifier ()</h3>
|
1598
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1599
|
+
g_closure_remove_invalidate_notifier (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1600
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> notify_data</code></em>,
|
1601
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> notify_func</code></em>);</pre>
|
1602
|
+
<p>Removes an invalidation notifier.</p>
|
1603
|
+
<p>Notice that notifiers are automatically removed after they are run.</p>
|
1604
|
+
<div class="refsect3">
|
1605
|
+
<a name="id-1.4.13.7.25.6"></a><h4>Parameters</h4>
|
1606
|
+
<div class="informaltable"><table width="100%" border="0">
|
1607
|
+
<colgroup>
|
1608
|
+
<col width="150px" class="parameters_name">
|
1609
|
+
<col class="parameters_description">
|
1610
|
+
<col width="200px" class="parameters_annotations">
|
1611
|
+
</colgroup>
|
1612
|
+
<tbody>
|
1613
|
+
<tr>
|
1614
|
+
<td class="parameter_name"><p>closure</p></td>
|
1615
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1616
|
+
<td class="parameter_annotations"> </td>
|
1617
|
+
</tr>
|
1618
|
+
<tr>
|
1619
|
+
<td class="parameter_name"><p>notify_data</p></td>
|
1620
|
+
<td class="parameter_description"><p>data which was passed to <a class="link" href="gobject-Closures.html#g-closure-add-invalidate-notifier" title="g_closure_add_invalidate_notifier ()"><code class="function">g_closure_add_invalidate_notifier()</code></a>
|
1621
|
+
when registering <em class="parameter"><code>notify_func</code></em>
|
1622
|
+
</p></td>
|
1623
|
+
<td class="parameter_annotations"> </td>
|
1624
|
+
</tr>
|
1625
|
+
<tr>
|
1626
|
+
<td class="parameter_name"><p>notify_func</p></td>
|
1627
|
+
<td class="parameter_description"><p>the callback function to remove</p></td>
|
1628
|
+
<td class="parameter_annotations"> </td>
|
1629
|
+
</tr>
|
1630
|
+
</tbody>
|
1631
|
+
</table></div>
|
1632
|
+
</div>
|
1633
|
+
</div>
|
1634
|
+
<hr>
|
1635
|
+
<div class="refsect2">
|
1636
|
+
<a name="g-closure-new-simple"></a><h3>g_closure_new_simple ()</h3>
|
1637
|
+
<pre class="programlisting"><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="returnvalue">GClosure</span></a> *
|
1638
|
+
g_closure_new_simple (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> sizeof_closure</code></em>,
|
1639
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1640
|
+
<p>Allocates a struct of the given size and initializes the initial
|
1641
|
+
part as a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a>. This function is mainly useful when
|
1642
|
+
implementing new types of closures.</p>
|
1643
|
+
<div class="informalexample">
|
1644
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1645
|
+
<tbody>
|
1646
|
+
<tr>
|
1647
|
+
<td class="listing_lines" align="right"><pre>1
|
1648
|
+
2
|
1649
|
+
3
|
1650
|
+
4
|
1651
|
+
5
|
1652
|
+
6
|
1653
|
+
7
|
1654
|
+
8
|
1655
|
+
9
|
1656
|
+
10
|
1657
|
+
11
|
1658
|
+
12
|
1659
|
+
13
|
1660
|
+
14
|
1661
|
+
15
|
1662
|
+
16
|
1663
|
+
17
|
1664
|
+
18
|
1665
|
+
19
|
1666
|
+
20
|
1667
|
+
21
|
1668
|
+
22
|
1669
|
+
23
|
1670
|
+
24
|
1671
|
+
25
|
1672
|
+
26
|
1673
|
+
27
|
1674
|
+
28
|
1675
|
+
29
|
1676
|
+
30</pre></td>
|
1677
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">typedef</span><span class="normal"> </span><span class="keyword">struct</span><span class="normal"> </span><span class="classname">_MyClosure</span><span class="normal"> MyClosure</span><span class="symbol">;</span>
|
1678
|
+
<span class="keyword">struct</span><span class="normal"> </span><span class="classname">_MyClosure</span>
|
1679
|
+
<span class="cbracket">{</span>
|
1680
|
+
<span class="normal"> </span><span class="usertype">GClosure</span><span class="normal"> closure</span><span class="symbol">;</span>
|
1681
|
+
<span class="normal"> </span><span class="comment">// extra data goes here</span>
|
1682
|
+
<span class="cbracket">}</span><span class="symbol">;</span>
|
1683
|
+
|
1684
|
+
<span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
|
1685
|
+
<span class="function">my_closure_finalize</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">gpointer</span><span class="normal"> notify_data</span><span class="symbol">,</span>
|
1686
|
+
<span class="normal"> </span><span class="usertype">GClosure</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">closure</span><span class="symbol">)</span>
|
1687
|
+
<span class="cbracket">{</span>
|
1688
|
+
<span class="normal"> </span><span class="usertype">MyClosure</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">my_closure </span><span class="symbol">=</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">MyClosure </span><span class="symbol">*)</span><span class="normal">closure</span><span class="symbol">;</span>
|
1689
|
+
|
1690
|
+
<span class="normal"> </span><span class="comment">// free extra data here</span>
|
1691
|
+
<span class="cbracket">}</span>
|
1692
|
+
|
1693
|
+
<span class="usertype">MyClosure</span><span class="normal"> </span><span class="symbol">*</span><span class="function">my_closure_new</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">gpointer</span><span class="normal"> data</span><span class="symbol">)</span>
|
1694
|
+
<span class="cbracket">{</span>
|
1695
|
+
<span class="normal"> </span><span class="usertype">GClosure</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">closure</span><span class="symbol">;</span>
|
1696
|
+
<span class="normal"> </span><span class="usertype">MyClosure</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">my_closure</span><span class="symbol">;</span>
|
1697
|
+
|
1698
|
+
<span class="normal"> closure </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="gobject-Closures.html#g-closure-new-simple">g_closure_new_simple</a></span><span class="normal"> </span><span class="symbol">(</span><span class="keyword">sizeof</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">MyClosure</span><span class="symbol">),</span><span class="normal"> data</span><span class="symbol">);</span>
|
1699
|
+
<span class="normal"> my_closure </span><span class="symbol">=</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">MyClosure </span><span class="symbol">*)</span><span class="normal"> closure</span><span class="symbol">;</span>
|
1700
|
+
|
1701
|
+
<span class="normal"> </span><span class="comment">// initialize extra data here</span>
|
1702
|
+
|
1703
|
+
<span class="normal"> </span><span class="function"><a href="gobject-Closures.html#g-closure-add-finalize-notifier">g_closure_add_finalize_notifier</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">closure</span><span class="symbol">,</span><span class="normal"> notify_data</span><span class="symbol">,</span>
|
1704
|
+
<span class="normal"> my_closure_finalize</span><span class="symbol">);</span>
|
1705
|
+
<span class="normal"> </span><span class="keyword">return</span><span class="normal"> my_closure</span><span class="symbol">;</span>
|
1706
|
+
<span class="cbracket">}</span></pre></td>
|
1707
|
+
</tr>
|
1708
|
+
</tbody>
|
1709
|
+
</table>
|
1710
|
+
</div>
|
1711
|
+
|
1712
|
+
<p></p>
|
1713
|
+
<div class="refsect3">
|
1714
|
+
<a name="id-1.4.13.7.26.7"></a><h4>Parameters</h4>
|
1715
|
+
<div class="informaltable"><table width="100%" border="0">
|
1716
|
+
<colgroup>
|
1717
|
+
<col width="150px" class="parameters_name">
|
1718
|
+
<col class="parameters_description">
|
1719
|
+
<col width="200px" class="parameters_annotations">
|
1720
|
+
</colgroup>
|
1721
|
+
<tbody>
|
1722
|
+
<tr>
|
1723
|
+
<td class="parameter_name"><p>sizeof_closure</p></td>
|
1724
|
+
<td class="parameter_description"><p>the size of the structure to allocate, must be at least
|
1725
|
+
<code class="literal">sizeof (GClosure)</code></p></td>
|
1726
|
+
<td class="parameter_annotations"> </td>
|
1727
|
+
</tr>
|
1728
|
+
<tr>
|
1729
|
+
<td class="parameter_name"><p>data</p></td>
|
1730
|
+
<td class="parameter_description"><p>data to store in the <em class="parameter"><code>data</code></em>
|
1731
|
+
field of the newly allocated <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1732
|
+
<td class="parameter_annotations"> </td>
|
1733
|
+
</tr>
|
1734
|
+
</tbody>
|
1735
|
+
</table></div>
|
1736
|
+
</div>
|
1737
|
+
<div class="refsect3">
|
1738
|
+
<a name="id-1.4.13.7.26.8"></a><h4>Returns</h4>
|
1739
|
+
<p> a newly allocated <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a>. </p>
|
1740
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1741
|
+
</div>
|
1742
|
+
</div>
|
1743
|
+
<hr>
|
1744
|
+
<div class="refsect2">
|
1745
|
+
<a name="g-closure-set-marshal"></a><h3>g_closure_set_marshal ()</h3>
|
1746
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1747
|
+
g_closure_set_marshal (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1748
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureMarshal" title="GClosureMarshal ()"><span class="type">GClosureMarshal</span></a> marshal</code></em>);</pre>
|
1749
|
+
<p>Sets the marshaller of <em class="parameter"><code>closure</code></em>
|
1750
|
+
. The <code class="literal">marshal_data</code>
|
1751
|
+
of <em class="parameter"><code>marshal</code></em>
|
1752
|
+
provides a way for a meta marshaller to provide additional
|
1753
|
+
information to the marshaller. (See <a class="link" href="gobject-Closures.html#g-closure-set-meta-marshal" title="g_closure_set_meta_marshal ()"><code class="function">g_closure_set_meta_marshal()</code></a>.) For
|
1754
|
+
GObject's C predefined marshallers (the g_cclosure_marshal_*()
|
1755
|
+
functions), what it provides is a callback function to use instead of
|
1756
|
+
<em class="parameter"><code>closure->callback</code></em>
|
1757
|
+
.</p>
|
1758
|
+
<div class="refsect3">
|
1759
|
+
<a name="id-1.4.13.7.27.5"></a><h4>Parameters</h4>
|
1760
|
+
<div class="informaltable"><table width="100%" border="0">
|
1761
|
+
<colgroup>
|
1762
|
+
<col width="150px" class="parameters_name">
|
1763
|
+
<col class="parameters_description">
|
1764
|
+
<col width="200px" class="parameters_annotations">
|
1765
|
+
</colgroup>
|
1766
|
+
<tbody>
|
1767
|
+
<tr>
|
1768
|
+
<td class="parameter_name"><p>closure</p></td>
|
1769
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1770
|
+
<td class="parameter_annotations"> </td>
|
1771
|
+
</tr>
|
1772
|
+
<tr>
|
1773
|
+
<td class="parameter_name"><p>marshal</p></td>
|
1774
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosureMarshal" title="GClosureMarshal ()"><span class="type">GClosureMarshal</span></a> function</p></td>
|
1775
|
+
<td class="parameter_annotations"> </td>
|
1776
|
+
</tr>
|
1777
|
+
</tbody>
|
1778
|
+
</table></div>
|
1779
|
+
</div>
|
1780
|
+
</div>
|
1781
|
+
<hr>
|
1782
|
+
<div class="refsect2">
|
1783
|
+
<a name="g-closure-add-marshal-guards"></a><h3>g_closure_add_marshal_guards ()</h3>
|
1784
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1785
|
+
g_closure_add_marshal_guards (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1786
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> pre_marshal_data</code></em>,
|
1787
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> pre_marshal_notify</code></em>,
|
1788
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> post_marshal_data</code></em>,
|
1789
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()"><span class="type">GClosureNotify</span></a> post_marshal_notify</code></em>);</pre>
|
1790
|
+
<p>Adds a pair of notifiers which get invoked before and after the
|
1791
|
+
closure callback, respectively. This is typically used to protect
|
1792
|
+
the extra arguments for the duration of the callback. See
|
1793
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-watch-closure" title="g_object_watch_closure ()"><code class="function">g_object_watch_closure()</code></a> for an example of marshal guards.</p>
|
1794
|
+
<div class="refsect3">
|
1795
|
+
<a name="id-1.4.13.7.28.5"></a><h4>Parameters</h4>
|
1796
|
+
<div class="informaltable"><table width="100%" border="0">
|
1797
|
+
<colgroup>
|
1798
|
+
<col width="150px" class="parameters_name">
|
1799
|
+
<col class="parameters_description">
|
1800
|
+
<col width="200px" class="parameters_annotations">
|
1801
|
+
</colgroup>
|
1802
|
+
<tbody>
|
1803
|
+
<tr>
|
1804
|
+
<td class="parameter_name"><p>closure</p></td>
|
1805
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1806
|
+
<td class="parameter_annotations"> </td>
|
1807
|
+
</tr>
|
1808
|
+
<tr>
|
1809
|
+
<td class="parameter_name"><p>pre_marshal_data</p></td>
|
1810
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>pre_marshal_notify</code></em>
|
1811
|
+
</p></td>
|
1812
|
+
<td class="parameter_annotations"> </td>
|
1813
|
+
</tr>
|
1814
|
+
<tr>
|
1815
|
+
<td class="parameter_name"><p>pre_marshal_notify</p></td>
|
1816
|
+
<td class="parameter_description"><p>a function to call before the closure callback</p></td>
|
1817
|
+
<td class="parameter_annotations"> </td>
|
1818
|
+
</tr>
|
1819
|
+
<tr>
|
1820
|
+
<td class="parameter_name"><p>post_marshal_data</p></td>
|
1821
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>post_marshal_notify</code></em>
|
1822
|
+
</p></td>
|
1823
|
+
<td class="parameter_annotations"> </td>
|
1824
|
+
</tr>
|
1825
|
+
<tr>
|
1826
|
+
<td class="parameter_name"><p>post_marshal_notify</p></td>
|
1827
|
+
<td class="parameter_description"><p>a function to call after the closure callback</p></td>
|
1828
|
+
<td class="parameter_annotations"> </td>
|
1829
|
+
</tr>
|
1830
|
+
</tbody>
|
1831
|
+
</table></div>
|
1832
|
+
</div>
|
1833
|
+
</div>
|
1834
|
+
<hr>
|
1835
|
+
<div class="refsect2">
|
1836
|
+
<a name="g-closure-set-meta-marshal"></a><h3>g_closure_set_meta_marshal ()</h3>
|
1837
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1838
|
+
g_closure_set_meta_marshal (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1839
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
1840
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosureMarshal" title="GClosureMarshal ()"><span class="type">GClosureMarshal</span></a> meta_marshal</code></em>);</pre>
|
1841
|
+
<p>Sets the meta marshaller of <em class="parameter"><code>closure</code></em>
|
1842
|
+
. A meta marshaller wraps
|
1843
|
+
<em class="parameter"><code>closure->marshal</code></em>
|
1844
|
+
and modifies the way it is called in some
|
1845
|
+
fashion. The most common use of this facility is for C callbacks.
|
1846
|
+
The same marshallers (generated by <a href="glib-genmarshal.html">glib-genmarshal</a>),
|
1847
|
+
are used everywhere, but the way that we get the callback function
|
1848
|
+
differs. In most cases we want to use <em class="parameter"><code>closure->callback</code></em>
|
1849
|
+
, but in
|
1850
|
+
other cases we want to use some different technique to retrieve the
|
1851
|
+
callback function.</p>
|
1852
|
+
<p>For example, class closures for signals (see
|
1853
|
+
<a class="link" href="gobject-Signals.html#g-signal-type-cclosure-new" title="g_signal_type_cclosure_new ()"><code class="function">g_signal_type_cclosure_new()</code></a>) retrieve the callback function from a
|
1854
|
+
fixed offset in the class structure. The meta marshaller retrieves
|
1855
|
+
the right callback and passes it to the marshaller as the
|
1856
|
+
<em class="parameter"><code>marshal_data</code></em>
|
1857
|
+
argument.</p>
|
1858
|
+
<div class="refsect3">
|
1859
|
+
<a name="id-1.4.13.7.29.6"></a><h4>Parameters</h4>
|
1860
|
+
<div class="informaltable"><table width="100%" border="0">
|
1861
|
+
<colgroup>
|
1862
|
+
<col width="150px" class="parameters_name">
|
1863
|
+
<col class="parameters_description">
|
1864
|
+
<col width="200px" class="parameters_annotations">
|
1865
|
+
</colgroup>
|
1866
|
+
<tbody>
|
1867
|
+
<tr>
|
1868
|
+
<td class="parameter_name"><p>closure</p></td>
|
1869
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1870
|
+
<td class="parameter_annotations"> </td>
|
1871
|
+
</tr>
|
1872
|
+
<tr>
|
1873
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
1874
|
+
<td class="parameter_description"><p>context-dependent data to pass to <em class="parameter"><code>meta_marshal</code></em>
|
1875
|
+
</p></td>
|
1876
|
+
<td class="parameter_annotations"> </td>
|
1877
|
+
</tr>
|
1878
|
+
<tr>
|
1879
|
+
<td class="parameter_name"><p>meta_marshal</p></td>
|
1880
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosureMarshal" title="GClosureMarshal ()"><span class="type">GClosureMarshal</span></a> function</p></td>
|
1881
|
+
<td class="parameter_annotations"> </td>
|
1882
|
+
</tr>
|
1883
|
+
</tbody>
|
1884
|
+
</table></div>
|
1885
|
+
</div>
|
1886
|
+
</div>
|
1887
|
+
<hr>
|
1888
|
+
<div class="refsect2">
|
1889
|
+
<a name="g-source-set-closure"></a><h3>g_source_set_closure ()</h3>
|
1890
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1891
|
+
g_source_set_closure (<em class="parameter"><code><a href="../glib/glib-The-Main-Event-Loop.html#GSource"><span class="type">GSource</span></a> *source</code></em>,
|
1892
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>);</pre>
|
1893
|
+
<p>Set the callback for a source as a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a>.</p>
|
1894
|
+
<p>If the source is not one of the standard GLib types, the <em class="parameter"><code>closure_callback</code></em>
|
1895
|
+
|
1896
|
+
and <em class="parameter"><code>closure_marshal</code></em>
|
1897
|
+
fields of the <a href="../glib/glib-The-Main-Event-Loop.html#GSourceFuncs"><span class="type">GSourceFuncs</span></a> structure must have been
|
1898
|
+
filled in with pointers to appropriate functions.</p>
|
1899
|
+
<div class="refsect3">
|
1900
|
+
<a name="id-1.4.13.7.30.6"></a><h4>Parameters</h4>
|
1901
|
+
<div class="informaltable"><table width="100%" border="0">
|
1902
|
+
<colgroup>
|
1903
|
+
<col width="150px" class="parameters_name">
|
1904
|
+
<col class="parameters_description">
|
1905
|
+
<col width="200px" class="parameters_annotations">
|
1906
|
+
</colgroup>
|
1907
|
+
<tbody>
|
1908
|
+
<tr>
|
1909
|
+
<td class="parameter_name"><p>source</p></td>
|
1910
|
+
<td class="parameter_description"><p>the source</p></td>
|
1911
|
+
<td class="parameter_annotations"> </td>
|
1912
|
+
</tr>
|
1913
|
+
<tr>
|
1914
|
+
<td class="parameter_name"><p>closure</p></td>
|
1915
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
1916
|
+
<td class="parameter_annotations"> </td>
|
1917
|
+
</tr>
|
1918
|
+
</tbody>
|
1919
|
+
</table></div>
|
1920
|
+
</div>
|
1921
|
+
</div>
|
1922
|
+
<hr>
|
1923
|
+
<div class="refsect2">
|
1924
|
+
<a name="g-source-set-dummy-callback"></a><h3>g_source_set_dummy_callback ()</h3>
|
1925
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1926
|
+
g_source_set_dummy_callback (<em class="parameter"><code><a href="../glib/glib-The-Main-Event-Loop.html#GSource"><span class="type">GSource</span></a> *source</code></em>);</pre>
|
1927
|
+
<p>Sets a dummy callback for <em class="parameter"><code>source</code></em>
|
1928
|
+
. The callback will do nothing, and
|
1929
|
+
if the source expects a <a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> return value, it will return <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
|
1930
|
+
(If the source expects any other type of return value, it will return
|
1931
|
+
a 0/<a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> value; whatever <a class="link" href="gobject-Generic-values.html#g-value-init" title="g_value_init ()"><code class="function">g_value_init()</code></a> initializes a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> to for
|
1932
|
+
that type.)</p>
|
1933
|
+
<p>If the source is not one of the standard GLib types, the
|
1934
|
+
<em class="parameter"><code>closure_callback</code></em>
|
1935
|
+
and <em class="parameter"><code>closure_marshal</code></em>
|
1936
|
+
fields of the <a href="../glib/glib-The-Main-Event-Loop.html#GSourceFuncs"><span class="type">GSourceFuncs</span></a>
|
1937
|
+
structure must have been filled in with pointers to appropriate
|
1938
|
+
functions.</p>
|
1939
|
+
<div class="refsect3">
|
1940
|
+
<a name="id-1.4.13.7.31.6"></a><h4>Parameters</h4>
|
1941
|
+
<div class="informaltable"><table width="100%" border="0">
|
1942
|
+
<colgroup>
|
1943
|
+
<col width="150px" class="parameters_name">
|
1944
|
+
<col class="parameters_description">
|
1945
|
+
<col width="200px" class="parameters_annotations">
|
1946
|
+
</colgroup>
|
1947
|
+
<tbody><tr>
|
1948
|
+
<td class="parameter_name"><p>source</p></td>
|
1949
|
+
<td class="parameter_description"><p>the source</p></td>
|
1950
|
+
<td class="parameter_annotations"> </td>
|
1951
|
+
</tr></tbody>
|
1952
|
+
</table></div>
|
1953
|
+
</div>
|
1954
|
+
</div>
|
1955
|
+
<hr>
|
1956
|
+
<div class="refsect2">
|
1957
|
+
<a name="g-cclosure-marshal-VOID--VOID"></a><h3>g_cclosure_marshal_VOID__VOID ()</h3>
|
1958
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1959
|
+
g_cclosure_marshal_VOID__VOID (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
1960
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
1961
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
1962
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
1963
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
1964
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
1965
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
1966
|
+
<code class="literal">void (*callback) (gpointer instance, gpointer user_data)</code>.</p>
|
1967
|
+
<div class="refsect3">
|
1968
|
+
<a name="id-1.4.13.7.32.5"></a><h4>Parameters</h4>
|
1969
|
+
<div class="informaltable"><table width="100%" border="0">
|
1970
|
+
<colgroup>
|
1971
|
+
<col width="150px" class="parameters_name">
|
1972
|
+
<col class="parameters_description">
|
1973
|
+
<col width="200px" class="parameters_annotations">
|
1974
|
+
</colgroup>
|
1975
|
+
<tbody>
|
1976
|
+
<tr>
|
1977
|
+
<td class="parameter_name"><p>closure</p></td>
|
1978
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
1979
|
+
<td class="parameter_annotations"> </td>
|
1980
|
+
</tr>
|
1981
|
+
<tr>
|
1982
|
+
<td class="parameter_name"><p>return_value</p></td>
|
1983
|
+
<td class="parameter_description"><p>ignored</p></td>
|
1984
|
+
<td class="parameter_annotations"> </td>
|
1985
|
+
</tr>
|
1986
|
+
<tr>
|
1987
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
1988
|
+
<td class="parameter_description"><p>1</p></td>
|
1989
|
+
<td class="parameter_annotations"> </td>
|
1990
|
+
</tr>
|
1991
|
+
<tr>
|
1992
|
+
<td class="parameter_name"><p>param_values</p></td>
|
1993
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding only the instance</p></td>
|
1994
|
+
<td class="parameter_annotations"> </td>
|
1995
|
+
</tr>
|
1996
|
+
<tr>
|
1997
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
1998
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
1999
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2000
|
+
<td class="parameter_annotations"> </td>
|
2001
|
+
</tr>
|
2002
|
+
<tr>
|
2003
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2004
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2005
|
+
<td class="parameter_annotations"> </td>
|
2006
|
+
</tr>
|
2007
|
+
</tbody>
|
2008
|
+
</table></div>
|
2009
|
+
</div>
|
2010
|
+
</div>
|
2011
|
+
<hr>
|
2012
|
+
<div class="refsect2">
|
2013
|
+
<a name="g-cclosure-marshal-VOID--BOOLEAN"></a><h3>g_cclosure_marshal_VOID__BOOLEAN ()</h3>
|
2014
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2015
|
+
g_cclosure_marshal_VOID__BOOLEAN (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2016
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2017
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2018
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2019
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2020
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2021
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2022
|
+
<code class="literal">void (*callback) (gpointer instance, gboolean arg1, gpointer user_data)</code>.</p>
|
2023
|
+
<div class="refsect3">
|
2024
|
+
<a name="id-1.4.13.7.33.5"></a><h4>Parameters</h4>
|
2025
|
+
<div class="informaltable"><table width="100%" border="0">
|
2026
|
+
<colgroup>
|
2027
|
+
<col width="150px" class="parameters_name">
|
2028
|
+
<col class="parameters_description">
|
2029
|
+
<col width="200px" class="parameters_annotations">
|
2030
|
+
</colgroup>
|
2031
|
+
<tbody>
|
2032
|
+
<tr>
|
2033
|
+
<td class="parameter_name"><p>closure</p></td>
|
2034
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2035
|
+
<td class="parameter_annotations"> </td>
|
2036
|
+
</tr>
|
2037
|
+
<tr>
|
2038
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2039
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2040
|
+
<td class="parameter_annotations"> </td>
|
2041
|
+
</tr>
|
2042
|
+
<tr>
|
2043
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2044
|
+
<td class="parameter_description"><p>2</p></td>
|
2045
|
+
<td class="parameter_annotations"> </td>
|
2046
|
+
</tr>
|
2047
|
+
<tr>
|
2048
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2049
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> parameter</p></td>
|
2050
|
+
<td class="parameter_annotations"> </td>
|
2051
|
+
</tr>
|
2052
|
+
<tr>
|
2053
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2054
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2055
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2056
|
+
<td class="parameter_annotations"> </td>
|
2057
|
+
</tr>
|
2058
|
+
<tr>
|
2059
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2060
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2061
|
+
<td class="parameter_annotations"> </td>
|
2062
|
+
</tr>
|
2063
|
+
</tbody>
|
2064
|
+
</table></div>
|
2065
|
+
</div>
|
2066
|
+
</div>
|
2067
|
+
<hr>
|
2068
|
+
<div class="refsect2">
|
2069
|
+
<a name="g-cclosure-marshal-VOID--CHAR"></a><h3>g_cclosure_marshal_VOID__CHAR ()</h3>
|
2070
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2071
|
+
g_cclosure_marshal_VOID__CHAR (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2072
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2073
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2074
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2075
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2076
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2077
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2078
|
+
<code class="literal">void (*callback) (gpointer instance, gchar arg1, gpointer user_data)</code>.</p>
|
2079
|
+
<div class="refsect3">
|
2080
|
+
<a name="id-1.4.13.7.34.5"></a><h4>Parameters</h4>
|
2081
|
+
<div class="informaltable"><table width="100%" border="0">
|
2082
|
+
<colgroup>
|
2083
|
+
<col width="150px" class="parameters_name">
|
2084
|
+
<col class="parameters_description">
|
2085
|
+
<col width="200px" class="parameters_annotations">
|
2086
|
+
</colgroup>
|
2087
|
+
<tbody>
|
2088
|
+
<tr>
|
2089
|
+
<td class="parameter_name"><p>closure</p></td>
|
2090
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2091
|
+
<td class="parameter_annotations"> </td>
|
2092
|
+
</tr>
|
2093
|
+
<tr>
|
2094
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2095
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2096
|
+
<td class="parameter_annotations"> </td>
|
2097
|
+
</tr>
|
2098
|
+
<tr>
|
2099
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2100
|
+
<td class="parameter_description"><p>2</p></td>
|
2101
|
+
<td class="parameter_annotations"> </td>
|
2102
|
+
</tr>
|
2103
|
+
<tr>
|
2104
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2105
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> parameter</p></td>
|
2106
|
+
<td class="parameter_annotations"> </td>
|
2107
|
+
</tr>
|
2108
|
+
<tr>
|
2109
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2110
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2111
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2112
|
+
<td class="parameter_annotations"> </td>
|
2113
|
+
</tr>
|
2114
|
+
<tr>
|
2115
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2116
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2117
|
+
<td class="parameter_annotations"> </td>
|
2118
|
+
</tr>
|
2119
|
+
</tbody>
|
2120
|
+
</table></div>
|
2121
|
+
</div>
|
2122
|
+
</div>
|
2123
|
+
<hr>
|
2124
|
+
<div class="refsect2">
|
2125
|
+
<a name="g-cclosure-marshal-VOID--UCHAR"></a><h3>g_cclosure_marshal_VOID__UCHAR ()</h3>
|
2126
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2127
|
+
g_cclosure_marshal_VOID__UCHAR (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2128
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2129
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2130
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2131
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2132
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2133
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2134
|
+
<code class="literal">void (*callback) (gpointer instance, guchar arg1, gpointer user_data)</code>.</p>
|
2135
|
+
<div class="refsect3">
|
2136
|
+
<a name="id-1.4.13.7.35.5"></a><h4>Parameters</h4>
|
2137
|
+
<div class="informaltable"><table width="100%" border="0">
|
2138
|
+
<colgroup>
|
2139
|
+
<col width="150px" class="parameters_name">
|
2140
|
+
<col class="parameters_description">
|
2141
|
+
<col width="200px" class="parameters_annotations">
|
2142
|
+
</colgroup>
|
2143
|
+
<tbody>
|
2144
|
+
<tr>
|
2145
|
+
<td class="parameter_name"><p>closure</p></td>
|
2146
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2147
|
+
<td class="parameter_annotations"> </td>
|
2148
|
+
</tr>
|
2149
|
+
<tr>
|
2150
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2151
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2152
|
+
<td class="parameter_annotations"> </td>
|
2153
|
+
</tr>
|
2154
|
+
<tr>
|
2155
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2156
|
+
<td class="parameter_description"><p>2</p></td>
|
2157
|
+
<td class="parameter_annotations"> </td>
|
2158
|
+
</tr>
|
2159
|
+
<tr>
|
2160
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2161
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a> parameter</p></td>
|
2162
|
+
<td class="parameter_annotations"> </td>
|
2163
|
+
</tr>
|
2164
|
+
<tr>
|
2165
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2166
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2167
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2168
|
+
<td class="parameter_annotations"> </td>
|
2169
|
+
</tr>
|
2170
|
+
<tr>
|
2171
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2172
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2173
|
+
<td class="parameter_annotations"> </td>
|
2174
|
+
</tr>
|
2175
|
+
</tbody>
|
2176
|
+
</table></div>
|
2177
|
+
</div>
|
2178
|
+
</div>
|
2179
|
+
<hr>
|
2180
|
+
<div class="refsect2">
|
2181
|
+
<a name="g-cclosure-marshal-VOID--INT"></a><h3>g_cclosure_marshal_VOID__INT ()</h3>
|
2182
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2183
|
+
g_cclosure_marshal_VOID__INT (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2184
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2185
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2186
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2187
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2188
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2189
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2190
|
+
<code class="literal">void (*callback) (gpointer instance, gint arg1, gpointer user_data)</code>.</p>
|
2191
|
+
<div class="refsect3">
|
2192
|
+
<a name="id-1.4.13.7.36.5"></a><h4>Parameters</h4>
|
2193
|
+
<div class="informaltable"><table width="100%" border="0">
|
2194
|
+
<colgroup>
|
2195
|
+
<col width="150px" class="parameters_name">
|
2196
|
+
<col class="parameters_description">
|
2197
|
+
<col width="200px" class="parameters_annotations">
|
2198
|
+
</colgroup>
|
2199
|
+
<tbody>
|
2200
|
+
<tr>
|
2201
|
+
<td class="parameter_name"><p>closure</p></td>
|
2202
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2203
|
+
<td class="parameter_annotations"> </td>
|
2204
|
+
</tr>
|
2205
|
+
<tr>
|
2206
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2207
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2208
|
+
<td class="parameter_annotations"> </td>
|
2209
|
+
</tr>
|
2210
|
+
<tr>
|
2211
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2212
|
+
<td class="parameter_description"><p>2</p></td>
|
2213
|
+
<td class="parameter_annotations"> </td>
|
2214
|
+
</tr>
|
2215
|
+
<tr>
|
2216
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2217
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> parameter</p></td>
|
2218
|
+
<td class="parameter_annotations"> </td>
|
2219
|
+
</tr>
|
2220
|
+
<tr>
|
2221
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2222
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2223
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2224
|
+
<td class="parameter_annotations"> </td>
|
2225
|
+
</tr>
|
2226
|
+
<tr>
|
2227
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2228
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2229
|
+
<td class="parameter_annotations"> </td>
|
2230
|
+
</tr>
|
2231
|
+
</tbody>
|
2232
|
+
</table></div>
|
2233
|
+
</div>
|
2234
|
+
</div>
|
2235
|
+
<hr>
|
2236
|
+
<div class="refsect2">
|
2237
|
+
<a name="g-cclosure-marshal-VOID--UINT"></a><h3>g_cclosure_marshal_VOID__UINT ()</h3>
|
2238
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2239
|
+
g_cclosure_marshal_VOID__UINT (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2240
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2241
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2242
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2243
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2244
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2245
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2246
|
+
<code class="literal">void (*callback) (gpointer instance, guint arg1, gpointer user_data)</code>.</p>
|
2247
|
+
<div class="refsect3">
|
2248
|
+
<a name="id-1.4.13.7.37.5"></a><h4>Parameters</h4>
|
2249
|
+
<div class="informaltable"><table width="100%" border="0">
|
2250
|
+
<colgroup>
|
2251
|
+
<col width="150px" class="parameters_name">
|
2252
|
+
<col class="parameters_description">
|
2253
|
+
<col width="200px" class="parameters_annotations">
|
2254
|
+
</colgroup>
|
2255
|
+
<tbody>
|
2256
|
+
<tr>
|
2257
|
+
<td class="parameter_name"><p>closure</p></td>
|
2258
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2259
|
+
<td class="parameter_annotations"> </td>
|
2260
|
+
</tr>
|
2261
|
+
<tr>
|
2262
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2263
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2264
|
+
<td class="parameter_annotations"> </td>
|
2265
|
+
</tr>
|
2266
|
+
<tr>
|
2267
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2268
|
+
<td class="parameter_description"><p>2</p></td>
|
2269
|
+
<td class="parameter_annotations"> </td>
|
2270
|
+
</tr>
|
2271
|
+
<tr>
|
2272
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2273
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> parameter</p></td>
|
2274
|
+
<td class="parameter_annotations"> </td>
|
2275
|
+
</tr>
|
2276
|
+
<tr>
|
2277
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2278
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2279
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2280
|
+
<td class="parameter_annotations"> </td>
|
2281
|
+
</tr>
|
2282
|
+
<tr>
|
2283
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2284
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2285
|
+
<td class="parameter_annotations"> </td>
|
2286
|
+
</tr>
|
2287
|
+
</tbody>
|
2288
|
+
</table></div>
|
2289
|
+
</div>
|
2290
|
+
</div>
|
2291
|
+
<hr>
|
2292
|
+
<div class="refsect2">
|
2293
|
+
<a name="g-cclosure-marshal-VOID--LONG"></a><h3>g_cclosure_marshal_VOID__LONG ()</h3>
|
2294
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2295
|
+
g_cclosure_marshal_VOID__LONG (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2296
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2297
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2298
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2299
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2300
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2301
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2302
|
+
<code class="literal">void (*callback) (gpointer instance, glong arg1, gpointer user_data)</code>.</p>
|
2303
|
+
<div class="refsect3">
|
2304
|
+
<a name="id-1.4.13.7.38.5"></a><h4>Parameters</h4>
|
2305
|
+
<div class="informaltable"><table width="100%" border="0">
|
2306
|
+
<colgroup>
|
2307
|
+
<col width="150px" class="parameters_name">
|
2308
|
+
<col class="parameters_description">
|
2309
|
+
<col width="200px" class="parameters_annotations">
|
2310
|
+
</colgroup>
|
2311
|
+
<tbody>
|
2312
|
+
<tr>
|
2313
|
+
<td class="parameter_name"><p>closure</p></td>
|
2314
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2315
|
+
<td class="parameter_annotations"> </td>
|
2316
|
+
</tr>
|
2317
|
+
<tr>
|
2318
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2319
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2320
|
+
<td class="parameter_annotations"> </td>
|
2321
|
+
</tr>
|
2322
|
+
<tr>
|
2323
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2324
|
+
<td class="parameter_description"><p>2</p></td>
|
2325
|
+
<td class="parameter_annotations"> </td>
|
2326
|
+
</tr>
|
2327
|
+
<tr>
|
2328
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2329
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#glong"><span class="type">glong</span></a> parameter</p></td>
|
2330
|
+
<td class="parameter_annotations"> </td>
|
2331
|
+
</tr>
|
2332
|
+
<tr>
|
2333
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2334
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2335
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2336
|
+
<td class="parameter_annotations"> </td>
|
2337
|
+
</tr>
|
2338
|
+
<tr>
|
2339
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2340
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2341
|
+
<td class="parameter_annotations"> </td>
|
2342
|
+
</tr>
|
2343
|
+
</tbody>
|
2344
|
+
</table></div>
|
2345
|
+
</div>
|
2346
|
+
</div>
|
2347
|
+
<hr>
|
2348
|
+
<div class="refsect2">
|
2349
|
+
<a name="g-cclosure-marshal-VOID--ULONG"></a><h3>g_cclosure_marshal_VOID__ULONG ()</h3>
|
2350
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2351
|
+
g_cclosure_marshal_VOID__ULONG (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2352
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2353
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2354
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2355
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2356
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2357
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2358
|
+
<code class="literal">void (*callback) (gpointer instance, gulong arg1, gpointer user_data)</code>.</p>
|
2359
|
+
<div class="refsect3">
|
2360
|
+
<a name="id-1.4.13.7.39.5"></a><h4>Parameters</h4>
|
2361
|
+
<div class="informaltable"><table width="100%" border="0">
|
2362
|
+
<colgroup>
|
2363
|
+
<col width="150px" class="parameters_name">
|
2364
|
+
<col class="parameters_description">
|
2365
|
+
<col width="200px" class="parameters_annotations">
|
2366
|
+
</colgroup>
|
2367
|
+
<tbody>
|
2368
|
+
<tr>
|
2369
|
+
<td class="parameter_name"><p>closure</p></td>
|
2370
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2371
|
+
<td class="parameter_annotations"> </td>
|
2372
|
+
</tr>
|
2373
|
+
<tr>
|
2374
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2375
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2376
|
+
<td class="parameter_annotations"> </td>
|
2377
|
+
</tr>
|
2378
|
+
<tr>
|
2379
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2380
|
+
<td class="parameter_description"><p>2</p></td>
|
2381
|
+
<td class="parameter_annotations"> </td>
|
2382
|
+
</tr>
|
2383
|
+
<tr>
|
2384
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2385
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gulong"><span class="type">gulong</span></a> parameter</p></td>
|
2386
|
+
<td class="parameter_annotations"> </td>
|
2387
|
+
</tr>
|
2388
|
+
<tr>
|
2389
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2390
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2391
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2392
|
+
<td class="parameter_annotations"> </td>
|
2393
|
+
</tr>
|
2394
|
+
<tr>
|
2395
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2396
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2397
|
+
<td class="parameter_annotations"> </td>
|
2398
|
+
</tr>
|
2399
|
+
</tbody>
|
2400
|
+
</table></div>
|
2401
|
+
</div>
|
2402
|
+
</div>
|
2403
|
+
<hr>
|
2404
|
+
<div class="refsect2">
|
2405
|
+
<a name="g-cclosure-marshal-VOID--ENUM"></a><h3>g_cclosure_marshal_VOID__ENUM ()</h3>
|
2406
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2407
|
+
g_cclosure_marshal_VOID__ENUM (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2408
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2409
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2410
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2411
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2412
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2413
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2414
|
+
<code class="literal">void (*callback) (gpointer instance, gint arg1, gpointer user_data)</code> where the <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> parameter denotes an enumeration type..</p>
|
2415
|
+
<div class="refsect3">
|
2416
|
+
<a name="id-1.4.13.7.40.5"></a><h4>Parameters</h4>
|
2417
|
+
<div class="informaltable"><table width="100%" border="0">
|
2418
|
+
<colgroup>
|
2419
|
+
<col width="150px" class="parameters_name">
|
2420
|
+
<col class="parameters_description">
|
2421
|
+
<col width="200px" class="parameters_annotations">
|
2422
|
+
</colgroup>
|
2423
|
+
<tbody>
|
2424
|
+
<tr>
|
2425
|
+
<td class="parameter_name"><p>closure</p></td>
|
2426
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2427
|
+
<td class="parameter_annotations"> </td>
|
2428
|
+
</tr>
|
2429
|
+
<tr>
|
2430
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2431
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2432
|
+
<td class="parameter_annotations"> </td>
|
2433
|
+
</tr>
|
2434
|
+
<tr>
|
2435
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2436
|
+
<td class="parameter_description"><p>2</p></td>
|
2437
|
+
<td class="parameter_annotations"> </td>
|
2438
|
+
</tr>
|
2439
|
+
<tr>
|
2440
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2441
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the enumeration parameter</p></td>
|
2442
|
+
<td class="parameter_annotations"> </td>
|
2443
|
+
</tr>
|
2444
|
+
<tr>
|
2445
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2446
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2447
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2448
|
+
<td class="parameter_annotations"> </td>
|
2449
|
+
</tr>
|
2450
|
+
<tr>
|
2451
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2452
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2453
|
+
<td class="parameter_annotations"> </td>
|
2454
|
+
</tr>
|
2455
|
+
</tbody>
|
2456
|
+
</table></div>
|
2457
|
+
</div>
|
2458
|
+
</div>
|
2459
|
+
<hr>
|
2460
|
+
<div class="refsect2">
|
2461
|
+
<a name="g-cclosure-marshal-VOID--FLAGS"></a><h3>g_cclosure_marshal_VOID__FLAGS ()</h3>
|
2462
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2463
|
+
g_cclosure_marshal_VOID__FLAGS (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2464
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2465
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2466
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2467
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2468
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2469
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2470
|
+
<code class="literal">void (*callback) (gpointer instance, gint arg1, gpointer user_data)</code> where the <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> parameter denotes a flags type.</p>
|
2471
|
+
<div class="refsect3">
|
2472
|
+
<a name="id-1.4.13.7.41.5"></a><h4>Parameters</h4>
|
2473
|
+
<div class="informaltable"><table width="100%" border="0">
|
2474
|
+
<colgroup>
|
2475
|
+
<col width="150px" class="parameters_name">
|
2476
|
+
<col class="parameters_description">
|
2477
|
+
<col width="200px" class="parameters_annotations">
|
2478
|
+
</colgroup>
|
2479
|
+
<tbody>
|
2480
|
+
<tr>
|
2481
|
+
<td class="parameter_name"><p>closure</p></td>
|
2482
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2483
|
+
<td class="parameter_annotations"> </td>
|
2484
|
+
</tr>
|
2485
|
+
<tr>
|
2486
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2487
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2488
|
+
<td class="parameter_annotations"> </td>
|
2489
|
+
</tr>
|
2490
|
+
<tr>
|
2491
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2492
|
+
<td class="parameter_description"><p>2</p></td>
|
2493
|
+
<td class="parameter_annotations"> </td>
|
2494
|
+
</tr>
|
2495
|
+
<tr>
|
2496
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2497
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the flags parameter</p></td>
|
2498
|
+
<td class="parameter_annotations"> </td>
|
2499
|
+
</tr>
|
2500
|
+
<tr>
|
2501
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2502
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2503
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2504
|
+
<td class="parameter_annotations"> </td>
|
2505
|
+
</tr>
|
2506
|
+
<tr>
|
2507
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2508
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2509
|
+
<td class="parameter_annotations"> </td>
|
2510
|
+
</tr>
|
2511
|
+
</tbody>
|
2512
|
+
</table></div>
|
2513
|
+
</div>
|
2514
|
+
</div>
|
2515
|
+
<hr>
|
2516
|
+
<div class="refsect2">
|
2517
|
+
<a name="g-cclosure-marshal-VOID--FLOAT"></a><h3>g_cclosure_marshal_VOID__FLOAT ()</h3>
|
2518
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2519
|
+
g_cclosure_marshal_VOID__FLOAT (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2520
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2521
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2522
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2523
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2524
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2525
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2526
|
+
<code class="literal">void (*callback) (gpointer instance, gfloat arg1, gpointer user_data)</code>.</p>
|
2527
|
+
<div class="refsect3">
|
2528
|
+
<a name="id-1.4.13.7.42.5"></a><h4>Parameters</h4>
|
2529
|
+
<div class="informaltable"><table width="100%" border="0">
|
2530
|
+
<colgroup>
|
2531
|
+
<col width="150px" class="parameters_name">
|
2532
|
+
<col class="parameters_description">
|
2533
|
+
<col width="200px" class="parameters_annotations">
|
2534
|
+
</colgroup>
|
2535
|
+
<tbody>
|
2536
|
+
<tr>
|
2537
|
+
<td class="parameter_name"><p>closure</p></td>
|
2538
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2539
|
+
<td class="parameter_annotations"> </td>
|
2540
|
+
</tr>
|
2541
|
+
<tr>
|
2542
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2543
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2544
|
+
<td class="parameter_annotations"> </td>
|
2545
|
+
</tr>
|
2546
|
+
<tr>
|
2547
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2548
|
+
<td class="parameter_description"><p>2</p></td>
|
2549
|
+
<td class="parameter_annotations"> </td>
|
2550
|
+
</tr>
|
2551
|
+
<tr>
|
2552
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2553
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> parameter</p></td>
|
2554
|
+
<td class="parameter_annotations"> </td>
|
2555
|
+
</tr>
|
2556
|
+
<tr>
|
2557
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2558
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2559
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2560
|
+
<td class="parameter_annotations"> </td>
|
2561
|
+
</tr>
|
2562
|
+
<tr>
|
2563
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2564
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2565
|
+
<td class="parameter_annotations"> </td>
|
2566
|
+
</tr>
|
2567
|
+
</tbody>
|
2568
|
+
</table></div>
|
2569
|
+
</div>
|
2570
|
+
</div>
|
2571
|
+
<hr>
|
2572
|
+
<div class="refsect2">
|
2573
|
+
<a name="g-cclosure-marshal-VOID--DOUBLE"></a><h3>g_cclosure_marshal_VOID__DOUBLE ()</h3>
|
2574
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2575
|
+
g_cclosure_marshal_VOID__DOUBLE (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2576
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2577
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2578
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2579
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2580
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2581
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2582
|
+
<code class="literal">void (*callback) (gpointer instance, gdouble arg1, gpointer user_data)</code>.</p>
|
2583
|
+
<div class="refsect3">
|
2584
|
+
<a name="id-1.4.13.7.43.5"></a><h4>Parameters</h4>
|
2585
|
+
<div class="informaltable"><table width="100%" border="0">
|
2586
|
+
<colgroup>
|
2587
|
+
<col width="150px" class="parameters_name">
|
2588
|
+
<col class="parameters_description">
|
2589
|
+
<col width="200px" class="parameters_annotations">
|
2590
|
+
</colgroup>
|
2591
|
+
<tbody>
|
2592
|
+
<tr>
|
2593
|
+
<td class="parameter_name"><p>closure</p></td>
|
2594
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2595
|
+
<td class="parameter_annotations"> </td>
|
2596
|
+
</tr>
|
2597
|
+
<tr>
|
2598
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2599
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2600
|
+
<td class="parameter_annotations"> </td>
|
2601
|
+
</tr>
|
2602
|
+
<tr>
|
2603
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2604
|
+
<td class="parameter_description"><p>2</p></td>
|
2605
|
+
<td class="parameter_annotations"> </td>
|
2606
|
+
</tr>
|
2607
|
+
<tr>
|
2608
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2609
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> parameter</p></td>
|
2610
|
+
<td class="parameter_annotations"> </td>
|
2611
|
+
</tr>
|
2612
|
+
<tr>
|
2613
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2614
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2615
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2616
|
+
<td class="parameter_annotations"> </td>
|
2617
|
+
</tr>
|
2618
|
+
<tr>
|
2619
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2620
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2621
|
+
<td class="parameter_annotations"> </td>
|
2622
|
+
</tr>
|
2623
|
+
</tbody>
|
2624
|
+
</table></div>
|
2625
|
+
</div>
|
2626
|
+
</div>
|
2627
|
+
<hr>
|
2628
|
+
<div class="refsect2">
|
2629
|
+
<a name="g-cclosure-marshal-VOID--STRING"></a><h3>g_cclosure_marshal_VOID__STRING ()</h3>
|
2630
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2631
|
+
g_cclosure_marshal_VOID__STRING (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2632
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2633
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2634
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2635
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2636
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2637
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2638
|
+
<code class="literal">void (*callback) (gpointer instance, const gchar *arg1, gpointer user_data)</code>.</p>
|
2639
|
+
<div class="refsect3">
|
2640
|
+
<a name="id-1.4.13.7.44.5"></a><h4>Parameters</h4>
|
2641
|
+
<div class="informaltable"><table width="100%" border="0">
|
2642
|
+
<colgroup>
|
2643
|
+
<col width="150px" class="parameters_name">
|
2644
|
+
<col class="parameters_description">
|
2645
|
+
<col width="200px" class="parameters_annotations">
|
2646
|
+
</colgroup>
|
2647
|
+
<tbody>
|
2648
|
+
<tr>
|
2649
|
+
<td class="parameter_name"><p>closure</p></td>
|
2650
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2651
|
+
<td class="parameter_annotations"> </td>
|
2652
|
+
</tr>
|
2653
|
+
<tr>
|
2654
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2655
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2656
|
+
<td class="parameter_annotations"> </td>
|
2657
|
+
</tr>
|
2658
|
+
<tr>
|
2659
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2660
|
+
<td class="parameter_description"><p>2</p></td>
|
2661
|
+
<td class="parameter_annotations"> </td>
|
2662
|
+
</tr>
|
2663
|
+
<tr>
|
2664
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2665
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* parameter</p></td>
|
2666
|
+
<td class="parameter_annotations"> </td>
|
2667
|
+
</tr>
|
2668
|
+
<tr>
|
2669
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2670
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2671
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2672
|
+
<td class="parameter_annotations"> </td>
|
2673
|
+
</tr>
|
2674
|
+
<tr>
|
2675
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2676
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2677
|
+
<td class="parameter_annotations"> </td>
|
2678
|
+
</tr>
|
2679
|
+
</tbody>
|
2680
|
+
</table></div>
|
2681
|
+
</div>
|
2682
|
+
</div>
|
2683
|
+
<hr>
|
2684
|
+
<div class="refsect2">
|
2685
|
+
<a name="g-cclosure-marshal-VOID--PARAM"></a><h3>g_cclosure_marshal_VOID__PARAM ()</h3>
|
2686
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2687
|
+
g_cclosure_marshal_VOID__PARAM (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2688
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2689
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2690
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2691
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2692
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2693
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2694
|
+
<code class="literal">void (*callback) (gpointer instance, GParamSpec *arg1, gpointer user_data)</code>.</p>
|
2695
|
+
<div class="refsect3">
|
2696
|
+
<a name="id-1.4.13.7.45.5"></a><h4>Parameters</h4>
|
2697
|
+
<div class="informaltable"><table width="100%" border="0">
|
2698
|
+
<colgroup>
|
2699
|
+
<col width="150px" class="parameters_name">
|
2700
|
+
<col class="parameters_description">
|
2701
|
+
<col width="200px" class="parameters_annotations">
|
2702
|
+
</colgroup>
|
2703
|
+
<tbody>
|
2704
|
+
<tr>
|
2705
|
+
<td class="parameter_name"><p>closure</p></td>
|
2706
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2707
|
+
<td class="parameter_annotations"> </td>
|
2708
|
+
</tr>
|
2709
|
+
<tr>
|
2710
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2711
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2712
|
+
<td class="parameter_annotations"> </td>
|
2713
|
+
</tr>
|
2714
|
+
<tr>
|
2715
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2716
|
+
<td class="parameter_description"><p>2</p></td>
|
2717
|
+
<td class="parameter_annotations"> </td>
|
2718
|
+
</tr>
|
2719
|
+
<tr>
|
2720
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2721
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a>* parameter</p></td>
|
2722
|
+
<td class="parameter_annotations"> </td>
|
2723
|
+
</tr>
|
2724
|
+
<tr>
|
2725
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2726
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2727
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2728
|
+
<td class="parameter_annotations"> </td>
|
2729
|
+
</tr>
|
2730
|
+
<tr>
|
2731
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2732
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2733
|
+
<td class="parameter_annotations"> </td>
|
2734
|
+
</tr>
|
2735
|
+
</tbody>
|
2736
|
+
</table></div>
|
2737
|
+
</div>
|
2738
|
+
</div>
|
2739
|
+
<hr>
|
2740
|
+
<div class="refsect2">
|
2741
|
+
<a name="g-cclosure-marshal-VOID--BOXED"></a><h3>g_cclosure_marshal_VOID__BOXED ()</h3>
|
2742
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2743
|
+
g_cclosure_marshal_VOID__BOXED (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2744
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2745
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2746
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2747
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2748
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2749
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2750
|
+
<code class="literal">void (*callback) (gpointer instance, GBoxed *arg1, gpointer user_data)</code>.</p>
|
2751
|
+
<div class="refsect3">
|
2752
|
+
<a name="id-1.4.13.7.46.5"></a><h4>Parameters</h4>
|
2753
|
+
<div class="informaltable"><table width="100%" border="0">
|
2754
|
+
<colgroup>
|
2755
|
+
<col width="150px" class="parameters_name">
|
2756
|
+
<col class="parameters_description">
|
2757
|
+
<col width="200px" class="parameters_annotations">
|
2758
|
+
</colgroup>
|
2759
|
+
<tbody>
|
2760
|
+
<tr>
|
2761
|
+
<td class="parameter_name"><p>closure</p></td>
|
2762
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2763
|
+
<td class="parameter_annotations"> </td>
|
2764
|
+
</tr>
|
2765
|
+
<tr>
|
2766
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2767
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2768
|
+
<td class="parameter_annotations"> </td>
|
2769
|
+
</tr>
|
2770
|
+
<tr>
|
2771
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2772
|
+
<td class="parameter_description"><p>2</p></td>
|
2773
|
+
<td class="parameter_annotations"> </td>
|
2774
|
+
</tr>
|
2775
|
+
<tr>
|
2776
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2777
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <span class="type">GBoxed</span>* parameter</p></td>
|
2778
|
+
<td class="parameter_annotations"> </td>
|
2779
|
+
</tr>
|
2780
|
+
<tr>
|
2781
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2782
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2783
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2784
|
+
<td class="parameter_annotations"> </td>
|
2785
|
+
</tr>
|
2786
|
+
<tr>
|
2787
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2788
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2789
|
+
<td class="parameter_annotations"> </td>
|
2790
|
+
</tr>
|
2791
|
+
</tbody>
|
2792
|
+
</table></div>
|
2793
|
+
</div>
|
2794
|
+
</div>
|
2795
|
+
<hr>
|
2796
|
+
<div class="refsect2">
|
2797
|
+
<a name="g-cclosure-marshal-VOID--POINTER"></a><h3>g_cclosure_marshal_VOID__POINTER ()</h3>
|
2798
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2799
|
+
g_cclosure_marshal_VOID__POINTER (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2800
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2801
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2802
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2803
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2804
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2805
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2806
|
+
<code class="literal">void (*callback) (gpointer instance, gpointer arg1, gpointer user_data)</code>.</p>
|
2807
|
+
<div class="refsect3">
|
2808
|
+
<a name="id-1.4.13.7.47.5"></a><h4>Parameters</h4>
|
2809
|
+
<div class="informaltable"><table width="100%" border="0">
|
2810
|
+
<colgroup>
|
2811
|
+
<col width="150px" class="parameters_name">
|
2812
|
+
<col class="parameters_description">
|
2813
|
+
<col width="200px" class="parameters_annotations">
|
2814
|
+
</colgroup>
|
2815
|
+
<tbody>
|
2816
|
+
<tr>
|
2817
|
+
<td class="parameter_name"><p>closure</p></td>
|
2818
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2819
|
+
<td class="parameter_annotations"> </td>
|
2820
|
+
</tr>
|
2821
|
+
<tr>
|
2822
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2823
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2824
|
+
<td class="parameter_annotations"> </td>
|
2825
|
+
</tr>
|
2826
|
+
<tr>
|
2827
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2828
|
+
<td class="parameter_description"><p>2</p></td>
|
2829
|
+
<td class="parameter_annotations"> </td>
|
2830
|
+
</tr>
|
2831
|
+
<tr>
|
2832
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2833
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> parameter</p></td>
|
2834
|
+
<td class="parameter_annotations"> </td>
|
2835
|
+
</tr>
|
2836
|
+
<tr>
|
2837
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2838
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2839
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2840
|
+
<td class="parameter_annotations"> </td>
|
2841
|
+
</tr>
|
2842
|
+
<tr>
|
2843
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2844
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2845
|
+
<td class="parameter_annotations"> </td>
|
2846
|
+
</tr>
|
2847
|
+
</tbody>
|
2848
|
+
</table></div>
|
2849
|
+
</div>
|
2850
|
+
</div>
|
2851
|
+
<hr>
|
2852
|
+
<div class="refsect2">
|
2853
|
+
<a name="g-cclosure-marshal-VOID--OBJECT"></a><h3>g_cclosure_marshal_VOID__OBJECT ()</h3>
|
2854
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2855
|
+
g_cclosure_marshal_VOID__OBJECT (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2856
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2857
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2858
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2859
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2860
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2861
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2862
|
+
<code class="literal">void (*callback) (gpointer instance, GObject *arg1, gpointer user_data)</code>.</p>
|
2863
|
+
<div class="refsect3">
|
2864
|
+
<a name="id-1.4.13.7.48.5"></a><h4>Parameters</h4>
|
2865
|
+
<div class="informaltable"><table width="100%" border="0">
|
2866
|
+
<colgroup>
|
2867
|
+
<col width="150px" class="parameters_name">
|
2868
|
+
<col class="parameters_description">
|
2869
|
+
<col width="200px" class="parameters_annotations">
|
2870
|
+
</colgroup>
|
2871
|
+
<tbody>
|
2872
|
+
<tr>
|
2873
|
+
<td class="parameter_name"><p>closure</p></td>
|
2874
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2875
|
+
<td class="parameter_annotations"> </td>
|
2876
|
+
</tr>
|
2877
|
+
<tr>
|
2878
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2879
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2880
|
+
<td class="parameter_annotations"> </td>
|
2881
|
+
</tr>
|
2882
|
+
<tr>
|
2883
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2884
|
+
<td class="parameter_description"><p>2</p></td>
|
2885
|
+
<td class="parameter_annotations"> </td>
|
2886
|
+
</tr>
|
2887
|
+
<tr>
|
2888
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2889
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>* parameter</p></td>
|
2890
|
+
<td class="parameter_annotations"> </td>
|
2891
|
+
</tr>
|
2892
|
+
<tr>
|
2893
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2894
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2895
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2896
|
+
<td class="parameter_annotations"> </td>
|
2897
|
+
</tr>
|
2898
|
+
<tr>
|
2899
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2900
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2901
|
+
<td class="parameter_annotations"> </td>
|
2902
|
+
</tr>
|
2903
|
+
</tbody>
|
2904
|
+
</table></div>
|
2905
|
+
</div>
|
2906
|
+
</div>
|
2907
|
+
<hr>
|
2908
|
+
<div class="refsect2">
|
2909
|
+
<a name="g-cclosure-marshal-VOID--VARIANT"></a><h3>g_cclosure_marshal_VOID__VARIANT ()</h3>
|
2910
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2911
|
+
g_cclosure_marshal_VOID__VARIANT (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2912
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2913
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2914
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2915
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2916
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2917
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2918
|
+
<code class="literal">void (*callback) (gpointer instance, GVariant *arg1, gpointer user_data)</code>.</p>
|
2919
|
+
<div class="refsect3">
|
2920
|
+
<a name="id-1.4.13.7.49.5"></a><h4>Parameters</h4>
|
2921
|
+
<div class="informaltable"><table width="100%" border="0">
|
2922
|
+
<colgroup>
|
2923
|
+
<col width="150px" class="parameters_name">
|
2924
|
+
<col class="parameters_description">
|
2925
|
+
<col width="200px" class="parameters_annotations">
|
2926
|
+
</colgroup>
|
2927
|
+
<tbody>
|
2928
|
+
<tr>
|
2929
|
+
<td class="parameter_name"><p>closure</p></td>
|
2930
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2931
|
+
<td class="parameter_annotations"> </td>
|
2932
|
+
</tr>
|
2933
|
+
<tr>
|
2934
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2935
|
+
<td class="parameter_description"><p>ignored</p></td>
|
2936
|
+
<td class="parameter_annotations"> </td>
|
2937
|
+
</tr>
|
2938
|
+
<tr>
|
2939
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2940
|
+
<td class="parameter_description"><p>2</p></td>
|
2941
|
+
<td class="parameter_annotations"> </td>
|
2942
|
+
</tr>
|
2943
|
+
<tr>
|
2944
|
+
<td class="parameter_name"><p>param_values</p></td>
|
2945
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding the instance and the <a href="../glib/glib-GVariant.html#GVariant"><span class="type">GVariant</span></a>* parameter</p></td>
|
2946
|
+
<td class="parameter_annotations"> </td>
|
2947
|
+
</tr>
|
2948
|
+
<tr>
|
2949
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
2950
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
2951
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
2952
|
+
<td class="parameter_annotations"> </td>
|
2953
|
+
</tr>
|
2954
|
+
<tr>
|
2955
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
2956
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
2957
|
+
<td class="parameter_annotations"> </td>
|
2958
|
+
</tr>
|
2959
|
+
</tbody>
|
2960
|
+
</table></div>
|
2961
|
+
</div>
|
2962
|
+
<p class="since">Since 2.26</p>
|
2963
|
+
</div>
|
2964
|
+
<hr>
|
2965
|
+
<div class="refsect2">
|
2966
|
+
<a name="g-cclosure-marshal-STRING--OBJECT-POINTER"></a><h3>g_cclosure_marshal_STRING__OBJECT_POINTER ()</h3>
|
2967
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2968
|
+
g_cclosure_marshal_STRING__OBJECT_POINTER
|
2969
|
+
(<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
2970
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
2971
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
2972
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
2973
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
2974
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
2975
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
2976
|
+
<code class="literal">gchar* (*callback) (gpointer instance, GObject *arg1, gpointer arg2, gpointer user_data)</code>.</p>
|
2977
|
+
<div class="refsect3">
|
2978
|
+
<a name="id-1.4.13.7.50.5"></a><h4>Parameters</h4>
|
2979
|
+
<div class="informaltable"><table width="100%" border="0">
|
2980
|
+
<colgroup>
|
2981
|
+
<col width="150px" class="parameters_name">
|
2982
|
+
<col class="parameters_description">
|
2983
|
+
<col width="200px" class="parameters_annotations">
|
2984
|
+
</colgroup>
|
2985
|
+
<tbody>
|
2986
|
+
<tr>
|
2987
|
+
<td class="parameter_name"><p>closure</p></td>
|
2988
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
2989
|
+
<td class="parameter_annotations"> </td>
|
2990
|
+
</tr>
|
2991
|
+
<tr>
|
2992
|
+
<td class="parameter_name"><p>return_value</p></td>
|
2993
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a>, which can store the returned string</p></td>
|
2994
|
+
<td class="parameter_annotations"> </td>
|
2995
|
+
</tr>
|
2996
|
+
<tr>
|
2997
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
2998
|
+
<td class="parameter_description"><p>3</p></td>
|
2999
|
+
<td class="parameter_annotations"> </td>
|
3000
|
+
</tr>
|
3001
|
+
<tr>
|
3002
|
+
<td class="parameter_name"><p>param_values</p></td>
|
3003
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding instance, arg1 and arg2</p></td>
|
3004
|
+
<td class="parameter_annotations"> </td>
|
3005
|
+
</tr>
|
3006
|
+
<tr>
|
3007
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
3008
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
3009
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
3010
|
+
<td class="parameter_annotations"> </td>
|
3011
|
+
</tr>
|
3012
|
+
<tr>
|
3013
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
3014
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
3015
|
+
<td class="parameter_annotations"> </td>
|
3016
|
+
</tr>
|
3017
|
+
</tbody>
|
3018
|
+
</table></div>
|
3019
|
+
</div>
|
3020
|
+
</div>
|
3021
|
+
<hr>
|
3022
|
+
<div class="refsect2">
|
3023
|
+
<a name="g-cclosure-marshal-VOID--UINT-POINTER"></a><h3>g_cclosure_marshal_VOID__UINT_POINTER ()</h3>
|
3024
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3025
|
+
g_cclosure_marshal_VOID__UINT_POINTER (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3026
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3027
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
3028
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
3029
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
3030
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
3031
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
3032
|
+
<code class="literal">void (*callback) (gpointer instance, guint arg1, gpointer arg2, gpointer user_data)</code>.</p>
|
3033
|
+
<div class="refsect3">
|
3034
|
+
<a name="id-1.4.13.7.51.5"></a><h4>Parameters</h4>
|
3035
|
+
<div class="informaltable"><table width="100%" border="0">
|
3036
|
+
<colgroup>
|
3037
|
+
<col width="150px" class="parameters_name">
|
3038
|
+
<col class="parameters_description">
|
3039
|
+
<col width="200px" class="parameters_annotations">
|
3040
|
+
</colgroup>
|
3041
|
+
<tbody>
|
3042
|
+
<tr>
|
3043
|
+
<td class="parameter_name"><p>closure</p></td>
|
3044
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
3045
|
+
<td class="parameter_annotations"> </td>
|
3046
|
+
</tr>
|
3047
|
+
<tr>
|
3048
|
+
<td class="parameter_name"><p>return_value</p></td>
|
3049
|
+
<td class="parameter_description"><p>ignored</p></td>
|
3050
|
+
<td class="parameter_annotations"> </td>
|
3051
|
+
</tr>
|
3052
|
+
<tr>
|
3053
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
3054
|
+
<td class="parameter_description"><p>3</p></td>
|
3055
|
+
<td class="parameter_annotations"> </td>
|
3056
|
+
</tr>
|
3057
|
+
<tr>
|
3058
|
+
<td class="parameter_name"><p>param_values</p></td>
|
3059
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding instance, arg1 and arg2</p></td>
|
3060
|
+
<td class="parameter_annotations"> </td>
|
3061
|
+
</tr>
|
3062
|
+
<tr>
|
3063
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
3064
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
3065
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
3066
|
+
<td class="parameter_annotations"> </td>
|
3067
|
+
</tr>
|
3068
|
+
<tr>
|
3069
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
3070
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
3071
|
+
<td class="parameter_annotations"> </td>
|
3072
|
+
</tr>
|
3073
|
+
</tbody>
|
3074
|
+
</table></div>
|
3075
|
+
</div>
|
3076
|
+
</div>
|
3077
|
+
<hr>
|
3078
|
+
<div class="refsect2">
|
3079
|
+
<a name="g-cclosure-marshal-BOOLEAN--FLAGS"></a><h3>g_cclosure_marshal_BOOLEAN__FLAGS ()</h3>
|
3080
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3081
|
+
g_cclosure_marshal_BOOLEAN__FLAGS (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3082
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3083
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
3084
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
3085
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
3086
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
3087
|
+
<p>A marshaller for a <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> with a callback of type
|
3088
|
+
<code class="literal">gboolean (*callback) (gpointer instance, gint arg1, gpointer user_data)</code> where the <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> parameter
|
3089
|
+
denotes a flags type.</p>
|
3090
|
+
<div class="refsect3">
|
3091
|
+
<a name="id-1.4.13.7.52.5"></a><h4>Parameters</h4>
|
3092
|
+
<div class="informaltable"><table width="100%" border="0">
|
3093
|
+
<colgroup>
|
3094
|
+
<col width="150px" class="parameters_name">
|
3095
|
+
<col class="parameters_description">
|
3096
|
+
<col width="200px" class="parameters_annotations">
|
3097
|
+
</colgroup>
|
3098
|
+
<tbody>
|
3099
|
+
<tr>
|
3100
|
+
<td class="parameter_name"><p>closure</p></td>
|
3101
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> to which the marshaller belongs</p></td>
|
3102
|
+
<td class="parameter_annotations"> </td>
|
3103
|
+
</tr>
|
3104
|
+
<tr>
|
3105
|
+
<td class="parameter_name"><p>return_value</p></td>
|
3106
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> which can store the returned <a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></p></td>
|
3107
|
+
<td class="parameter_annotations"> </td>
|
3108
|
+
</tr>
|
3109
|
+
<tr>
|
3110
|
+
<td class="parameter_name"><p>n_param_values</p></td>
|
3111
|
+
<td class="parameter_description"><p>2</p></td>
|
3112
|
+
<td class="parameter_annotations"> </td>
|
3113
|
+
</tr>
|
3114
|
+
<tr>
|
3115
|
+
<td class="parameter_name"><p>param_values</p></td>
|
3116
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> array holding instance and arg1</p></td>
|
3117
|
+
<td class="parameter_annotations"> </td>
|
3118
|
+
</tr>
|
3119
|
+
<tr>
|
3120
|
+
<td class="parameter_name"><p>invocation_hint</p></td>
|
3121
|
+
<td class="parameter_description"><p>the invocation hint given as the last argument
|
3122
|
+
to <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
3123
|
+
<td class="parameter_annotations"> </td>
|
3124
|
+
</tr>
|
3125
|
+
<tr>
|
3126
|
+
<td class="parameter_name"><p>marshal_data</p></td>
|
3127
|
+
<td class="parameter_description"><p>additional data specified when registering the marshaller</p></td>
|
3128
|
+
<td class="parameter_annotations"> </td>
|
3129
|
+
</tr>
|
3130
|
+
</tbody>
|
3131
|
+
</table></div>
|
3132
|
+
</div>
|
3133
|
+
</div>
|
3134
|
+
<hr>
|
3135
|
+
<div class="refsect2">
|
3136
|
+
<a name="g-cclosure-marshal-BOOLEAN--BOXED-BOXED"></a><h3>g_cclosure_marshal_BOOLEAN__BOXED_BOXED ()</h3>
|
3137
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3138
|
+
g_cclosure_marshal_BOOLEAN__BOXED_BOXED
|
3139
|
+
(<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3140
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3141
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_param_values</code></em>,
|
3142
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *param_values</code></em>,
|
3143
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> invocation_hint</code></em>,
|
3144
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>);</pre>
|
3145
|
+
</div>
|
3146
|
+
<hr>
|
3147
|
+
<div class="refsect2">
|
3148
|
+
<a name="g-cclosure-marshal-generic-va"></a><h3>g_cclosure_marshal_generic_va ()</h3>
|
3149
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3150
|
+
g_cclosure_marshal_generic_va (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3151
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3152
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3153
|
+
<em class="parameter"><code><span class="type">va_list</span> args_list</code></em>,
|
3154
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3155
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3156
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3157
|
+
</div>
|
3158
|
+
<hr>
|
3159
|
+
<div class="refsect2">
|
3160
|
+
<a name="g-cclosure-marshal-VOID--VOIDv"></a><h3>g_cclosure_marshal_VOID__VOIDv ()</h3>
|
3161
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3162
|
+
g_cclosure_marshal_VOID__VOIDv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3163
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3164
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3165
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3166
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3167
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3168
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3169
|
+
</div>
|
3170
|
+
<hr>
|
3171
|
+
<div class="refsect2">
|
3172
|
+
<a name="g-cclosure-marshal-VOID--BOOLEANv"></a><h3>g_cclosure_marshal_VOID__BOOLEANv ()</h3>
|
3173
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3174
|
+
g_cclosure_marshal_VOID__BOOLEANv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3175
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3176
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3177
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3178
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3179
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3180
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3181
|
+
</div>
|
3182
|
+
<hr>
|
3183
|
+
<div class="refsect2">
|
3184
|
+
<a name="g-cclosure-marshal-VOID--CHARv"></a><h3>g_cclosure_marshal_VOID__CHARv ()</h3>
|
3185
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3186
|
+
g_cclosure_marshal_VOID__CHARv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3187
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3188
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3189
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3190
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3191
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3192
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3193
|
+
</div>
|
3194
|
+
<hr>
|
3195
|
+
<div class="refsect2">
|
3196
|
+
<a name="g-cclosure-marshal-VOID--UCHARv"></a><h3>g_cclosure_marshal_VOID__UCHARv ()</h3>
|
3197
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3198
|
+
g_cclosure_marshal_VOID__UCHARv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3199
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3200
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3201
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3202
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3203
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3204
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3205
|
+
</div>
|
3206
|
+
<hr>
|
3207
|
+
<div class="refsect2">
|
3208
|
+
<a name="g-cclosure-marshal-VOID--INTv"></a><h3>g_cclosure_marshal_VOID__INTv ()</h3>
|
3209
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3210
|
+
g_cclosure_marshal_VOID__INTv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3211
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3212
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3213
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3214
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3215
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3216
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3217
|
+
</div>
|
3218
|
+
<hr>
|
3219
|
+
<div class="refsect2">
|
3220
|
+
<a name="g-cclosure-marshal-VOID--UINTv"></a><h3>g_cclosure_marshal_VOID__UINTv ()</h3>
|
3221
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3222
|
+
g_cclosure_marshal_VOID__UINTv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3223
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3224
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3225
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3226
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3227
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3228
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3229
|
+
</div>
|
3230
|
+
<hr>
|
3231
|
+
<div class="refsect2">
|
3232
|
+
<a name="g-cclosure-marshal-VOID--LONGv"></a><h3>g_cclosure_marshal_VOID__LONGv ()</h3>
|
3233
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3234
|
+
g_cclosure_marshal_VOID__LONGv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3235
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3236
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3237
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3238
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3239
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3240
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3241
|
+
</div>
|
3242
|
+
<hr>
|
3243
|
+
<div class="refsect2">
|
3244
|
+
<a name="g-cclosure-marshal-VOID--ULONGv"></a><h3>g_cclosure_marshal_VOID__ULONGv ()</h3>
|
3245
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3246
|
+
g_cclosure_marshal_VOID__ULONGv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3247
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3248
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3249
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3250
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3251
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3252
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3253
|
+
</div>
|
3254
|
+
<hr>
|
3255
|
+
<div class="refsect2">
|
3256
|
+
<a name="g-cclosure-marshal-VOID--ENUMv"></a><h3>g_cclosure_marshal_VOID__ENUMv ()</h3>
|
3257
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3258
|
+
g_cclosure_marshal_VOID__ENUMv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3259
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3260
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3261
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3262
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3263
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3264
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3265
|
+
</div>
|
3266
|
+
<hr>
|
3267
|
+
<div class="refsect2">
|
3268
|
+
<a name="g-cclosure-marshal-VOID--FLAGSv"></a><h3>g_cclosure_marshal_VOID__FLAGSv ()</h3>
|
3269
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3270
|
+
g_cclosure_marshal_VOID__FLAGSv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3271
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3272
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3273
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3274
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3275
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3276
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3277
|
+
</div>
|
3278
|
+
<hr>
|
3279
|
+
<div class="refsect2">
|
3280
|
+
<a name="g-cclosure-marshal-VOID--FLOATv"></a><h3>g_cclosure_marshal_VOID__FLOATv ()</h3>
|
3281
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3282
|
+
g_cclosure_marshal_VOID__FLOATv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3283
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3284
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3285
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3286
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3287
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3288
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3289
|
+
</div>
|
3290
|
+
<hr>
|
3291
|
+
<div class="refsect2">
|
3292
|
+
<a name="g-cclosure-marshal-VOID--DOUBLEv"></a><h3>g_cclosure_marshal_VOID__DOUBLEv ()</h3>
|
3293
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3294
|
+
g_cclosure_marshal_VOID__DOUBLEv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3295
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3296
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3297
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3298
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3299
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3300
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3301
|
+
</div>
|
3302
|
+
<hr>
|
3303
|
+
<div class="refsect2">
|
3304
|
+
<a name="g-cclosure-marshal-VOID--STRINGv"></a><h3>g_cclosure_marshal_VOID__STRINGv ()</h3>
|
3305
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3306
|
+
g_cclosure_marshal_VOID__STRINGv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3307
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3308
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3309
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3310
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3311
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3312
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3313
|
+
</div>
|
3314
|
+
<hr>
|
3315
|
+
<div class="refsect2">
|
3316
|
+
<a name="g-cclosure-marshal-VOID--PARAMv"></a><h3>g_cclosure_marshal_VOID__PARAMv ()</h3>
|
3317
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3318
|
+
g_cclosure_marshal_VOID__PARAMv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3319
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3320
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3321
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3322
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3323
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3324
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3325
|
+
</div>
|
3326
|
+
<hr>
|
3327
|
+
<div class="refsect2">
|
3328
|
+
<a name="g-cclosure-marshal-VOID--BOXEDv"></a><h3>g_cclosure_marshal_VOID__BOXEDv ()</h3>
|
3329
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3330
|
+
g_cclosure_marshal_VOID__BOXEDv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3331
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3332
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3333
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3334
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3335
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3336
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3337
|
+
</div>
|
3338
|
+
<hr>
|
3339
|
+
<div class="refsect2">
|
3340
|
+
<a name="g-cclosure-marshal-VOID--POINTERv"></a><h3>g_cclosure_marshal_VOID__POINTERv ()</h3>
|
3341
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3342
|
+
g_cclosure_marshal_VOID__POINTERv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3343
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3344
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3345
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3346
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3347
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3348
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3349
|
+
</div>
|
3350
|
+
<hr>
|
3351
|
+
<div class="refsect2">
|
3352
|
+
<a name="g-cclosure-marshal-VOID--OBJECTv"></a><h3>g_cclosure_marshal_VOID__OBJECTv ()</h3>
|
3353
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3354
|
+
g_cclosure_marshal_VOID__OBJECTv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3355
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3356
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3357
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3358
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3359
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3360
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3361
|
+
</div>
|
3362
|
+
<hr>
|
3363
|
+
<div class="refsect2">
|
3364
|
+
<a name="g-cclosure-marshal-VOID--VARIANTv"></a><h3>g_cclosure_marshal_VOID__VARIANTv ()</h3>
|
3365
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3366
|
+
g_cclosure_marshal_VOID__VARIANTv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3367
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3368
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3369
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3370
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3371
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3372
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3373
|
+
</div>
|
3374
|
+
<hr>
|
3375
|
+
<div class="refsect2">
|
3376
|
+
<a name="g-cclosure-marshal-STRING--OBJECT-POINTERv"></a><h3>g_cclosure_marshal_STRING__OBJECT_POINTERv ()</h3>
|
3377
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3378
|
+
g_cclosure_marshal_STRING__OBJECT_POINTERv
|
3379
|
+
(<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3380
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3381
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3382
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3383
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3384
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3385
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3386
|
+
</div>
|
3387
|
+
<hr>
|
3388
|
+
<div class="refsect2">
|
3389
|
+
<a name="g-cclosure-marshal-VOID--UINT-POINTERv"></a><h3>g_cclosure_marshal_VOID__UINT_POINTERv ()</h3>
|
3390
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3391
|
+
g_cclosure_marshal_VOID__UINT_POINTERv
|
3392
|
+
(<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3393
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3394
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3395
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3396
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3397
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3398
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3399
|
+
</div>
|
3400
|
+
<hr>
|
3401
|
+
<div class="refsect2">
|
3402
|
+
<a name="g-cclosure-marshal-BOOLEAN--FLAGSv"></a><h3>g_cclosure_marshal_BOOLEAN__FLAGSv ()</h3>
|
3403
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3404
|
+
g_cclosure_marshal_BOOLEAN__FLAGSv (<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3405
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3406
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3407
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3408
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3409
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3410
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3411
|
+
</div>
|
3412
|
+
<hr>
|
3413
|
+
<div class="refsect2">
|
3414
|
+
<a name="g-cclosure-marshal-BOOLEAN--BOXED-BOXEDv"></a><h3>g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv ()</h3>
|
3415
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3416
|
+
g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv
|
3417
|
+
(<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>,
|
3418
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *return_value</code></em>,
|
3419
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> instance</code></em>,
|
3420
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>,
|
3421
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> marshal_data</code></em>,
|
3422
|
+
<em class="parameter"><code><span class="type">int</span> n_params</code></em>,
|
3423
|
+
<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> *param_types</code></em>);</pre>
|
3424
|
+
</div>
|
3425
|
+
</div>
|
3426
|
+
<div class="refsect1">
|
3427
|
+
<a name="gobject-Closures.other_details"></a><h2>Types and Values</h2>
|
3428
|
+
<div class="refsect2">
|
3429
|
+
<a name="GClosure"></a><h3>struct GClosure</h3>
|
3430
|
+
<pre class="programlisting">struct GClosure {
|
3431
|
+
volatile guint in_marshal : 1;
|
3432
|
+
volatile guint is_invalid : 1;
|
3433
|
+
};
|
3434
|
+
</pre>
|
3435
|
+
<p>A <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> represents a callback supplied by the programmer.</p>
|
3436
|
+
<div class="refsect3">
|
3437
|
+
<a name="id-1.4.13.8.2.5"></a><h4>Members</h4>
|
3438
|
+
<div class="informaltable"><table width="100%" border="0">
|
3439
|
+
<colgroup>
|
3440
|
+
<col width="300px" class="struct_members_name">
|
3441
|
+
<col class="struct_members_description">
|
3442
|
+
<col width="200px" class="struct_members_annotations">
|
3443
|
+
</colgroup>
|
3444
|
+
<tbody>
|
3445
|
+
<tr>
|
3446
|
+
<td class="struct_member_name"><p>volatile <a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GClosure.in-marshal"></a>in_marshal</code></em> : 1;</p></td>
|
3447
|
+
<td class="struct_member_description"><p>Indicates whether the closure is currently being invoked with
|
3448
|
+
<a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()"><code class="function">g_closure_invoke()</code></a></p></td>
|
3449
|
+
<td class="struct_member_annotations"> </td>
|
3450
|
+
</tr>
|
3451
|
+
<tr>
|
3452
|
+
<td class="struct_member_name"><p>volatile <a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GClosure.is-invalid"></a>is_invalid</code></em> : 1;</p></td>
|
3453
|
+
<td class="struct_member_description"><p>Indicates whether the closure has been invalidated by
|
3454
|
+
<a class="link" href="gobject-Closures.html#g-closure-invalidate" title="g_closure_invalidate ()"><code class="function">g_closure_invalidate()</code></a></p></td>
|
3455
|
+
<td class="struct_member_annotations"> </td>
|
3456
|
+
</tr>
|
3457
|
+
</tbody>
|
3458
|
+
</table></div>
|
3459
|
+
</div>
|
3460
|
+
</div>
|
3461
|
+
<hr>
|
3462
|
+
<div class="refsect2">
|
3463
|
+
<a name="GCClosure"></a><h3>struct GCClosure</h3>
|
3464
|
+
<pre class="programlisting">struct GCClosure {
|
3465
|
+
GClosure closure;
|
3466
|
+
gpointer callback;
|
3467
|
+
};
|
3468
|
+
</pre>
|
3469
|
+
<p>A <a class="link" href="gobject-Closures.html#GCClosure" title="struct GCClosure"><span class="type">GCClosure</span></a> is a specialization of <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> for C function callbacks.</p>
|
3470
|
+
<div class="refsect3">
|
3471
|
+
<a name="id-1.4.13.8.3.5"></a><h4>Members</h4>
|
3472
|
+
<div class="informaltable"><table width="100%" border="0">
|
3473
|
+
<colgroup>
|
3474
|
+
<col width="300px" class="struct_members_name">
|
3475
|
+
<col class="struct_members_description">
|
3476
|
+
<col width="200px" class="struct_members_annotations">
|
3477
|
+
</colgroup>
|
3478
|
+
<tbody>
|
3479
|
+
<tr>
|
3480
|
+
<td class="struct_member_name"><p><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> <em class="structfield"><code><a name="GCClosure.closure"></a>closure</code></em>;</p></td>
|
3481
|
+
<td class="struct_member_description"><p>the <a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a></p></td>
|
3482
|
+
<td class="struct_member_annotations"> </td>
|
3483
|
+
</tr>
|
3484
|
+
<tr>
|
3485
|
+
<td class="struct_member_name"><p><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> <em class="structfield"><code><a name="GCClosure.callback"></a>callback</code></em>;</p></td>
|
3486
|
+
<td class="struct_member_description"><p>the callback function</p></td>
|
3487
|
+
<td class="struct_member_annotations"> </td>
|
3488
|
+
</tr>
|
3489
|
+
</tbody>
|
3490
|
+
</table></div>
|
3491
|
+
</div>
|
3492
|
+
</div>
|
3493
|
+
<hr>
|
3494
|
+
<div class="refsect2">
|
3495
|
+
<a name="g-cclosure-marshal-BOOL--FLAGS"></a><h3>g_cclosure_marshal_BOOL__FLAGS</h3>
|
3496
|
+
<pre class="programlisting">#define g_cclosure_marshal_BOOL__FLAGS</pre>
|
3497
|
+
<p>Another name for <a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOLEAN--FLAGS" title="g_cclosure_marshal_BOOLEAN__FLAGS ()"><code class="function">g_cclosure_marshal_BOOLEAN__FLAGS()</code></a>.</p>
|
3498
|
+
</div>
|
3499
|
+
<hr>
|
3500
|
+
<div class="refsect2">
|
3501
|
+
<a name="g-cclosure-marshal-BOOL--BOXED-BOXED"></a><h3>g_cclosure_marshal_BOOL__BOXED_BOXED</h3>
|
3502
|
+
<pre class="programlisting">#define g_cclosure_marshal_BOOL__BOXED_BOXED</pre>
|
3503
|
+
</div>
|
3504
|
+
</div>
|
3505
|
+
</div>
|
3506
|
+
<div class="footer">
|
3507
|
+
<hr>
|
3508
|
+
Generated by GTK-Doc V1.21.1</div>
|
3509
|
+
</body>
|
3510
|
+
</html>
|