glib2 0.90.2-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +3115 -0
- data/README +40 -0
- data/Rakefile +69 -0
- data/ext/glib2/depend +10 -0
- data/ext/glib2/extconf.rb +61 -0
- data/ext/glib2/glib2.def +89 -0
- data/ext/glib2/rbgcompat.h +30 -0
- data/ext/glib2/rbglib.c +330 -0
- data/ext/glib2/rbglib.h +96 -0
- data/ext/glib2/rbglib_bookmarkfile.c +595 -0
- data/ext/glib2/rbglib_completion.c +192 -0
- data/ext/glib2/rbglib_convert.c +195 -0
- data/ext/glib2/rbglib_error.c +95 -0
- data/ext/glib2/rbglib_fileutils.c +83 -0
- data/ext/glib2/rbglib_i18n.c +44 -0
- data/ext/glib2/rbglib_int64.c +157 -0
- data/ext/glib2/rbglib_iochannel.c +883 -0
- data/ext/glib2/rbglib_keyfile.c +846 -0
- data/ext/glib2/rbglib_maincontext.c +915 -0
- data/ext/glib2/rbglib_mainloop.c +87 -0
- data/ext/glib2/rbglib_messages.c +150 -0
- data/ext/glib2/rbglib_pollfd.c +111 -0
- data/ext/glib2/rbglib_shell.c +68 -0
- data/ext/glib2/rbglib_source.c +190 -0
- data/ext/glib2/rbglib_spawn.c +345 -0
- data/ext/glib2/rbglib_threads.c +51 -0
- data/ext/glib2/rbglib_timer.c +127 -0
- data/ext/glib2/rbglib_unicode.c +611 -0
- data/ext/glib2/rbglib_utils.c +386 -0
- data/ext/glib2/rbglib_win32.c +136 -0
- data/ext/glib2/rbgobj_boxed.c +251 -0
- data/ext/glib2/rbgobj_closure.c +337 -0
- data/ext/glib2/rbgobj_convert.c +167 -0
- data/ext/glib2/rbgobj_enums.c +961 -0
- data/ext/glib2/rbgobj_fundamental.c +30 -0
- data/ext/glib2/rbgobj_object.c +892 -0
- data/ext/glib2/rbgobj_param.c +390 -0
- data/ext/glib2/rbgobj_paramspecs.c +305 -0
- data/ext/glib2/rbgobj_signal.c +963 -0
- data/ext/glib2/rbgobj_strv.c +61 -0
- data/ext/glib2/rbgobj_type.c +851 -0
- data/ext/glib2/rbgobj_typeinstance.c +121 -0
- data/ext/glib2/rbgobj_typeinterface.c +148 -0
- data/ext/glib2/rbgobj_typemodule.c +66 -0
- data/ext/glib2/rbgobj_typeplugin.c +49 -0
- data/ext/glib2/rbgobj_value.c +313 -0
- data/ext/glib2/rbgobj_valuearray.c +59 -0
- data/ext/glib2/rbgobj_valuetypes.c +298 -0
- data/ext/glib2/rbgobject.c +406 -0
- data/ext/glib2/rbgobject.h +265 -0
- data/ext/glib2/rbgprivate.h +88 -0
- data/ext/glib2/rbgutil.c +316 -0
- data/ext/glib2/rbgutil.h +82 -0
- data/ext/glib2/rbgutil_callback.c +231 -0
- data/extconf.rb +49 -0
- data/lib/1.8/glib2.so +0 -0
- data/lib/1.9/glib2.so +0 -0
- data/lib/glib-mkenums.rb +199 -0
- data/lib/glib2.rb +239 -0
- data/lib/gnome2-win32-binary-downloader.rb +92 -0
- data/lib/mkmf-gnome2.rb +377 -0
- data/sample/bookmarkfile.rb +66 -0
- data/sample/completion.rb +45 -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 +6 -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 +15 -0
- data/test/test_glib2.rb +120 -0
- data/test/test_iochannel.rb +275 -0
- data/test/test_key_file.rb +38 -0
- data/test/test_mkenums.rb +25 -0
- data/test/test_signal.rb +20 -0
- data/test/test_timeout.rb +28 -0
- data/test/test_unicode.rb +369 -0
- data/test/test_utils.rb +37 -0
- data/test/test_win32.rb +13 -0
- data/test-unit/COPYING +56 -0
- data/test-unit/GPL +340 -0
- data/test-unit/History.txt +232 -0
- data/test-unit/Manifest.txt +110 -0
- data/test-unit/PSFL +271 -0
- data/test-unit/README.txt +75 -0
- data/test-unit/Rakefile +53 -0
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +5 -0
- data/test-unit/html/bar.png +0 -0
- data/test-unit/html/bar.svg +153 -0
- data/test-unit/html/developer.png +0 -0
- data/test-unit/html/developer.svg +469 -0
- data/test-unit/html/famfamfam-logo.png +0 -0
- data/test-unit/html/favicon.ico +0 -0
- data/test-unit/html/favicon.png +0 -0
- data/test-unit/html/favicon.svg +82 -0
- data/test-unit/html/heading-mark.png +0 -0
- data/test-unit/html/heading-mark.svg +393 -0
- data/test-unit/html/index.html +247 -0
- data/test-unit/html/index.html.ja +270 -0
- data/test-unit/html/install.png +0 -0
- data/test-unit/html/install.svg +636 -0
- data/test-unit/html/jp.png +0 -0
- data/test-unit/html/kinotan-failure.png +0 -0
- data/test-unit/html/kinotan-pass.png +0 -0
- data/test-unit/html/logo.png +0 -0
- data/test-unit/html/logo.svg +483 -0
- data/test-unit/html/reference.png +0 -0
- data/test-unit/html/rubyforge.png +0 -0
- data/test-unit/html/tango-logo.png +0 -0
- data/test-unit/html/test-unit.css +339 -0
- data/test-unit/html/tutorial.png +0 -0
- data/test-unit/html/tutorial.svg +559 -0
- data/test-unit/html/us.png +0 -0
- data/test-unit/images/color-diff.png +0 -0
- data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
- data/test-unit/lib/test/unit/assertions.rb +1334 -0
- data/test-unit/lib/test/unit/attribute.rb +125 -0
- data/test-unit/lib/test/unit/autorunner.rb +363 -0
- data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
- data/test-unit/lib/test/unit/collector/dir.rb +108 -0
- data/test-unit/lib/test/unit/collector/load.rb +144 -0
- data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
- data/test-unit/lib/test/unit/collector.rb +36 -0
- data/test-unit/lib/test/unit/color-scheme.rb +106 -0
- data/test-unit/lib/test/unit/color.rb +96 -0
- data/test-unit/lib/test/unit/diff.rb +740 -0
- data/test-unit/lib/test/unit/error.rb +130 -0
- data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
- data/test-unit/lib/test/unit/failure.rb +136 -0
- data/test-unit/lib/test/unit/fixture.rb +176 -0
- data/test-unit/lib/test/unit/notification.rb +129 -0
- data/test-unit/lib/test/unit/omission.rb +191 -0
- data/test-unit/lib/test/unit/pending.rb +150 -0
- data/test-unit/lib/test/unit/priority.rb +180 -0
- data/test-unit/lib/test/unit/runner/console.rb +52 -0
- data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
- data/test-unit/lib/test/unit/runner/tap.rb +8 -0
- data/test-unit/lib/test/unit/testcase.rb +483 -0
- data/test-unit/lib/test/unit/testresult.rb +121 -0
- data/test-unit/lib/test/unit/testsuite.rb +110 -0
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +430 -0
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
- data/test-unit/lib/test/unit/ui/tap/testrunner.rb +82 -0
- data/test-unit/lib/test/unit/ui/testrunner.rb +53 -0
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/test-unit/lib/test/unit/util/backtracefilter.rb +42 -0
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/util/observable.rb +90 -0
- data/test-unit/lib/test/unit/util/output.rb +31 -0
- data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
- data/test-unit/lib/test/unit/version.rb +7 -0
- data/test-unit/lib/test/unit.rb +328 -0
- data/test-unit/sample/adder.rb +13 -0
- data/test-unit/sample/subtracter.rb +12 -0
- data/test-unit/sample/test_adder.rb +20 -0
- data/test-unit/sample/test_subtracter.rb +20 -0
- data/test-unit/sample/test_user.rb +23 -0
- data/test-unit/test/collector/test-descendant.rb +133 -0
- data/test-unit/test/collector/test-load.rb +442 -0
- data/test-unit/test/collector/test_dir.rb +406 -0
- data/test-unit/test/collector/test_objectspace.rb +100 -0
- data/test-unit/test/run-test.rb +15 -0
- data/test-unit/test/test-attribute.rb +86 -0
- data/test-unit/test/test-color-scheme.rb +69 -0
- data/test-unit/test/test-color.rb +47 -0
- data/test-unit/test/test-diff.rb +518 -0
- data/test-unit/test/test-emacs-runner.rb +60 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/test-notification.rb +33 -0
- data/test-unit/test/test-omission.rb +81 -0
- data/test-unit/test/test-pending.rb +70 -0
- data/test-unit/test/test-priority.rb +119 -0
- data/test-unit/test/test-testcase.rb +544 -0
- data/test-unit/test/test_assertions.rb +1197 -0
- data/test-unit/test/test_error.rb +26 -0
- data/test-unit/test/test_failure.rb +33 -0
- data/test-unit/test/test_testresult.rb +113 -0
- data/test-unit/test/test_testsuite.rb +129 -0
- data/test-unit/test/testunit-test-util.rb +14 -0
- data/test-unit/test/ui/test_tap.rb +33 -0
- data/test-unit/test/ui/test_testrunmediator.rb +20 -0
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test-unit/test/util/test-output.rb +11 -0
- data/test-unit/test/util/test_backtracefilter.rb +41 -0
- data/test-unit/test/util/test_observable.rb +102 -0
- data/test-unit/test/util/test_procwrapper.rb +36 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +123 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +188 -0
- data/vendor/local/bin/glib-mkenums +511 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
- data/vendor/local/bin/intl.dll +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libgcc_s_dw2-1.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/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/include/autosprintf.h +66 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -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/gdatainputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
- data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
- data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
- data/vendor/local/include/glib-2.0/glib-object.h +41 -0
- data/vendor/local/include/glib-2.0/glib.h +97 -0
- data/vendor/local/include/glib-2.0/gmodule.h +101 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/lib/GNU.Gettext.dll +0 -0
- data/vendor/local/lib/gio-2.0.def +800 -0
- data/vendor/local/lib/gio-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
- data/vendor/local/lib/glib-2.0.def +1381 -0
- data/vendor/local/lib/glib-2.0.lib +0 -0
- data/vendor/local/lib/gmodule-2.0.def +11 -0
- data/vendor/local/lib/gmodule-2.0.lib +0 -0
- data/vendor/local/lib/gobject-2.0.def +349 -0
- data/vendor/local/lib/gobject-2.0.lib +0 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/gthread-2.0.lib +0 -0
- data/vendor/local/lib/intl.lib +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libintl.def +31 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
- data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
- data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
- data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -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 +213 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
- data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
- data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -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/gio-Desktop-file-based-GAppInfo.html +339 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -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 +47 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +41 -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/api-index-2-10.html +180 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -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 +893 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -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 +159 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -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.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -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 +355 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -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 +406 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -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 +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -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 +100 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -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 +66 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -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 +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -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/ar/LC_MESSAGES/glib20.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/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/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/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/glib20.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/glib20.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/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/glib20.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/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.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/glib20.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/glib20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.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/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.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/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.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/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.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/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/glib20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.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/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/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +77 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.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/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.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/nb/LC_MESSAGES/gettext-runtime.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/glib20.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/glib20.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/glib20.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/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/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/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/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/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/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/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/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/glib20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.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/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/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/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.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/glib20.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/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/glib20.mo +0 -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/glib-genmarshal.1 +307 -0
- data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
- data/vendor/local/share/man/man1/gobject-query.1 +83 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -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/gettext.3 +99 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
- data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
- metadata +940 -0
@@ -0,0 +1,2717 @@
|
|
1
|
+
<ANCHOR id="glib-building" href="glib/glib-building.html">
|
2
|
+
<ANCHOR id="building" href="glib/glib-building.html#building">
|
3
|
+
<ANCHOR id="dependencies" href="glib/glib-building.html#dependencies">
|
4
|
+
<ANCHOR id="extra-configuration-options" href="glib/glib-building.html#extra-configuration-options">
|
5
|
+
<ANCHOR id="glib-cross-compiling" href="glib/glib-cross-compiling.html">
|
6
|
+
<ANCHOR id="cross" href="glib/glib-cross-compiling.html#cross">
|
7
|
+
<ANCHOR id="cache-file-variables" href="glib/glib-cross-compiling.html#cache-file-variables">
|
8
|
+
<ANCHOR id="glib-compiling" href="glib/glib-compiling.html">
|
9
|
+
<ANCHOR id="glib-running" href="glib/glib-running.html">
|
10
|
+
<ANCHOR id="setlocale" href="glib/glib-running.html#setlocale">
|
11
|
+
<ANCHOR id="glib-changes" href="glib/glib-changes.html">
|
12
|
+
<ANCHOR id="glib-regex-syntax" href="glib/glib-regex-syntax.html">
|
13
|
+
<ANCHOR id="glib-resources" href="glib/glib-resources.html">
|
14
|
+
<ANCHOR id="glib-Version-Information" href="glib/glib-Version-Information.html">
|
15
|
+
<ANCHOR id="glib-Version-Information.synopsis" href="glib/glib-Version-Information.html#glib-Version-Information.synopsis">
|
16
|
+
<ANCHOR id="glib-Version-Information.description" href="glib/glib-Version-Information.html#glib-Version-Information.description">
|
17
|
+
<ANCHOR id="glib-Version-Information.details" href="glib/glib-Version-Information.html#glib-Version-Information.details">
|
18
|
+
<ANCHOR id="GLIB-MAJOR-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-MAJOR-VERSION:CAPS">
|
19
|
+
<ANCHOR id="GLIB-MINOR-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-MINOR-VERSION:CAPS">
|
20
|
+
<ANCHOR id="GLIB-MICRO-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-MICRO-VERSION:CAPS">
|
21
|
+
<ANCHOR id="GLIB-CHECK-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-CHECK-VERSION:CAPS">
|
22
|
+
<ANCHOR id="glib-Basic-Types" href="glib/glib-Basic-Types.html">
|
23
|
+
<ANCHOR id="glib-Basic-Types.synopsis" href="glib/glib-Basic-Types.html#glib-Basic-Types.synopsis">
|
24
|
+
<ANCHOR id="glib-Basic-Types.description" href="glib/glib-Basic-Types.html#glib-Basic-Types.description">
|
25
|
+
<ANCHOR id="glib-Basic-Types.details" href="glib/glib-Basic-Types.html#glib-Basic-Types.details">
|
26
|
+
<ANCHOR id="gboolean" href="glib/glib-Basic-Types.html#gboolean">
|
27
|
+
<ANCHOR id="gpointer" href="glib/glib-Basic-Types.html#gpointer">
|
28
|
+
<ANCHOR id="gconstpointer" href="glib/glib-Basic-Types.html#gconstpointer">
|
29
|
+
<ANCHOR id="gchar" href="glib/glib-Basic-Types.html#gchar">
|
30
|
+
<ANCHOR id="guchar" href="glib/glib-Basic-Types.html#guchar">
|
31
|
+
<ANCHOR id="gint" href="glib/glib-Basic-Types.html#gint">
|
32
|
+
<ANCHOR id="guint" href="glib/glib-Basic-Types.html#guint">
|
33
|
+
<ANCHOR id="gshort" href="glib/glib-Basic-Types.html#gshort">
|
34
|
+
<ANCHOR id="gushort" href="glib/glib-Basic-Types.html#gushort">
|
35
|
+
<ANCHOR id="glong" href="glib/glib-Basic-Types.html#glong">
|
36
|
+
<ANCHOR id="gulong" href="glib/glib-Basic-Types.html#gulong">
|
37
|
+
<ANCHOR id="gint8" href="glib/glib-Basic-Types.html#gint8">
|
38
|
+
<ANCHOR id="guint8" href="glib/glib-Basic-Types.html#guint8">
|
39
|
+
<ANCHOR id="gint16" href="glib/glib-Basic-Types.html#gint16">
|
40
|
+
<ANCHOR id="guint16" href="glib/glib-Basic-Types.html#guint16">
|
41
|
+
<ANCHOR id="gint32" href="glib/glib-Basic-Types.html#gint32">
|
42
|
+
<ANCHOR id="guint32" href="glib/glib-Basic-Types.html#guint32">
|
43
|
+
<ANCHOR id="G-HAVE-GINT64:CAPS" href="glib/glib-Basic-Types.html#G-HAVE-GINT64:CAPS">
|
44
|
+
<ANCHOR id="gint64" href="glib/glib-Basic-Types.html#gint64">
|
45
|
+
<ANCHOR id="guint64" href="glib/glib-Basic-Types.html#guint64">
|
46
|
+
<ANCHOR id="G-GINT64-CONSTANT:CAPS" href="glib/glib-Basic-Types.html#G-GINT64-CONSTANT:CAPS">
|
47
|
+
<ANCHOR id="G-GUINT64-CONSTANT:CAPS" href="glib/glib-Basic-Types.html#G-GUINT64-CONSTANT:CAPS">
|
48
|
+
<ANCHOR id="gfloat" href="glib/glib-Basic-Types.html#gfloat">
|
49
|
+
<ANCHOR id="gdouble" href="glib/glib-Basic-Types.html#gdouble">
|
50
|
+
<ANCHOR id="gsize" href="glib/glib-Basic-Types.html#gsize">
|
51
|
+
<ANCHOR id="gssize" href="glib/glib-Basic-Types.html#gssize">
|
52
|
+
<ANCHOR id="goffset" href="glib/glib-Basic-Types.html#goffset">
|
53
|
+
<ANCHOR id="G-GOFFSET-CONSTANT:CAPS" href="glib/glib-Basic-Types.html#G-GOFFSET-CONSTANT:CAPS">
|
54
|
+
<ANCHOR id="gintptr" href="glib/glib-Basic-Types.html#gintptr">
|
55
|
+
<ANCHOR id="guintptr" href="glib/glib-Basic-Types.html#guintptr">
|
56
|
+
<ANCHOR id="glib-Limits-of-Basic-Types" href="glib/glib-Limits-of-Basic-Types.html">
|
57
|
+
<ANCHOR id="glib-Limits-of-Basic-Types.synopsis" href="glib/glib-Limits-of-Basic-Types.html#glib-Limits-of-Basic-Types.synopsis">
|
58
|
+
<ANCHOR id="glib-Limits-of-Basic-Types.description" href="glib/glib-Limits-of-Basic-Types.html#glib-Limits-of-Basic-Types.description">
|
59
|
+
<ANCHOR id="glib-Limits-of-Basic-Types.details" href="glib/glib-Limits-of-Basic-Types.html#glib-Limits-of-Basic-Types.details">
|
60
|
+
<ANCHOR id="G-MININT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MININT:CAPS">
|
61
|
+
<ANCHOR id="G-MAXINT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXINT:CAPS">
|
62
|
+
<ANCHOR id="G-MAXUINT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXUINT:CAPS">
|
63
|
+
<ANCHOR id="G-MINSHORT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MINSHORT:CAPS">
|
64
|
+
<ANCHOR id="G-MAXSHORT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXSHORT:CAPS">
|
65
|
+
<ANCHOR id="G-MAXUSHORT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXUSHORT:CAPS">
|
66
|
+
<ANCHOR id="G-MINLONG:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MINLONG:CAPS">
|
67
|
+
<ANCHOR id="G-MAXLONG:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXLONG:CAPS">
|
68
|
+
<ANCHOR id="G-MAXULONG:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXULONG:CAPS">
|
69
|
+
<ANCHOR id="G-MININT8:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MININT8:CAPS">
|
70
|
+
<ANCHOR id="G-MAXINT8:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXINT8:CAPS">
|
71
|
+
<ANCHOR id="G-MAXUINT8:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXUINT8:CAPS">
|
72
|
+
<ANCHOR id="G-MININT16:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MININT16:CAPS">
|
73
|
+
<ANCHOR id="G-MAXINT16:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXINT16:CAPS">
|
74
|
+
<ANCHOR id="G-MAXUINT16:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXUINT16:CAPS">
|
75
|
+
<ANCHOR id="G-MININT32:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MININT32:CAPS">
|
76
|
+
<ANCHOR id="G-MAXINT32:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXINT32:CAPS">
|
77
|
+
<ANCHOR id="G-MAXUINT32:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXUINT32:CAPS">
|
78
|
+
<ANCHOR id="G-MININT64:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MININT64:CAPS">
|
79
|
+
<ANCHOR id="G-MAXINT64:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXINT64:CAPS">
|
80
|
+
<ANCHOR id="G-MAXUINT64:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXUINT64:CAPS">
|
81
|
+
<ANCHOR id="G-MAXSIZE:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXSIZE:CAPS">
|
82
|
+
<ANCHOR id="G-MINSSIZE:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MINSSIZE:CAPS">
|
83
|
+
<ANCHOR id="G-MAXSSIZE:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXSSIZE:CAPS">
|
84
|
+
<ANCHOR id="G-MINOFFSET:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MINOFFSET:CAPS">
|
85
|
+
<ANCHOR id="G-MAXOFFSET:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXOFFSET:CAPS">
|
86
|
+
<ANCHOR id="G-MINFLOAT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MINFLOAT:CAPS">
|
87
|
+
<ANCHOR id="G-MAXFLOAT:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXFLOAT:CAPS">
|
88
|
+
<ANCHOR id="G-MINDOUBLE:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MINDOUBLE:CAPS">
|
89
|
+
<ANCHOR id="G-MAXDOUBLE:CAPS" href="glib/glib-Limits-of-Basic-Types.html#G-MAXDOUBLE:CAPS">
|
90
|
+
<ANCHOR id="glib-Standard-Macros" href="glib/glib-Standard-Macros.html">
|
91
|
+
<ANCHOR id="glib-Standard-Macros.synopsis" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.synopsis">
|
92
|
+
<ANCHOR id="glib-Standard-Macros.description" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.description">
|
93
|
+
<ANCHOR id="glib-Standard-Macros.details" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.details">
|
94
|
+
<ANCHOR id="G-OS-WIN32:CAPS" href="glib/glib-Standard-Macros.html#G-OS-WIN32:CAPS">
|
95
|
+
<ANCHOR id="G-OS-BEOS:CAPS" href="glib/glib-Standard-Macros.html#G-OS-BEOS:CAPS">
|
96
|
+
<ANCHOR id="G-OS-UNIX:CAPS" href="glib/glib-Standard-Macros.html#G-OS-UNIX:CAPS">
|
97
|
+
<ANCHOR id="G-DIR-SEPARATOR:CAPS" href="glib/glib-Standard-Macros.html#G-DIR-SEPARATOR:CAPS">
|
98
|
+
<ANCHOR id="G-DIR-SEPARATOR-S:CAPS" href="glib/glib-Standard-Macros.html#G-DIR-SEPARATOR-S:CAPS">
|
99
|
+
<ANCHOR id="G-IS-DIR-SEPARATOR:CAPS" href="glib/glib-Standard-Macros.html#G-IS-DIR-SEPARATOR:CAPS">
|
100
|
+
<ANCHOR id="G-SEARCHPATH-SEPARATOR:CAPS" href="glib/glib-Standard-Macros.html#G-SEARCHPATH-SEPARATOR:CAPS">
|
101
|
+
<ANCHOR id="G-SEARCHPATH-SEPARATOR-S:CAPS" href="glib/glib-Standard-Macros.html#G-SEARCHPATH-SEPARATOR-S:CAPS">
|
102
|
+
<ANCHOR id="TRUE:CAPS" href="glib/glib-Standard-Macros.html#TRUE:CAPS">
|
103
|
+
<ANCHOR id="FALSE:CAPS" href="glib/glib-Standard-Macros.html#FALSE:CAPS">
|
104
|
+
<ANCHOR id="NULL:CAPS" href="glib/glib-Standard-Macros.html#NULL:CAPS">
|
105
|
+
<ANCHOR id="MIN:CAPS" href="glib/glib-Standard-Macros.html#MIN:CAPS">
|
106
|
+
<ANCHOR id="MAX:CAPS" href="glib/glib-Standard-Macros.html#MAX:CAPS">
|
107
|
+
<ANCHOR id="ABS:CAPS" href="glib/glib-Standard-Macros.html#ABS:CAPS">
|
108
|
+
<ANCHOR id="CLAMP:CAPS" href="glib/glib-Standard-Macros.html#CLAMP:CAPS">
|
109
|
+
<ANCHOR id="G-STRUCT-MEMBER:CAPS" href="glib/glib-Standard-Macros.html#G-STRUCT-MEMBER:CAPS">
|
110
|
+
<ANCHOR id="G-STRUCT-MEMBER-P:CAPS" href="glib/glib-Standard-Macros.html#G-STRUCT-MEMBER-P:CAPS">
|
111
|
+
<ANCHOR id="G-STRUCT-OFFSET:CAPS" href="glib/glib-Standard-Macros.html#G-STRUCT-OFFSET:CAPS">
|
112
|
+
<ANCHOR id="G-MEM-ALIGN:CAPS" href="glib/glib-Standard-Macros.html#G-MEM-ALIGN:CAPS">
|
113
|
+
<ANCHOR id="G-CONST-RETURN:CAPS" href="glib/glib-Standard-Macros.html#G-CONST-RETURN:CAPS">
|
114
|
+
<ANCHOR id="glib-Type-Conversion-Macros" href="glib/glib-Type-Conversion-Macros.html">
|
115
|
+
<ANCHOR id="glib-Type-Conversion-Macros.synopsis" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.synopsis">
|
116
|
+
<ANCHOR id="glib-Type-Conversion-Macros.description" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.description">
|
117
|
+
<ANCHOR id="glib-Type-Conversion-Macros.details" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.details">
|
118
|
+
<ANCHOR id="GINT-TO-POINTER:CAPS" href="glib/glib-Type-Conversion-Macros.html#GINT-TO-POINTER:CAPS">
|
119
|
+
<ANCHOR id="GPOINTER-TO-INT:CAPS" href="glib/glib-Type-Conversion-Macros.html#GPOINTER-TO-INT:CAPS">
|
120
|
+
<ANCHOR id="GUINT-TO-POINTER:CAPS" href="glib/glib-Type-Conversion-Macros.html#GUINT-TO-POINTER:CAPS">
|
121
|
+
<ANCHOR id="GPOINTER-TO-UINT:CAPS" href="glib/glib-Type-Conversion-Macros.html#GPOINTER-TO-UINT:CAPS">
|
122
|
+
<ANCHOR id="GSIZE-TO-POINTER:CAPS" href="glib/glib-Type-Conversion-Macros.html#GSIZE-TO-POINTER:CAPS">
|
123
|
+
<ANCHOR id="GPOINTER-TO-SIZE:CAPS" href="glib/glib-Type-Conversion-Macros.html#GPOINTER-TO-SIZE:CAPS">
|
124
|
+
<ANCHOR id="glib-Byte-Order-Macros" href="glib/glib-Byte-Order-Macros.html">
|
125
|
+
<ANCHOR id="glib-Byte-Order-Macros.synopsis" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.synopsis">
|
126
|
+
<ANCHOR id="glib-Byte-Order-Macros.description" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.description">
|
127
|
+
<ANCHOR id="glib-Byte-Order-Macros.details" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.details">
|
128
|
+
<ANCHOR id="G-BYTE-ORDER:CAPS" href="glib/glib-Byte-Order-Macros.html#G-BYTE-ORDER:CAPS">
|
129
|
+
<ANCHOR id="G-LITTLE-ENDIAN:CAPS" href="glib/glib-Byte-Order-Macros.html#G-LITTLE-ENDIAN:CAPS">
|
130
|
+
<ANCHOR id="G-BIG-ENDIAN:CAPS" href="glib/glib-Byte-Order-Macros.html#G-BIG-ENDIAN:CAPS">
|
131
|
+
<ANCHOR id="G-PDP-ENDIAN:CAPS" href="glib/glib-Byte-Order-Macros.html#G-PDP-ENDIAN:CAPS">
|
132
|
+
<ANCHOR id="g-htonl" href="glib/glib-Byte-Order-Macros.html#g-htonl">
|
133
|
+
<ANCHOR id="g-htons" href="glib/glib-Byte-Order-Macros.html#g-htons">
|
134
|
+
<ANCHOR id="g-ntohl" href="glib/glib-Byte-Order-Macros.html#g-ntohl">
|
135
|
+
<ANCHOR id="g-ntohs" href="glib/glib-Byte-Order-Macros.html#g-ntohs">
|
136
|
+
<ANCHOR id="GINT-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-FROM-BE:CAPS">
|
137
|
+
<ANCHOR id="GINT-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-FROM-LE:CAPS">
|
138
|
+
<ANCHOR id="GINT-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-TO-BE:CAPS">
|
139
|
+
<ANCHOR id="GINT-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-TO-LE:CAPS">
|
140
|
+
<ANCHOR id="GUINT-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-FROM-BE:CAPS">
|
141
|
+
<ANCHOR id="GUINT-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-FROM-LE:CAPS">
|
142
|
+
<ANCHOR id="GUINT-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-TO-BE:CAPS">
|
143
|
+
<ANCHOR id="GUINT-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-TO-LE:CAPS">
|
144
|
+
<ANCHOR id="GLONG-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-FROM-BE:CAPS">
|
145
|
+
<ANCHOR id="GLONG-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-FROM-LE:CAPS">
|
146
|
+
<ANCHOR id="GLONG-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-TO-BE:CAPS">
|
147
|
+
<ANCHOR id="GLONG-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-TO-LE:CAPS">
|
148
|
+
<ANCHOR id="GULONG-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-FROM-BE:CAPS">
|
149
|
+
<ANCHOR id="GULONG-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-FROM-LE:CAPS">
|
150
|
+
<ANCHOR id="GULONG-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-TO-BE:CAPS">
|
151
|
+
<ANCHOR id="GULONG-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-TO-LE:CAPS">
|
152
|
+
<ANCHOR id="GSIZE-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-FROM-BE:CAPS">
|
153
|
+
<ANCHOR id="GSIZE-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-FROM-LE:CAPS">
|
154
|
+
<ANCHOR id="GSIZE-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-TO-BE:CAPS">
|
155
|
+
<ANCHOR id="GSIZE-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-TO-LE:CAPS">
|
156
|
+
<ANCHOR id="GSSIZE-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-FROM-BE:CAPS">
|
157
|
+
<ANCHOR id="GSSIZE-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-FROM-LE:CAPS">
|
158
|
+
<ANCHOR id="GSSIZE-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-TO-BE:CAPS">
|
159
|
+
<ANCHOR id="GSSIZE-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-TO-LE:CAPS">
|
160
|
+
<ANCHOR id="GINT16-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-FROM-BE:CAPS">
|
161
|
+
<ANCHOR id="GINT16-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-FROM-LE:CAPS">
|
162
|
+
<ANCHOR id="GINT16-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-TO-BE:CAPS">
|
163
|
+
<ANCHOR id="GINT16-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-TO-LE:CAPS">
|
164
|
+
<ANCHOR id="GUINT16-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-FROM-BE:CAPS">
|
165
|
+
<ANCHOR id="GUINT16-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-FROM-LE:CAPS">
|
166
|
+
<ANCHOR id="GUINT16-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-TO-BE:CAPS">
|
167
|
+
<ANCHOR id="GUINT16-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-TO-LE:CAPS">
|
168
|
+
<ANCHOR id="GINT32-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-FROM-BE:CAPS">
|
169
|
+
<ANCHOR id="GINT32-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-FROM-LE:CAPS">
|
170
|
+
<ANCHOR id="GINT32-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-TO-BE:CAPS">
|
171
|
+
<ANCHOR id="GINT32-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-TO-LE:CAPS">
|
172
|
+
<ANCHOR id="GUINT32-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-FROM-BE:CAPS">
|
173
|
+
<ANCHOR id="GUINT32-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-FROM-LE:CAPS">
|
174
|
+
<ANCHOR id="GUINT32-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-TO-BE:CAPS">
|
175
|
+
<ANCHOR id="GUINT32-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-TO-LE:CAPS">
|
176
|
+
<ANCHOR id="GINT64-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-FROM-BE:CAPS">
|
177
|
+
<ANCHOR id="GINT64-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-FROM-LE:CAPS">
|
178
|
+
<ANCHOR id="GINT64-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-TO-BE:CAPS">
|
179
|
+
<ANCHOR id="GINT64-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-TO-LE:CAPS">
|
180
|
+
<ANCHOR id="GUINT64-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-FROM-BE:CAPS">
|
181
|
+
<ANCHOR id="GUINT64-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-FROM-LE:CAPS">
|
182
|
+
<ANCHOR id="GUINT64-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-TO-BE:CAPS">
|
183
|
+
<ANCHOR id="GUINT64-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-TO-LE:CAPS">
|
184
|
+
<ANCHOR id="GUINT16-SWAP-BE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-SWAP-BE-PDP:CAPS">
|
185
|
+
<ANCHOR id="GUINT16-SWAP-LE-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-SWAP-LE-BE:CAPS">
|
186
|
+
<ANCHOR id="GUINT16-SWAP-LE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-SWAP-LE-PDP:CAPS">
|
187
|
+
<ANCHOR id="GUINT32-SWAP-BE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-SWAP-BE-PDP:CAPS">
|
188
|
+
<ANCHOR id="GUINT32-SWAP-LE-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-SWAP-LE-BE:CAPS">
|
189
|
+
<ANCHOR id="GUINT32-SWAP-LE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-SWAP-LE-PDP:CAPS">
|
190
|
+
<ANCHOR id="GUINT64-SWAP-LE-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-SWAP-LE-BE:CAPS">
|
191
|
+
<ANCHOR id="glib-Numerical-Definitions" href="glib/glib-Numerical-Definitions.html">
|
192
|
+
<ANCHOR id="glib-Numerical-Definitions.synopsis" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.synopsis">
|
193
|
+
<ANCHOR id="glib-Numerical-Definitions.description" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.description">
|
194
|
+
<ANCHOR id="glib-Numerical-Definitions.details" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.details">
|
195
|
+
<ANCHOR id="G-IEEE754-FLOAT-BIAS:CAPS" href="glib/glib-Numerical-Definitions.html#G-IEEE754-FLOAT-BIAS:CAPS">
|
196
|
+
<ANCHOR id="G-IEEE754-DOUBLE-BIAS:CAPS" href="glib/glib-Numerical-Definitions.html#G-IEEE754-DOUBLE-BIAS:CAPS">
|
197
|
+
<ANCHOR id="GFloatIEEE754" href="glib/glib-Numerical-Definitions.html#GFloatIEEE754">
|
198
|
+
<ANCHOR id="GDoubleIEEE754" href="glib/glib-Numerical-Definitions.html#GDoubleIEEE754">
|
199
|
+
<ANCHOR id="G-E:CAPS" href="glib/glib-Numerical-Definitions.html#G-E:CAPS">
|
200
|
+
<ANCHOR id="G-LN2:CAPS" href="glib/glib-Numerical-Definitions.html#G-LN2:CAPS">
|
201
|
+
<ANCHOR id="G-LN10:CAPS" href="glib/glib-Numerical-Definitions.html#G-LN10:CAPS">
|
202
|
+
<ANCHOR id="G-PI:CAPS" href="glib/glib-Numerical-Definitions.html#G-PI:CAPS">
|
203
|
+
<ANCHOR id="G-PI-2:CAPS" href="glib/glib-Numerical-Definitions.html#G-PI-2:CAPS">
|
204
|
+
<ANCHOR id="G-PI-4:CAPS" href="glib/glib-Numerical-Definitions.html#G-PI-4:CAPS">
|
205
|
+
<ANCHOR id="G-SQRT2:CAPS" href="glib/glib-Numerical-Definitions.html#G-SQRT2:CAPS">
|
206
|
+
<ANCHOR id="G-LOG-2-BASE-10:CAPS" href="glib/glib-Numerical-Definitions.html#G-LOG-2-BASE-10:CAPS">
|
207
|
+
<ANCHOR id="glib-Numerical-Definitions.see-also" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.see-also">
|
208
|
+
<ANCHOR id="glib-Miscellaneous-Macros" href="glib/glib-Miscellaneous-Macros.html">
|
209
|
+
<ANCHOR id="glib-Miscellaneous-Macros.synopsis" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.synopsis">
|
210
|
+
<ANCHOR id="glib-Miscellaneous-Macros.description" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.description">
|
211
|
+
<ANCHOR id="glib-Miscellaneous-Macros.details" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.details">
|
212
|
+
<ANCHOR id="G-INLINE-FUNC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-INLINE-FUNC:CAPS">
|
213
|
+
<ANCHOR id="G-STMT-START:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STMT-START:CAPS">
|
214
|
+
<ANCHOR id="G-STMT-END:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STMT-END:CAPS">
|
215
|
+
<ANCHOR id="G-BEGIN-DECLS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-BEGIN-DECLS:CAPS">
|
216
|
+
<ANCHOR id="G-END-DECLS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-END-DECLS:CAPS">
|
217
|
+
<ANCHOR id="G-N-ELEMENTS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-N-ELEMENTS:CAPS">
|
218
|
+
<ANCHOR id="G-VA-COPY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-VA-COPY:CAPS">
|
219
|
+
<ANCHOR id="G-STRINGIFY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STRINGIFY:CAPS">
|
220
|
+
<ANCHOR id="G-PASTE:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-PASTE:CAPS">
|
221
|
+
<ANCHOR id="G-PASTE-ARGS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-PASTE-ARGS:CAPS">
|
222
|
+
<ANCHOR id="G-STATIC-ASSERT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STATIC-ASSERT:CAPS">
|
223
|
+
<ANCHOR id="G-GNUC-EXTENSION:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-EXTENSION:CAPS">
|
224
|
+
<ANCHOR id="G-GNUC-CONST:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-CONST:CAPS">
|
225
|
+
<ANCHOR id="G-GNUC-PURE:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-PURE:CAPS">
|
226
|
+
<ANCHOR id="G-GNUC-MALLOC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-MALLOC:CAPS">
|
227
|
+
<ANCHOR id="G-GNUC-ALLOC-SIZE:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-ALLOC-SIZE:CAPS">
|
228
|
+
<ANCHOR id="G-GNUC-ALLOC-SIZE2:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-ALLOC-SIZE2:CAPS">
|
229
|
+
<ANCHOR id="G-GNUC-DEPRECATED:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-DEPRECATED:CAPS">
|
230
|
+
<ANCHOR id="G-GNUC-NORETURN:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-NORETURN:CAPS">
|
231
|
+
<ANCHOR id="G-GNUC-UNUSED:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-UNUSED:CAPS">
|
232
|
+
<ANCHOR id="G-GNUC-PRINTF:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-PRINTF:CAPS">
|
233
|
+
<ANCHOR id="G-GNUC-SCANF:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-SCANF:CAPS">
|
234
|
+
<ANCHOR id="G-GNUC-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-FORMAT:CAPS">
|
235
|
+
<ANCHOR id="G-GNUC-NULL-TERMINATED:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-NULL-TERMINATED:CAPS">
|
236
|
+
<ANCHOR id="G-GNUC-WARN-UNUSED-RESULT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-WARN-UNUSED-RESULT:CAPS">
|
237
|
+
<ANCHOR id="G-GNUC-FUNCTION:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-FUNCTION:CAPS">
|
238
|
+
<ANCHOR id="G-GNUC-PRETTY-FUNCTION:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-PRETTY-FUNCTION:CAPS">
|
239
|
+
<ANCHOR id="G-GNUC-NO-INSTRUMENT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-NO-INSTRUMENT:CAPS">
|
240
|
+
<ANCHOR id="G-HAVE-GNUC-VISIBILITY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-HAVE-GNUC-VISIBILITY:CAPS">
|
241
|
+
<ANCHOR id="G-GNUC-INTERNAL:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-INTERNAL:CAPS">
|
242
|
+
<ANCHOR id="G-GNUC-MAY-ALIAS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-MAY-ALIAS:CAPS">
|
243
|
+
<ANCHOR id="G-LIKELY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-LIKELY:CAPS">
|
244
|
+
<ANCHOR id="G-UNLIKELY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-UNLIKELY:CAPS">
|
245
|
+
<ANCHOR id="G-STRLOC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STRLOC:CAPS">
|
246
|
+
<ANCHOR id="G-STRFUNC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STRFUNC:CAPS">
|
247
|
+
<ANCHOR id="G-GINT16-MODIFIER:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINT16-MODIFIER:CAPS">
|
248
|
+
<ANCHOR id="G-GINT16-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINT16-FORMAT:CAPS">
|
249
|
+
<ANCHOR id="G-GUINT16-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GUINT16-FORMAT:CAPS">
|
250
|
+
<ANCHOR id="G-GINT32-MODIFIER:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINT32-MODIFIER:CAPS">
|
251
|
+
<ANCHOR id="G-GINT32-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINT32-FORMAT:CAPS">
|
252
|
+
<ANCHOR id="G-GUINT32-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GUINT32-FORMAT:CAPS">
|
253
|
+
<ANCHOR id="G-GINT64-MODIFIER:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINT64-MODIFIER:CAPS">
|
254
|
+
<ANCHOR id="G-GINT64-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINT64-FORMAT:CAPS">
|
255
|
+
<ANCHOR id="G-GUINT64-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GUINT64-FORMAT:CAPS">
|
256
|
+
<ANCHOR id="G-GSIZE-MODIFIER:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GSIZE-MODIFIER:CAPS">
|
257
|
+
<ANCHOR id="G-GSIZE-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GSIZE-FORMAT:CAPS">
|
258
|
+
<ANCHOR id="G-GSSIZE-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GSSIZE-FORMAT:CAPS">
|
259
|
+
<ANCHOR id="G-GOFFSET-MODIFIER:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GOFFSET-MODIFIER:CAPS">
|
260
|
+
<ANCHOR id="G-GOFFSET-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GOFFSET-FORMAT:CAPS">
|
261
|
+
<ANCHOR id="G-GINTPTR-MODIFIER:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINTPTR-MODIFIER:CAPS">
|
262
|
+
<ANCHOR id="G-GINTPTR-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GINTPTR-FORMAT:CAPS">
|
263
|
+
<ANCHOR id="G-GUINTPTR-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GUINTPTR-FORMAT:CAPS">
|
264
|
+
<ANCHOR id="glib-Atomic-Operations" href="glib/glib-Atomic-Operations.html">
|
265
|
+
<ANCHOR id="glib-Atomic-Operations.synopsis" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.synopsis">
|
266
|
+
<ANCHOR id="glib-Atomic-Operations.description" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.description">
|
267
|
+
<ANCHOR id="glib-Atomic-Operations.details" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.details">
|
268
|
+
<ANCHOR id="g-atomic-int-get" href="glib/glib-Atomic-Operations.html#g-atomic-int-get">
|
269
|
+
<ANCHOR id="g-atomic-int-set" href="glib/glib-Atomic-Operations.html#g-atomic-int-set">
|
270
|
+
<ANCHOR id="g-atomic-int-add" href="glib/glib-Atomic-Operations.html#g-atomic-int-add">
|
271
|
+
<ANCHOR id="g-atomic-int-exchange-and-add" href="glib/glib-Atomic-Operations.html#g-atomic-int-exchange-and-add">
|
272
|
+
<ANCHOR id="g-atomic-int-compare-and-exchange" href="glib/glib-Atomic-Operations.html#g-atomic-int-compare-and-exchange">
|
273
|
+
<ANCHOR id="g-atomic-pointer-get" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-get">
|
274
|
+
<ANCHOR id="g-atomic-pointer-set" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-set">
|
275
|
+
<ANCHOR id="g-atomic-pointer-compare-and-exchange" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-compare-and-exchange">
|
276
|
+
<ANCHOR id="g-atomic-int-inc" href="glib/glib-Atomic-Operations.html#g-atomic-int-inc">
|
277
|
+
<ANCHOR id="g-atomic-int-dec-and-test" href="glib/glib-Atomic-Operations.html#g-atomic-int-dec-and-test">
|
278
|
+
<ANCHOR id="glib-Atomic-Operations.see-also" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.see-also">
|
279
|
+
<ANCHOR id="glib-The-Main-Event-Loop" href="glib/glib-The-Main-Event-Loop.html">
|
280
|
+
<ANCHOR id="glib-The-Main-Event-Loop.synopsis" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.synopsis">
|
281
|
+
<ANCHOR id="glib-The-Main-Event-Loop.description" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.description">
|
282
|
+
<ANCHOR id="glib-The-Main-Event-Loop.details" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.details">
|
283
|
+
<ANCHOR id="GMainLoop" href="glib/glib-The-Main-Event-Loop.html#GMainLoop">
|
284
|
+
<ANCHOR id="g-main-loop-new" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-new">
|
285
|
+
<ANCHOR id="g-main-loop-ref" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-ref">
|
286
|
+
<ANCHOR id="g-main-loop-unref" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-unref">
|
287
|
+
<ANCHOR id="g-main-loop-run" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-run">
|
288
|
+
<ANCHOR id="g-main-loop-quit" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-quit">
|
289
|
+
<ANCHOR id="g-main-loop-is-running" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-is-running">
|
290
|
+
<ANCHOR id="g-main-loop-get-context" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-get-context">
|
291
|
+
<ANCHOR id="g-main-new" href="glib/glib-The-Main-Event-Loop.html#g-main-new">
|
292
|
+
<ANCHOR id="g-main-destroy" href="glib/glib-The-Main-Event-Loop.html#g-main-destroy">
|
293
|
+
<ANCHOR id="g-main-run" href="glib/glib-The-Main-Event-Loop.html#g-main-run">
|
294
|
+
<ANCHOR id="g-main-quit" href="glib/glib-The-Main-Event-Loop.html#g-main-quit">
|
295
|
+
<ANCHOR id="g-main-is-running" href="glib/glib-The-Main-Event-Loop.html#g-main-is-running">
|
296
|
+
<ANCHOR id="G-PRIORITY-HIGH:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH:CAPS">
|
297
|
+
<ANCHOR id="G-PRIORITY-DEFAULT:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-DEFAULT:CAPS">
|
298
|
+
<ANCHOR id="G-PRIORITY-HIGH-IDLE:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH-IDLE:CAPS">
|
299
|
+
<ANCHOR id="G-PRIORITY-DEFAULT-IDLE:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-DEFAULT-IDLE:CAPS">
|
300
|
+
<ANCHOR id="G-PRIORITY-LOW:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-LOW:CAPS">
|
301
|
+
<ANCHOR id="GMainContext" href="glib/glib-The-Main-Event-Loop.html#GMainContext">
|
302
|
+
<ANCHOR id="g-main-context-new" href="glib/glib-The-Main-Event-Loop.html#g-main-context-new">
|
303
|
+
<ANCHOR id="g-main-context-ref" href="glib/glib-The-Main-Event-Loop.html#g-main-context-ref">
|
304
|
+
<ANCHOR id="g-main-context-unref" href="glib/glib-The-Main-Event-Loop.html#g-main-context-unref">
|
305
|
+
<ANCHOR id="g-main-context-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-default">
|
306
|
+
<ANCHOR id="g-main-context-iteration" href="glib/glib-The-Main-Event-Loop.html#g-main-context-iteration">
|
307
|
+
<ANCHOR id="g-main-iteration" href="glib/glib-The-Main-Event-Loop.html#g-main-iteration">
|
308
|
+
<ANCHOR id="g-main-context-pending" href="glib/glib-The-Main-Event-Loop.html#g-main-context-pending">
|
309
|
+
<ANCHOR id="g-main-pending" href="glib/glib-The-Main-Event-Loop.html#g-main-pending">
|
310
|
+
<ANCHOR id="g-main-context-find-source-by-id" href="glib/glib-The-Main-Event-Loop.html#g-main-context-find-source-by-id">
|
311
|
+
<ANCHOR id="g-main-context-find-source-by-user-data" href="glib/glib-The-Main-Event-Loop.html#g-main-context-find-source-by-user-data">
|
312
|
+
<ANCHOR id="g-main-context-find-source-by-funcs-user-data" href="glib/glib-The-Main-Event-Loop.html#g-main-context-find-source-by-funcs-user-data">
|
313
|
+
<ANCHOR id="g-main-context-wakeup" href="glib/glib-The-Main-Event-Loop.html#g-main-context-wakeup">
|
314
|
+
<ANCHOR id="g-main-context-acquire" href="glib/glib-The-Main-Event-Loop.html#g-main-context-acquire">
|
315
|
+
<ANCHOR id="g-main-context-release" href="glib/glib-The-Main-Event-Loop.html#g-main-context-release">
|
316
|
+
<ANCHOR id="g-main-context-is-owner" href="glib/glib-The-Main-Event-Loop.html#g-main-context-is-owner">
|
317
|
+
<ANCHOR id="g-main-context-wait" href="glib/glib-The-Main-Event-Loop.html#g-main-context-wait">
|
318
|
+
<ANCHOR id="g-main-context-prepare" href="glib/glib-The-Main-Event-Loop.html#g-main-context-prepare">
|
319
|
+
<ANCHOR id="g-main-context-query" href="glib/glib-The-Main-Event-Loop.html#g-main-context-query">
|
320
|
+
<ANCHOR id="g-main-context-check" href="glib/glib-The-Main-Event-Loop.html#g-main-context-check">
|
321
|
+
<ANCHOR id="g-main-context-dispatch" href="glib/glib-The-Main-Event-Loop.html#g-main-context-dispatch">
|
322
|
+
<ANCHOR id="g-main-context-set-poll-func" href="glib/glib-The-Main-Event-Loop.html#g-main-context-set-poll-func">
|
323
|
+
<ANCHOR id="g-main-context-get-poll-func" href="glib/glib-The-Main-Event-Loop.html#g-main-context-get-poll-func">
|
324
|
+
<ANCHOR id="GPollFunc" href="glib/glib-The-Main-Event-Loop.html#GPollFunc">
|
325
|
+
<ANCHOR id="g-main-context-add-poll" href="glib/glib-The-Main-Event-Loop.html#g-main-context-add-poll">
|
326
|
+
<ANCHOR id="g-main-context-remove-poll" href="glib/glib-The-Main-Event-Loop.html#g-main-context-remove-poll">
|
327
|
+
<ANCHOR id="g-main-depth" href="glib/glib-The-Main-Event-Loop.html#g-main-depth">
|
328
|
+
<ANCHOR id="g-main-current-source" href="glib/glib-The-Main-Event-Loop.html#g-main-current-source">
|
329
|
+
<ANCHOR id="g-main-set-poll-func" href="glib/glib-The-Main-Event-Loop.html#g-main-set-poll-func">
|
330
|
+
<ANCHOR id="g-main-context-get-thread-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-get-thread-default">
|
331
|
+
<ANCHOR id="g-main-context-push-thread-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">
|
332
|
+
<ANCHOR id="g-main-context-pop-thread-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-pop-thread-default">
|
333
|
+
<ANCHOR id="g-timeout-source-new" href="glib/glib-The-Main-Event-Loop.html#g-timeout-source-new">
|
334
|
+
<ANCHOR id="g-timeout-source-new-seconds" href="glib/glib-The-Main-Event-Loop.html#g-timeout-source-new-seconds">
|
335
|
+
<ANCHOR id="g-timeout-add" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add">
|
336
|
+
<ANCHOR id="g-timeout-add-full" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add-full">
|
337
|
+
<ANCHOR id="g-timeout-add-seconds" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add-seconds">
|
338
|
+
<ANCHOR id="g-timeout-add-seconds-full" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add-seconds-full">
|
339
|
+
<ANCHOR id="g-idle-source-new" href="glib/glib-The-Main-Event-Loop.html#g-idle-source-new">
|
340
|
+
<ANCHOR id="g-idle-add" href="glib/glib-The-Main-Event-Loop.html#g-idle-add">
|
341
|
+
<ANCHOR id="g-idle-add-full" href="glib/glib-The-Main-Event-Loop.html#g-idle-add-full">
|
342
|
+
<ANCHOR id="g-idle-remove-by-data" href="glib/glib-The-Main-Event-Loop.html#g-idle-remove-by-data">
|
343
|
+
<ANCHOR id="GPid" href="glib/glib-The-Main-Event-Loop.html#GPid">
|
344
|
+
<ANCHOR id="GChildWatchFunc" href="glib/glib-The-Main-Event-Loop.html#GChildWatchFunc">
|
345
|
+
<ANCHOR id="g-child-watch-source-new" href="glib/glib-The-Main-Event-Loop.html#g-child-watch-source-new">
|
346
|
+
<ANCHOR id="g-child-watch-add" href="glib/glib-The-Main-Event-Loop.html#g-child-watch-add">
|
347
|
+
<ANCHOR id="g-child-watch-add-full" href="glib/glib-The-Main-Event-Loop.html#g-child-watch-add-full">
|
348
|
+
<ANCHOR id="GPollFD" href="glib/glib-The-Main-Event-Loop.html#GPollFD">
|
349
|
+
<ANCHOR id="g-poll" href="glib/glib-The-Main-Event-Loop.html#g-poll">
|
350
|
+
<ANCHOR id="G-POLLFD-FORMAT:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-POLLFD-FORMAT:CAPS">
|
351
|
+
<ANCHOR id="GSource" href="glib/glib-The-Main-Event-Loop.html#GSource">
|
352
|
+
<ANCHOR id="GSourceDummyMarshal" href="glib/glib-The-Main-Event-Loop.html#GSourceDummyMarshal">
|
353
|
+
<ANCHOR id="GSourceFuncs" href="glib/glib-The-Main-Event-Loop.html#GSourceFuncs">
|
354
|
+
<ANCHOR id="GSourceCallbackFuncs" href="glib/glib-The-Main-Event-Loop.html#GSourceCallbackFuncs">
|
355
|
+
<ANCHOR id="g-source-new" href="glib/glib-The-Main-Event-Loop.html#g-source-new">
|
356
|
+
<ANCHOR id="g-source-ref" href="glib/glib-The-Main-Event-Loop.html#g-source-ref">
|
357
|
+
<ANCHOR id="g-source-unref" href="glib/glib-The-Main-Event-Loop.html#g-source-unref">
|
358
|
+
<ANCHOR id="g-source-set-funcs" href="glib/glib-The-Main-Event-Loop.html#g-source-set-funcs">
|
359
|
+
<ANCHOR id="g-source-attach" href="glib/glib-The-Main-Event-Loop.html#g-source-attach">
|
360
|
+
<ANCHOR id="g-source-destroy" href="glib/glib-The-Main-Event-Loop.html#g-source-destroy">
|
361
|
+
<ANCHOR id="g-source-is-destroyed" href="glib/glib-The-Main-Event-Loop.html#g-source-is-destroyed">
|
362
|
+
<ANCHOR id="g-source-set-priority" href="glib/glib-The-Main-Event-Loop.html#g-source-set-priority">
|
363
|
+
<ANCHOR id="g-source-get-priority" href="glib/glib-The-Main-Event-Loop.html#g-source-get-priority">
|
364
|
+
<ANCHOR id="g-source-set-can-recurse" href="glib/glib-The-Main-Event-Loop.html#g-source-set-can-recurse">
|
365
|
+
<ANCHOR id="g-source-get-can-recurse" href="glib/glib-The-Main-Event-Loop.html#g-source-get-can-recurse">
|
366
|
+
<ANCHOR id="g-source-get-id" href="glib/glib-The-Main-Event-Loop.html#g-source-get-id">
|
367
|
+
<ANCHOR id="g-source-get-context" href="glib/glib-The-Main-Event-Loop.html#g-source-get-context">
|
368
|
+
<ANCHOR id="g-source-set-callback" href="glib/glib-The-Main-Event-Loop.html#g-source-set-callback">
|
369
|
+
<ANCHOR id="GSourceFunc" href="glib/glib-The-Main-Event-Loop.html#GSourceFunc">
|
370
|
+
<ANCHOR id="g-source-set-callback-indirect" href="glib/glib-The-Main-Event-Loop.html#g-source-set-callback-indirect">
|
371
|
+
<ANCHOR id="g-source-add-poll" href="glib/glib-The-Main-Event-Loop.html#g-source-add-poll">
|
372
|
+
<ANCHOR id="g-source-remove-poll" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-poll">
|
373
|
+
<ANCHOR id="g-source-get-current-time" href="glib/glib-The-Main-Event-Loop.html#g-source-get-current-time">
|
374
|
+
<ANCHOR id="g-source-remove" href="glib/glib-The-Main-Event-Loop.html#g-source-remove">
|
375
|
+
<ANCHOR id="g-source-remove-by-funcs-user-data" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-by-funcs-user-data">
|
376
|
+
<ANCHOR id="g-source-remove-by-user-data" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-by-user-data">
|
377
|
+
<ANCHOR id="glib-Threads" href="glib/glib-Threads.html">
|
378
|
+
<ANCHOR id="glib-Threads.synopsis" href="glib/glib-Threads.html#glib-Threads.synopsis">
|
379
|
+
<ANCHOR id="glib-Threads.description" href="glib/glib-Threads.html#glib-Threads.description">
|
380
|
+
<ANCHOR id="glib-Threads.details" href="glib/glib-Threads.html#glib-Threads.details">
|
381
|
+
<ANCHOR id="G-THREADS-ENABLED:CAPS" href="glib/glib-Threads.html#G-THREADS-ENABLED:CAPS">
|
382
|
+
<ANCHOR id="G-THREADS-IMPL-POSIX:CAPS" href="glib/glib-Threads.html#G-THREADS-IMPL-POSIX:CAPS">
|
383
|
+
<ANCHOR id="G-THREADS-IMPL-NONE:CAPS" href="glib/glib-Threads.html#G-THREADS-IMPL-NONE:CAPS">
|
384
|
+
<ANCHOR id="G-THREAD-ERROR:CAPS" href="glib/glib-Threads.html#G-THREAD-ERROR:CAPS">
|
385
|
+
<ANCHOR id="GThreadError" href="glib/glib-Threads.html#GThreadError">
|
386
|
+
<ANCHOR id="G-THREAD-ERROR-AGAIN:CAPS" href="glib/glib-Threads.html#G-THREAD-ERROR-AGAIN:CAPS">
|
387
|
+
<ANCHOR id="GThreadFunctions" href="glib/glib-Threads.html#GThreadFunctions">
|
388
|
+
<ANCHOR id="g-thread-init" href="glib/glib-Threads.html#g-thread-init">
|
389
|
+
<ANCHOR id="g-thread-supported" href="glib/glib-Threads.html#g-thread-supported">
|
390
|
+
<ANCHOR id="g-thread-get-initialized" href="glib/glib-Threads.html#g-thread-get-initialized">
|
391
|
+
<ANCHOR id="GThreadFunc" href="glib/glib-Threads.html#GThreadFunc">
|
392
|
+
<ANCHOR id="GThreadPriority" href="glib/glib-Threads.html#GThreadPriority">
|
393
|
+
<ANCHOR id="G-THREAD-PRIORITY-LOW:CAPS" href="glib/glib-Threads.html#G-THREAD-PRIORITY-LOW:CAPS">
|
394
|
+
<ANCHOR id="G-THREAD-PRIORITY-NORMAL:CAPS" href="glib/glib-Threads.html#G-THREAD-PRIORITY-NORMAL:CAPS">
|
395
|
+
<ANCHOR id="G-THREAD-PRIORITY-HIGH:CAPS" href="glib/glib-Threads.html#G-THREAD-PRIORITY-HIGH:CAPS">
|
396
|
+
<ANCHOR id="G-THREAD-PRIORITY-URGENT:CAPS" href="glib/glib-Threads.html#G-THREAD-PRIORITY-URGENT:CAPS">
|
397
|
+
<ANCHOR id="GThread" href="glib/glib-Threads.html#GThread">
|
398
|
+
<ANCHOR id="g-thread-create" href="glib/glib-Threads.html#g-thread-create">
|
399
|
+
<ANCHOR id="g-thread-create-full" href="glib/glib-Threads.html#g-thread-create-full">
|
400
|
+
<ANCHOR id="g-thread-self" href="glib/glib-Threads.html#g-thread-self">
|
401
|
+
<ANCHOR id="g-thread-join" href="glib/glib-Threads.html#g-thread-join">
|
402
|
+
<ANCHOR id="g-thread-set-priority" href="glib/glib-Threads.html#g-thread-set-priority">
|
403
|
+
<ANCHOR id="g-thread-yield" href="glib/glib-Threads.html#g-thread-yield">
|
404
|
+
<ANCHOR id="g-thread-exit" href="glib/glib-Threads.html#g-thread-exit">
|
405
|
+
<ANCHOR id="g-thread-foreach" href="glib/glib-Threads.html#g-thread-foreach">
|
406
|
+
<ANCHOR id="GMutex" href="glib/glib-Threads.html#GMutex">
|
407
|
+
<ANCHOR id="g-mutex-new" href="glib/glib-Threads.html#g-mutex-new">
|
408
|
+
<ANCHOR id="g-mutex-lock" href="glib/glib-Threads.html#g-mutex-lock">
|
409
|
+
<ANCHOR id="g-mutex-trylock" href="glib/glib-Threads.html#g-mutex-trylock">
|
410
|
+
<ANCHOR id="g-mutex-unlock" href="glib/glib-Threads.html#g-mutex-unlock">
|
411
|
+
<ANCHOR id="g-mutex-free" href="glib/glib-Threads.html#g-mutex-free">
|
412
|
+
<ANCHOR id="GStaticMutex" href="glib/glib-Threads.html#GStaticMutex">
|
413
|
+
<ANCHOR id="G-STATIC-MUTEX-INIT:CAPS" href="glib/glib-Threads.html#G-STATIC-MUTEX-INIT:CAPS">
|
414
|
+
<ANCHOR id="g-static-mutex-init" href="glib/glib-Threads.html#g-static-mutex-init">
|
415
|
+
<ANCHOR id="g-static-mutex-lock" href="glib/glib-Threads.html#g-static-mutex-lock">
|
416
|
+
<ANCHOR id="g-static-mutex-trylock" href="glib/glib-Threads.html#g-static-mutex-trylock">
|
417
|
+
<ANCHOR id="g-static-mutex-unlock" href="glib/glib-Threads.html#g-static-mutex-unlock">
|
418
|
+
<ANCHOR id="g-static-mutex-get-mutex" href="glib/glib-Threads.html#g-static-mutex-get-mutex">
|
419
|
+
<ANCHOR id="g-static-mutex-free" href="glib/glib-Threads.html#g-static-mutex-free">
|
420
|
+
<ANCHOR id="G-LOCK-DEFINE:CAPS" href="glib/glib-Threads.html#G-LOCK-DEFINE:CAPS">
|
421
|
+
<ANCHOR id="G-LOCK-DEFINE-STATIC:CAPS" href="glib/glib-Threads.html#G-LOCK-DEFINE-STATIC:CAPS">
|
422
|
+
<ANCHOR id="G-LOCK-EXTERN:CAPS" href="glib/glib-Threads.html#G-LOCK-EXTERN:CAPS">
|
423
|
+
<ANCHOR id="G-LOCK:CAPS" href="glib/glib-Threads.html#G-LOCK:CAPS">
|
424
|
+
<ANCHOR id="G-TRYLOCK:CAPS" href="glib/glib-Threads.html#G-TRYLOCK:CAPS">
|
425
|
+
<ANCHOR id="G-UNLOCK:CAPS" href="glib/glib-Threads.html#G-UNLOCK:CAPS">
|
426
|
+
<ANCHOR id="GStaticRecMutex" href="glib/glib-Threads.html#GStaticRecMutex">
|
427
|
+
<ANCHOR id="G-STATIC-REC-MUTEX-INIT:CAPS" href="glib/glib-Threads.html#G-STATIC-REC-MUTEX-INIT:CAPS">
|
428
|
+
<ANCHOR id="g-static-rec-mutex-init" href="glib/glib-Threads.html#g-static-rec-mutex-init">
|
429
|
+
<ANCHOR id="g-static-rec-mutex-lock" href="glib/glib-Threads.html#g-static-rec-mutex-lock">
|
430
|
+
<ANCHOR id="g-static-rec-mutex-trylock" href="glib/glib-Threads.html#g-static-rec-mutex-trylock">
|
431
|
+
<ANCHOR id="g-static-rec-mutex-unlock" href="glib/glib-Threads.html#g-static-rec-mutex-unlock">
|
432
|
+
<ANCHOR id="g-static-rec-mutex-lock-full" href="glib/glib-Threads.html#g-static-rec-mutex-lock-full">
|
433
|
+
<ANCHOR id="g-static-rec-mutex-unlock-full" href="glib/glib-Threads.html#g-static-rec-mutex-unlock-full">
|
434
|
+
<ANCHOR id="g-static-rec-mutex-free" href="glib/glib-Threads.html#g-static-rec-mutex-free">
|
435
|
+
<ANCHOR id="GStaticRWLock" href="glib/glib-Threads.html#GStaticRWLock">
|
436
|
+
<ANCHOR id="G-STATIC-RW-LOCK-INIT:CAPS" href="glib/glib-Threads.html#G-STATIC-RW-LOCK-INIT:CAPS">
|
437
|
+
<ANCHOR id="g-static-rw-lock-init" href="glib/glib-Threads.html#g-static-rw-lock-init">
|
438
|
+
<ANCHOR id="g-static-rw-lock-reader-lock" href="glib/glib-Threads.html#g-static-rw-lock-reader-lock">
|
439
|
+
<ANCHOR id="g-static-rw-lock-reader-trylock" href="glib/glib-Threads.html#g-static-rw-lock-reader-trylock">
|
440
|
+
<ANCHOR id="g-static-rw-lock-reader-unlock" href="glib/glib-Threads.html#g-static-rw-lock-reader-unlock">
|
441
|
+
<ANCHOR id="g-static-rw-lock-writer-lock" href="glib/glib-Threads.html#g-static-rw-lock-writer-lock">
|
442
|
+
<ANCHOR id="g-static-rw-lock-writer-trylock" href="glib/glib-Threads.html#g-static-rw-lock-writer-trylock">
|
443
|
+
<ANCHOR id="g-static-rw-lock-writer-unlock" href="glib/glib-Threads.html#g-static-rw-lock-writer-unlock">
|
444
|
+
<ANCHOR id="g-static-rw-lock-free" href="glib/glib-Threads.html#g-static-rw-lock-free">
|
445
|
+
<ANCHOR id="GCond" href="glib/glib-Threads.html#GCond">
|
446
|
+
<ANCHOR id="g-cond-new" href="glib/glib-Threads.html#g-cond-new">
|
447
|
+
<ANCHOR id="g-cond-signal" href="glib/glib-Threads.html#g-cond-signal">
|
448
|
+
<ANCHOR id="g-cond-broadcast" href="glib/glib-Threads.html#g-cond-broadcast">
|
449
|
+
<ANCHOR id="g-cond-wait" href="glib/glib-Threads.html#g-cond-wait">
|
450
|
+
<ANCHOR id="g-cond-timed-wait" href="glib/glib-Threads.html#g-cond-timed-wait">
|
451
|
+
<ANCHOR id="g-cond-free" href="glib/glib-Threads.html#g-cond-free">
|
452
|
+
<ANCHOR id="GPrivate" href="glib/glib-Threads.html#GPrivate">
|
453
|
+
<ANCHOR id="g-private-new" href="glib/glib-Threads.html#g-private-new">
|
454
|
+
<ANCHOR id="g-private-get" href="glib/glib-Threads.html#g-private-get">
|
455
|
+
<ANCHOR id="g-private-set" href="glib/glib-Threads.html#g-private-set">
|
456
|
+
<ANCHOR id="GStaticPrivate" href="glib/glib-Threads.html#GStaticPrivate">
|
457
|
+
<ANCHOR id="G-STATIC-PRIVATE-INIT:CAPS" href="glib/glib-Threads.html#G-STATIC-PRIVATE-INIT:CAPS">
|
458
|
+
<ANCHOR id="g-static-private-init" href="glib/glib-Threads.html#g-static-private-init">
|
459
|
+
<ANCHOR id="g-static-private-get" href="glib/glib-Threads.html#g-static-private-get">
|
460
|
+
<ANCHOR id="g-static-private-set" href="glib/glib-Threads.html#g-static-private-set">
|
461
|
+
<ANCHOR id="g-static-private-free" href="glib/glib-Threads.html#g-static-private-free">
|
462
|
+
<ANCHOR id="GOnce" href="glib/glib-Threads.html#GOnce">
|
463
|
+
<ANCHOR id="GOnceStatus" href="glib/glib-Threads.html#GOnceStatus">
|
464
|
+
<ANCHOR id="G-ONCE-STATUS-NOTCALLED:CAPS" href="glib/glib-Threads.html#G-ONCE-STATUS-NOTCALLED:CAPS">
|
465
|
+
<ANCHOR id="G-ONCE-STATUS-PROGRESS:CAPS" href="glib/glib-Threads.html#G-ONCE-STATUS-PROGRESS:CAPS">
|
466
|
+
<ANCHOR id="G-ONCE-STATUS-READY:CAPS" href="glib/glib-Threads.html#G-ONCE-STATUS-READY:CAPS">
|
467
|
+
<ANCHOR id="G-ONCE-INIT:CAPS" href="glib/glib-Threads.html#G-ONCE-INIT:CAPS">
|
468
|
+
<ANCHOR id="g-once" href="glib/glib-Threads.html#g-once">
|
469
|
+
<ANCHOR id="g-once-init-enter" href="glib/glib-Threads.html#g-once-init-enter">
|
470
|
+
<ANCHOR id="g-once-init-leave" href="glib/glib-Threads.html#g-once-init-leave">
|
471
|
+
<ANCHOR id="g-bit-lock" href="glib/glib-Threads.html#g-bit-lock">
|
472
|
+
<ANCHOR id="g-bit-trylock" href="glib/glib-Threads.html#g-bit-trylock">
|
473
|
+
<ANCHOR id="g-bit-unlock" href="glib/glib-Threads.html#g-bit-unlock">
|
474
|
+
<ANCHOR id="glib-Threads.see-also" href="glib/glib-Threads.html#glib-Threads.see-also">
|
475
|
+
<ANCHOR id="glib-Thread-Pools" href="glib/glib-Thread-Pools.html">
|
476
|
+
<ANCHOR id="glib-Thread-Pools.synopsis" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.synopsis">
|
477
|
+
<ANCHOR id="glib-Thread-Pools.description" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.description">
|
478
|
+
<ANCHOR id="glib-Thread-Pools.details" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.details">
|
479
|
+
<ANCHOR id="GThreadPool" href="glib/glib-Thread-Pools.html#GThreadPool">
|
480
|
+
<ANCHOR id="g-thread-pool-new" href="glib/glib-Thread-Pools.html#g-thread-pool-new">
|
481
|
+
<ANCHOR id="g-thread-pool-push" href="glib/glib-Thread-Pools.html#g-thread-pool-push">
|
482
|
+
<ANCHOR id="g-thread-pool-set-max-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-set-max-threads">
|
483
|
+
<ANCHOR id="g-thread-pool-get-max-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-max-threads">
|
484
|
+
<ANCHOR id="g-thread-pool-get-num-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-num-threads">
|
485
|
+
<ANCHOR id="g-thread-pool-unprocessed" href="glib/glib-Thread-Pools.html#g-thread-pool-unprocessed">
|
486
|
+
<ANCHOR id="g-thread-pool-free" href="glib/glib-Thread-Pools.html#g-thread-pool-free">
|
487
|
+
<ANCHOR id="g-thread-pool-set-max-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-set-max-unused-threads">
|
488
|
+
<ANCHOR id="g-thread-pool-get-max-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-max-unused-threads">
|
489
|
+
<ANCHOR id="g-thread-pool-get-num-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-num-unused-threads">
|
490
|
+
<ANCHOR id="g-thread-pool-stop-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-stop-unused-threads">
|
491
|
+
<ANCHOR id="g-thread-pool-set-sort-function" href="glib/glib-Thread-Pools.html#g-thread-pool-set-sort-function">
|
492
|
+
<ANCHOR id="g-thread-pool-set-max-idle-time" href="glib/glib-Thread-Pools.html#g-thread-pool-set-max-idle-time">
|
493
|
+
<ANCHOR id="g-thread-pool-get-max-idle-time" href="glib/glib-Thread-Pools.html#g-thread-pool-get-max-idle-time">
|
494
|
+
<ANCHOR id="glib-Thread-Pools.see-also" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.see-also">
|
495
|
+
<ANCHOR id="glib-Asynchronous-Queues" href="glib/glib-Asynchronous-Queues.html">
|
496
|
+
<ANCHOR id="glib-Asynchronous-Queues.synopsis" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.synopsis">
|
497
|
+
<ANCHOR id="glib-Asynchronous-Queues.description" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.description">
|
498
|
+
<ANCHOR id="glib-Asynchronous-Queues.details" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.details">
|
499
|
+
<ANCHOR id="GAsyncQueue" href="glib/glib-Asynchronous-Queues.html#GAsyncQueue">
|
500
|
+
<ANCHOR id="g-async-queue-new" href="glib/glib-Asynchronous-Queues.html#g-async-queue-new">
|
501
|
+
<ANCHOR id="g-async-queue-new-full" href="glib/glib-Asynchronous-Queues.html#g-async-queue-new-full">
|
502
|
+
<ANCHOR id="g-async-queue-ref" href="glib/glib-Asynchronous-Queues.html#g-async-queue-ref">
|
503
|
+
<ANCHOR id="g-async-queue-unref" href="glib/glib-Asynchronous-Queues.html#g-async-queue-unref">
|
504
|
+
<ANCHOR id="g-async-queue-push" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push">
|
505
|
+
<ANCHOR id="g-async-queue-push-sorted" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push-sorted">
|
506
|
+
<ANCHOR id="g-async-queue-pop" href="glib/glib-Asynchronous-Queues.html#g-async-queue-pop">
|
507
|
+
<ANCHOR id="g-async-queue-try-pop" href="glib/glib-Asynchronous-Queues.html#g-async-queue-try-pop">
|
508
|
+
<ANCHOR id="g-async-queue-timed-pop" href="glib/glib-Asynchronous-Queues.html#g-async-queue-timed-pop">
|
509
|
+
<ANCHOR id="g-async-queue-length" href="glib/glib-Asynchronous-Queues.html#g-async-queue-length">
|
510
|
+
<ANCHOR id="g-async-queue-sort" href="glib/glib-Asynchronous-Queues.html#g-async-queue-sort">
|
511
|
+
<ANCHOR id="g-async-queue-lock" href="glib/glib-Asynchronous-Queues.html#g-async-queue-lock">
|
512
|
+
<ANCHOR id="g-async-queue-unlock" href="glib/glib-Asynchronous-Queues.html#g-async-queue-unlock">
|
513
|
+
<ANCHOR id="g-async-queue-ref-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-ref-unlocked">
|
514
|
+
<ANCHOR id="g-async-queue-unref-and-unlock" href="glib/glib-Asynchronous-Queues.html#g-async-queue-unref-and-unlock">
|
515
|
+
<ANCHOR id="g-async-queue-push-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push-unlocked">
|
516
|
+
<ANCHOR id="g-async-queue-push-sorted-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push-sorted-unlocked">
|
517
|
+
<ANCHOR id="g-async-queue-pop-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-pop-unlocked">
|
518
|
+
<ANCHOR id="g-async-queue-try-pop-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-try-pop-unlocked">
|
519
|
+
<ANCHOR id="g-async-queue-timed-pop-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-timed-pop-unlocked">
|
520
|
+
<ANCHOR id="g-async-queue-length-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-length-unlocked">
|
521
|
+
<ANCHOR id="g-async-queue-sort-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-sort-unlocked">
|
522
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules" href="glib/glib-Dynamic-Loading-of-Modules.html">
|
523
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.synopsis" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.synopsis">
|
524
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.description" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.description">
|
525
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.details" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.details">
|
526
|
+
<ANCHOR id="GModule" href="glib/glib-Dynamic-Loading-of-Modules.html#GModule">
|
527
|
+
<ANCHOR id="g-module-supported" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-supported">
|
528
|
+
<ANCHOR id="g-module-build-path" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-build-path">
|
529
|
+
<ANCHOR id="g-module-open" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-open">
|
530
|
+
<ANCHOR id="GModuleFlags" href="glib/glib-Dynamic-Loading-of-Modules.html#GModuleFlags">
|
531
|
+
<ANCHOR id="G-MODULE-BIND-LAZY:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-BIND-LAZY:CAPS">
|
532
|
+
<ANCHOR id="G-MODULE-BIND-LOCAL:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-BIND-LOCAL:CAPS">
|
533
|
+
<ANCHOR id="G-MODULE-BIND-MASK:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-BIND-MASK:CAPS">
|
534
|
+
<ANCHOR id="g-module-symbol" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-symbol">
|
535
|
+
<ANCHOR id="g-module-name" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-name">
|
536
|
+
<ANCHOR id="g-module-make-resident" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-make-resident">
|
537
|
+
<ANCHOR id="g-module-close" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-close">
|
538
|
+
<ANCHOR id="g-module-error" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-error">
|
539
|
+
<ANCHOR id="GModuleCheckInit" href="glib/glib-Dynamic-Loading-of-Modules.html#GModuleCheckInit">
|
540
|
+
<ANCHOR id="GModuleUnload" href="glib/glib-Dynamic-Loading-of-Modules.html#GModuleUnload">
|
541
|
+
<ANCHOR id="G-MODULE-SUFFIX:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-SUFFIX:CAPS">
|
542
|
+
<ANCHOR id="G-MODULE-EXPORT:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-EXPORT:CAPS">
|
543
|
+
<ANCHOR id="G-MODULE-IMPORT:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-IMPORT:CAPS">
|
544
|
+
<ANCHOR id="glib-Memory-Allocation" href="glib/glib-Memory-Allocation.html">
|
545
|
+
<ANCHOR id="glib-Memory-Allocation.synopsis" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.synopsis">
|
546
|
+
<ANCHOR id="glib-Memory-Allocation.description" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.description">
|
547
|
+
<ANCHOR id="glib-Memory-Allocation.details" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.details">
|
548
|
+
<ANCHOR id="g-new" href="glib/glib-Memory-Allocation.html#g-new">
|
549
|
+
<ANCHOR id="g-new0" href="glib/glib-Memory-Allocation.html#g-new0">
|
550
|
+
<ANCHOR id="g-renew" href="glib/glib-Memory-Allocation.html#g-renew">
|
551
|
+
<ANCHOR id="g-try-new" href="glib/glib-Memory-Allocation.html#g-try-new">
|
552
|
+
<ANCHOR id="g-try-new0" href="glib/glib-Memory-Allocation.html#g-try-new0">
|
553
|
+
<ANCHOR id="g-try-renew" href="glib/glib-Memory-Allocation.html#g-try-renew">
|
554
|
+
<ANCHOR id="g-malloc" href="glib/glib-Memory-Allocation.html#g-malloc">
|
555
|
+
<ANCHOR id="g-malloc0" href="glib/glib-Memory-Allocation.html#g-malloc0">
|
556
|
+
<ANCHOR id="g-realloc" href="glib/glib-Memory-Allocation.html#g-realloc">
|
557
|
+
<ANCHOR id="g-try-malloc" href="glib/glib-Memory-Allocation.html#g-try-malloc">
|
558
|
+
<ANCHOR id="g-try-malloc0" href="glib/glib-Memory-Allocation.html#g-try-malloc0">
|
559
|
+
<ANCHOR id="g-try-realloc" href="glib/glib-Memory-Allocation.html#g-try-realloc">
|
560
|
+
<ANCHOR id="g-malloc-n" href="glib/glib-Memory-Allocation.html#g-malloc-n">
|
561
|
+
<ANCHOR id="g-malloc0-n" href="glib/glib-Memory-Allocation.html#g-malloc0-n">
|
562
|
+
<ANCHOR id="g-realloc-n" href="glib/glib-Memory-Allocation.html#g-realloc-n">
|
563
|
+
<ANCHOR id="g-try-malloc-n" href="glib/glib-Memory-Allocation.html#g-try-malloc-n">
|
564
|
+
<ANCHOR id="g-try-malloc0-n" href="glib/glib-Memory-Allocation.html#g-try-malloc0-n">
|
565
|
+
<ANCHOR id="g-try-realloc-n" href="glib/glib-Memory-Allocation.html#g-try-realloc-n">
|
566
|
+
<ANCHOR id="g-free" href="glib/glib-Memory-Allocation.html#g-free">
|
567
|
+
<ANCHOR id="g-mem-gc-friendly" href="glib/glib-Memory-Allocation.html#g-mem-gc-friendly">
|
568
|
+
<ANCHOR id="g-alloca" href="glib/glib-Memory-Allocation.html#g-alloca">
|
569
|
+
<ANCHOR id="g-newa" href="glib/glib-Memory-Allocation.html#g-newa">
|
570
|
+
<ANCHOR id="g-memmove" href="glib/glib-Memory-Allocation.html#g-memmove">
|
571
|
+
<ANCHOR id="g-memdup" href="glib/glib-Memory-Allocation.html#g-memdup">
|
572
|
+
<ANCHOR id="GMemVTable" href="glib/glib-Memory-Allocation.html#GMemVTable">
|
573
|
+
<ANCHOR id="g-mem-set-vtable" href="glib/glib-Memory-Allocation.html#g-mem-set-vtable">
|
574
|
+
<ANCHOR id="g-mem-is-system-malloc" href="glib/glib-Memory-Allocation.html#g-mem-is-system-malloc">
|
575
|
+
<ANCHOR id="glib-mem-profiler-table" href="glib/glib-Memory-Allocation.html#glib-mem-profiler-table">
|
576
|
+
<ANCHOR id="g-mem-profile" href="glib/glib-Memory-Allocation.html#g-mem-profile">
|
577
|
+
<ANCHOR id="glib-IO-Channels" href="glib/glib-IO-Channels.html">
|
578
|
+
<ANCHOR id="glib-IO-Channels.synopsis" href="glib/glib-IO-Channels.html#glib-IO-Channels.synopsis">
|
579
|
+
<ANCHOR id="glib-IO-Channels.description" href="glib/glib-IO-Channels.html#glib-IO-Channels.description">
|
580
|
+
<ANCHOR id="glib-IO-Channels.details" href="glib/glib-IO-Channels.html#glib-IO-Channels.details">
|
581
|
+
<ANCHOR id="GIOChannel" href="glib/glib-IO-Channels.html#GIOChannel">
|
582
|
+
<ANCHOR id="g-io-channel-unix-new" href="glib/glib-IO-Channels.html#g-io-channel-unix-new">
|
583
|
+
<ANCHOR id="g-io-channel-unix-get-fd" href="glib/glib-IO-Channels.html#g-io-channel-unix-get-fd">
|
584
|
+
<ANCHOR id="g-io-channel-win32-new-fd" href="glib/glib-IO-Channels.html#g-io-channel-win32-new-fd">
|
585
|
+
<ANCHOR id="g-io-channel-win32-new-socket" href="glib/glib-IO-Channels.html#g-io-channel-win32-new-socket">
|
586
|
+
<ANCHOR id="g-io-channel-win32-new-messages" href="glib/glib-IO-Channels.html#g-io-channel-win32-new-messages">
|
587
|
+
<ANCHOR id="g-io-channel-init" href="glib/glib-IO-Channels.html#g-io-channel-init">
|
588
|
+
<ANCHOR id="g-io-channel-new-file" href="glib/glib-IO-Channels.html#g-io-channel-new-file">
|
589
|
+
<ANCHOR id="g-io-channel-read-chars" href="glib/glib-IO-Channels.html#g-io-channel-read-chars">
|
590
|
+
<ANCHOR id="g-io-channel-read-unichar" href="glib/glib-IO-Channels.html#g-io-channel-read-unichar">
|
591
|
+
<ANCHOR id="g-io-channel-read-line" href="glib/glib-IO-Channels.html#g-io-channel-read-line">
|
592
|
+
<ANCHOR id="g-io-channel-read-line-string" href="glib/glib-IO-Channels.html#g-io-channel-read-line-string">
|
593
|
+
<ANCHOR id="g-io-channel-read-to-end" href="glib/glib-IO-Channels.html#g-io-channel-read-to-end">
|
594
|
+
<ANCHOR id="g-io-channel-write-chars" href="glib/glib-IO-Channels.html#g-io-channel-write-chars">
|
595
|
+
<ANCHOR id="g-io-channel-write-unichar" href="glib/glib-IO-Channels.html#g-io-channel-write-unichar">
|
596
|
+
<ANCHOR id="g-io-channel-flush" href="glib/glib-IO-Channels.html#g-io-channel-flush">
|
597
|
+
<ANCHOR id="g-io-channel-seek-position" href="glib/glib-IO-Channels.html#g-io-channel-seek-position">
|
598
|
+
<ANCHOR id="GSeekType" href="glib/glib-IO-Channels.html#GSeekType">
|
599
|
+
<ANCHOR id="G-SEEK-CUR:CAPS" href="glib/glib-IO-Channels.html#G-SEEK-CUR:CAPS">
|
600
|
+
<ANCHOR id="G-SEEK-SET:CAPS" href="glib/glib-IO-Channels.html#G-SEEK-SET:CAPS">
|
601
|
+
<ANCHOR id="G-SEEK-END:CAPS" href="glib/glib-IO-Channels.html#G-SEEK-END:CAPS">
|
602
|
+
<ANCHOR id="g-io-channel-shutdown" href="glib/glib-IO-Channels.html#g-io-channel-shutdown">
|
603
|
+
<ANCHOR id="GIOStatus" href="glib/glib-IO-Channels.html#GIOStatus">
|
604
|
+
<ANCHOR id="G-IO-STATUS-ERROR:CAPS" href="glib/glib-IO-Channels.html#G-IO-STATUS-ERROR:CAPS">
|
605
|
+
<ANCHOR id="G-IO-STATUS-NORMAL:CAPS" href="glib/glib-IO-Channels.html#G-IO-STATUS-NORMAL:CAPS">
|
606
|
+
<ANCHOR id="G-IO-STATUS-EOF:CAPS" href="glib/glib-IO-Channels.html#G-IO-STATUS-EOF:CAPS">
|
607
|
+
<ANCHOR id="G-IO-STATUS-AGAIN:CAPS" href="glib/glib-IO-Channels.html#G-IO-STATUS-AGAIN:CAPS">
|
608
|
+
<ANCHOR id="GIOChannelError" href="glib/glib-IO-Channels.html#GIOChannelError">
|
609
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-FBIG:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-FBIG:CAPS">
|
610
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-INVAL:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-INVAL:CAPS">
|
611
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-IO:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-IO:CAPS">
|
612
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-ISDIR:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-ISDIR:CAPS">
|
613
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-NOSPC:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-NOSPC:CAPS">
|
614
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-NXIO:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-NXIO:CAPS">
|
615
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-OVERFLOW:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-OVERFLOW:CAPS">
|
616
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-PIPE:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-PIPE:CAPS">
|
617
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR-FAILED:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR-FAILED:CAPS">
|
618
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR:CAPS">
|
619
|
+
<ANCHOR id="g-io-channel-error-from-errno" href="glib/glib-IO-Channels.html#g-io-channel-error-from-errno">
|
620
|
+
<ANCHOR id="g-io-channel-ref" href="glib/glib-IO-Channels.html#g-io-channel-ref">
|
621
|
+
<ANCHOR id="g-io-channel-unref" href="glib/glib-IO-Channels.html#g-io-channel-unref">
|
622
|
+
<ANCHOR id="g-io-create-watch" href="glib/glib-IO-Channels.html#g-io-create-watch">
|
623
|
+
<ANCHOR id="g-io-add-watch" href="glib/glib-IO-Channels.html#g-io-add-watch">
|
624
|
+
<ANCHOR id="g-io-add-watch-full" href="glib/glib-IO-Channels.html#g-io-add-watch-full">
|
625
|
+
<ANCHOR id="GIOCondition" href="glib/glib-IO-Channels.html#GIOCondition">
|
626
|
+
<ANCHOR id="G-IO-IN:CAPS" href="glib/glib-IO-Channels.html#G-IO-IN:CAPS">
|
627
|
+
<ANCHOR id="G-IO-OUT:CAPS" href="glib/glib-IO-Channels.html#G-IO-OUT:CAPS">
|
628
|
+
<ANCHOR id="G-IO-PRI:CAPS" href="glib/glib-IO-Channels.html#G-IO-PRI:CAPS">
|
629
|
+
<ANCHOR id="G-IO-ERR:CAPS" href="glib/glib-IO-Channels.html#G-IO-ERR:CAPS">
|
630
|
+
<ANCHOR id="G-IO-HUP:CAPS" href="glib/glib-IO-Channels.html#G-IO-HUP:CAPS">
|
631
|
+
<ANCHOR id="G-IO-NVAL:CAPS" href="glib/glib-IO-Channels.html#G-IO-NVAL:CAPS">
|
632
|
+
<ANCHOR id="GIOFunc" href="glib/glib-IO-Channels.html#GIOFunc">
|
633
|
+
<ANCHOR id="GIOFuncs" href="glib/glib-IO-Channels.html#GIOFuncs">
|
634
|
+
<ANCHOR id="g-io-channel-get-buffer-size" href="glib/glib-IO-Channels.html#g-io-channel-get-buffer-size">
|
635
|
+
<ANCHOR id="g-io-channel-set-buffer-size" href="glib/glib-IO-Channels.html#g-io-channel-set-buffer-size">
|
636
|
+
<ANCHOR id="g-io-channel-get-buffer-condition" href="glib/glib-IO-Channels.html#g-io-channel-get-buffer-condition">
|
637
|
+
<ANCHOR id="g-io-channel-get-flags" href="glib/glib-IO-Channels.html#g-io-channel-get-flags">
|
638
|
+
<ANCHOR id="g-io-channel-set-flags" href="glib/glib-IO-Channels.html#g-io-channel-set-flags">
|
639
|
+
<ANCHOR id="GIOFlags" href="glib/glib-IO-Channels.html#GIOFlags">
|
640
|
+
<ANCHOR id="G-IO-FLAG-APPEND:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-APPEND:CAPS">
|
641
|
+
<ANCHOR id="G-IO-FLAG-NONBLOCK:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-NONBLOCK:CAPS">
|
642
|
+
<ANCHOR id="G-IO-FLAG-IS-READABLE:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-IS-READABLE:CAPS">
|
643
|
+
<ANCHOR id="G-IO-FLAG-IS-WRITEABLE:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-IS-WRITEABLE:CAPS">
|
644
|
+
<ANCHOR id="G-IO-FLAG-IS-SEEKABLE:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-IS-SEEKABLE:CAPS">
|
645
|
+
<ANCHOR id="G-IO-FLAG-MASK:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-MASK:CAPS">
|
646
|
+
<ANCHOR id="G-IO-FLAG-GET-MASK:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-GET-MASK:CAPS">
|
647
|
+
<ANCHOR id="G-IO-FLAG-SET-MASK:CAPS" href="glib/glib-IO-Channels.html#G-IO-FLAG-SET-MASK:CAPS">
|
648
|
+
<ANCHOR id="g-io-channel-get-line-term" href="glib/glib-IO-Channels.html#g-io-channel-get-line-term">
|
649
|
+
<ANCHOR id="g-io-channel-set-line-term" href="glib/glib-IO-Channels.html#g-io-channel-set-line-term">
|
650
|
+
<ANCHOR id="g-io-channel-get-buffered" href="glib/glib-IO-Channels.html#g-io-channel-get-buffered">
|
651
|
+
<ANCHOR id="g-io-channel-set-buffered" href="glib/glib-IO-Channels.html#g-io-channel-set-buffered">
|
652
|
+
<ANCHOR id="g-io-channel-get-encoding" href="glib/glib-IO-Channels.html#g-io-channel-get-encoding">
|
653
|
+
<ANCHOR id="g-io-channel-set-encoding" href="glib/glib-IO-Channels.html#g-io-channel-set-encoding">
|
654
|
+
<ANCHOR id="g-io-channel-get-close-on-unref" href="glib/glib-IO-Channels.html#g-io-channel-get-close-on-unref">
|
655
|
+
<ANCHOR id="g-io-channel-set-close-on-unref" href="glib/glib-IO-Channels.html#g-io-channel-set-close-on-unref">
|
656
|
+
<ANCHOR id="g-io-channel-read" href="glib/glib-IO-Channels.html#g-io-channel-read">
|
657
|
+
<ANCHOR id="GIOError" href="glib/glib-IO-Channels.html#GIOError">
|
658
|
+
<ANCHOR id="G-IO-ERROR-NONE:CAPS" href="glib/glib-IO-Channels.html#G-IO-ERROR-NONE:CAPS">
|
659
|
+
<ANCHOR id="G-IO-ERROR-AGAIN:CAPS" href="glib/glib-IO-Channels.html#G-IO-ERROR-AGAIN:CAPS">
|
660
|
+
<ANCHOR id="G-IO-ERROR-INVAL:CAPS" href="glib/glib-IO-Channels.html#G-IO-ERROR-INVAL:CAPS">
|
661
|
+
<ANCHOR id="G-IO-ERROR-UNKNOWN:CAPS" href="glib/glib-IO-Channels.html#G-IO-ERROR-UNKNOWN:CAPS">
|
662
|
+
<ANCHOR id="g-io-channel-write" href="glib/glib-IO-Channels.html#g-io-channel-write">
|
663
|
+
<ANCHOR id="g-io-channel-seek" href="glib/glib-IO-Channels.html#g-io-channel-seek">
|
664
|
+
<ANCHOR id="g-io-channel-close" href="glib/glib-IO-Channels.html#g-io-channel-close">
|
665
|
+
<ANCHOR id="glib-IO-Channels.see-also" href="glib/glib-IO-Channels.html#glib-IO-Channels.see-also">
|
666
|
+
<ANCHOR id="glib-Error-Reporting" href="glib/glib-Error-Reporting.html">
|
667
|
+
<ANCHOR id="glib-Error-Reporting.synopsis" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.synopsis">
|
668
|
+
<ANCHOR id="glib-Error-Reporting.description" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.description">
|
669
|
+
<ANCHOR id="glib-Error-Reporting.details" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.details">
|
670
|
+
<ANCHOR id="GError" href="glib/glib-Error-Reporting.html#GError">
|
671
|
+
<ANCHOR id="g-error-new" href="glib/glib-Error-Reporting.html#g-error-new">
|
672
|
+
<ANCHOR id="g-error-new-literal" href="glib/glib-Error-Reporting.html#g-error-new-literal">
|
673
|
+
<ANCHOR id="g-error-new-valist" href="glib/glib-Error-Reporting.html#g-error-new-valist">
|
674
|
+
<ANCHOR id="g-error-free" href="glib/glib-Error-Reporting.html#g-error-free">
|
675
|
+
<ANCHOR id="g-error-copy" href="glib/glib-Error-Reporting.html#g-error-copy">
|
676
|
+
<ANCHOR id="g-error-matches" href="glib/glib-Error-Reporting.html#g-error-matches">
|
677
|
+
<ANCHOR id="g-set-error" href="glib/glib-Error-Reporting.html#g-set-error">
|
678
|
+
<ANCHOR id="g-set-error-literal" href="glib/glib-Error-Reporting.html#g-set-error-literal">
|
679
|
+
<ANCHOR id="g-propagate-error" href="glib/glib-Error-Reporting.html#g-propagate-error">
|
680
|
+
<ANCHOR id="g-clear-error" href="glib/glib-Error-Reporting.html#g-clear-error">
|
681
|
+
<ANCHOR id="g-prefix-error" href="glib/glib-Error-Reporting.html#g-prefix-error">
|
682
|
+
<ANCHOR id="g-propagate-prefixed-error" href="glib/glib-Error-Reporting.html#g-propagate-prefixed-error">
|
683
|
+
<ANCHOR id="glib-Warnings-and-Assertions" href="glib/glib-Warnings-and-Assertions.html">
|
684
|
+
<ANCHOR id="glib-Warnings-and-Assertions.synopsis" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.synopsis">
|
685
|
+
<ANCHOR id="glib-Warnings-and-Assertions.description" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.description">
|
686
|
+
<ANCHOR id="glib-Warnings-and-Assertions.details" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.details">
|
687
|
+
<ANCHOR id="g-print" href="glib/glib-Warnings-and-Assertions.html#g-print">
|
688
|
+
<ANCHOR id="g-set-print-handler" href="glib/glib-Warnings-and-Assertions.html#g-set-print-handler">
|
689
|
+
<ANCHOR id="GPrintFunc" href="glib/glib-Warnings-and-Assertions.html#GPrintFunc">
|
690
|
+
<ANCHOR id="g-printerr" href="glib/glib-Warnings-and-Assertions.html#g-printerr">
|
691
|
+
<ANCHOR id="g-set-printerr-handler" href="glib/glib-Warnings-and-Assertions.html#g-set-printerr-handler">
|
692
|
+
<ANCHOR id="g-return-if-fail" href="glib/glib-Warnings-and-Assertions.html#g-return-if-fail">
|
693
|
+
<ANCHOR id="g-return-val-if-fail" href="glib/glib-Warnings-and-Assertions.html#g-return-val-if-fail">
|
694
|
+
<ANCHOR id="g-return-if-reached" href="glib/glib-Warnings-and-Assertions.html#g-return-if-reached">
|
695
|
+
<ANCHOR id="g-return-val-if-reached" href="glib/glib-Warnings-and-Assertions.html#g-return-val-if-reached">
|
696
|
+
<ANCHOR id="g-warn-if-fail" href="glib/glib-Warnings-and-Assertions.html#g-warn-if-fail">
|
697
|
+
<ANCHOR id="g-warn-if-reached" href="glib/glib-Warnings-and-Assertions.html#g-warn-if-reached">
|
698
|
+
<ANCHOR id="g-on-error-query" href="glib/glib-Warnings-and-Assertions.html#g-on-error-query">
|
699
|
+
<ANCHOR id="g-on-error-stack-trace" href="glib/glib-Warnings-and-Assertions.html#g-on-error-stack-trace">
|
700
|
+
<ANCHOR id="G-BREAKPOINT:CAPS" href="glib/glib-Warnings-and-Assertions.html#G-BREAKPOINT:CAPS">
|
701
|
+
<ANCHOR id="glib-Message-Logging" href="glib/glib-Message-Logging.html">
|
702
|
+
<ANCHOR id="glib-Message-Logging.synopsis" href="glib/glib-Message-Logging.html#glib-Message-Logging.synopsis">
|
703
|
+
<ANCHOR id="glib-Message-Logging.description" href="glib/glib-Message-Logging.html#glib-Message-Logging.description">
|
704
|
+
<ANCHOR id="glib-Message-Logging.details" href="glib/glib-Message-Logging.html#glib-Message-Logging.details">
|
705
|
+
<ANCHOR id="G-LOG-DOMAIN:CAPS" href="glib/glib-Message-Logging.html#G-LOG-DOMAIN:CAPS">
|
706
|
+
<ANCHOR id="G-LOG-FATAL-MASK:CAPS" href="glib/glib-Message-Logging.html#G-LOG-FATAL-MASK:CAPS">
|
707
|
+
<ANCHOR id="G-LOG-LEVEL-USER-SHIFT:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-USER-SHIFT:CAPS">
|
708
|
+
<ANCHOR id="GLogFunc" href="glib/glib-Message-Logging.html#GLogFunc">
|
709
|
+
<ANCHOR id="GLogLevelFlags" href="glib/glib-Message-Logging.html#GLogLevelFlags">
|
710
|
+
<ANCHOR id="G-LOG-FLAG-RECURSION:CAPS" href="glib/glib-Message-Logging.html#G-LOG-FLAG-RECURSION:CAPS">
|
711
|
+
<ANCHOR id="G-LOG-FLAG-FATAL:CAPS" href="glib/glib-Message-Logging.html#G-LOG-FLAG-FATAL:CAPS">
|
712
|
+
<ANCHOR id="G-LOG-LEVEL-ERROR:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-ERROR:CAPS">
|
713
|
+
<ANCHOR id="G-LOG-LEVEL-CRITICAL:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-CRITICAL:CAPS">
|
714
|
+
<ANCHOR id="G-LOG-LEVEL-WARNING:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-WARNING:CAPS">
|
715
|
+
<ANCHOR id="G-LOG-LEVEL-MESSAGE:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-MESSAGE:CAPS">
|
716
|
+
<ANCHOR id="G-LOG-LEVEL-INFO:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-INFO:CAPS">
|
717
|
+
<ANCHOR id="G-LOG-LEVEL-DEBUG:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-DEBUG:CAPS">
|
718
|
+
<ANCHOR id="G-LOG-LEVEL-MASK:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-MASK:CAPS">
|
719
|
+
<ANCHOR id="g-log" href="glib/glib-Message-Logging.html#g-log">
|
720
|
+
<ANCHOR id="g-logv" href="glib/glib-Message-Logging.html#g-logv">
|
721
|
+
<ANCHOR id="g-message" href="glib/glib-Message-Logging.html#g-message">
|
722
|
+
<ANCHOR id="g-warning" href="glib/glib-Message-Logging.html#g-warning">
|
723
|
+
<ANCHOR id="g-critical" href="glib/glib-Message-Logging.html#g-critical">
|
724
|
+
<ANCHOR id="g-error" href="glib/glib-Message-Logging.html#g-error">
|
725
|
+
<ANCHOR id="g-debug" href="glib/glib-Message-Logging.html#g-debug">
|
726
|
+
<ANCHOR id="g-log-set-handler" href="glib/glib-Message-Logging.html#g-log-set-handler">
|
727
|
+
<ANCHOR id="g-log-remove-handler" href="glib/glib-Message-Logging.html#g-log-remove-handler">
|
728
|
+
<ANCHOR id="g-log-set-always-fatal" href="glib/glib-Message-Logging.html#g-log-set-always-fatal">
|
729
|
+
<ANCHOR id="g-log-set-fatal-mask" href="glib/glib-Message-Logging.html#g-log-set-fatal-mask">
|
730
|
+
<ANCHOR id="g-log-default-handler" href="glib/glib-Message-Logging.html#g-log-default-handler">
|
731
|
+
<ANCHOR id="g-log-set-default-handler" href="glib/glib-Message-Logging.html#g-log-set-default-handler">
|
732
|
+
<ANCHOR id="glib-String-Utility-Functions" href="glib/glib-String-Utility-Functions.html">
|
733
|
+
<ANCHOR id="glib-String-Utility-Functions.synopsis" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.synopsis">
|
734
|
+
<ANCHOR id="glib-String-Utility-Functions.description" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.description">
|
735
|
+
<ANCHOR id="glib-String-Utility-Functions.details" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.details">
|
736
|
+
<ANCHOR id="g-strdup" href="glib/glib-String-Utility-Functions.html#g-strdup">
|
737
|
+
<ANCHOR id="g-strndup" href="glib/glib-String-Utility-Functions.html#g-strndup">
|
738
|
+
<ANCHOR id="g-strdupv" href="glib/glib-String-Utility-Functions.html#g-strdupv">
|
739
|
+
<ANCHOR id="g-strnfill" href="glib/glib-String-Utility-Functions.html#g-strnfill">
|
740
|
+
<ANCHOR id="g-stpcpy" href="glib/glib-String-Utility-Functions.html#g-stpcpy">
|
741
|
+
<ANCHOR id="g-strstr-len" href="glib/glib-String-Utility-Functions.html#g-strstr-len">
|
742
|
+
<ANCHOR id="g-strrstr" href="glib/glib-String-Utility-Functions.html#g-strrstr">
|
743
|
+
<ANCHOR id="g-strrstr-len" href="glib/glib-String-Utility-Functions.html#g-strrstr-len">
|
744
|
+
<ANCHOR id="g-str-has-prefix" href="glib/glib-String-Utility-Functions.html#g-str-has-prefix">
|
745
|
+
<ANCHOR id="g-str-has-suffix" href="glib/glib-String-Utility-Functions.html#g-str-has-suffix">
|
746
|
+
<ANCHOR id="g-strcmp0" href="glib/glib-String-Utility-Functions.html#g-strcmp0">
|
747
|
+
<ANCHOR id="g-strlcpy" href="glib/glib-String-Utility-Functions.html#g-strlcpy">
|
748
|
+
<ANCHOR id="g-strlcat" href="glib/glib-String-Utility-Functions.html#g-strlcat">
|
749
|
+
<ANCHOR id="g-strdup-printf" href="glib/glib-String-Utility-Functions.html#g-strdup-printf">
|
750
|
+
<ANCHOR id="g-strdup-vprintf" href="glib/glib-String-Utility-Functions.html#g-strdup-vprintf">
|
751
|
+
<ANCHOR id="g-printf" href="glib/glib-String-Utility-Functions.html#g-printf">
|
752
|
+
<ANCHOR id="g-vprintf" href="glib/glib-String-Utility-Functions.html#g-vprintf">
|
753
|
+
<ANCHOR id="g-fprintf" href="glib/glib-String-Utility-Functions.html#g-fprintf">
|
754
|
+
<ANCHOR id="g-vfprintf" href="glib/glib-String-Utility-Functions.html#g-vfprintf">
|
755
|
+
<ANCHOR id="g-sprintf" href="glib/glib-String-Utility-Functions.html#g-sprintf">
|
756
|
+
<ANCHOR id="g-vsprintf" href="glib/glib-String-Utility-Functions.html#g-vsprintf">
|
757
|
+
<ANCHOR id="g-snprintf" href="glib/glib-String-Utility-Functions.html#g-snprintf">
|
758
|
+
<ANCHOR id="g-vsnprintf" href="glib/glib-String-Utility-Functions.html#g-vsnprintf">
|
759
|
+
<ANCHOR id="g-vasprintf" href="glib/glib-String-Utility-Functions.html#g-vasprintf">
|
760
|
+
<ANCHOR id="g-printf-string-upper-bound" href="glib/glib-String-Utility-Functions.html#g-printf-string-upper-bound">
|
761
|
+
<ANCHOR id="g-ascii-isalnum" href="glib/glib-String-Utility-Functions.html#g-ascii-isalnum">
|
762
|
+
<ANCHOR id="g-ascii-isalpha" href="glib/glib-String-Utility-Functions.html#g-ascii-isalpha">
|
763
|
+
<ANCHOR id="g-ascii-iscntrl" href="glib/glib-String-Utility-Functions.html#g-ascii-iscntrl">
|
764
|
+
<ANCHOR id="g-ascii-isdigit" href="glib/glib-String-Utility-Functions.html#g-ascii-isdigit">
|
765
|
+
<ANCHOR id="g-ascii-isgraph" href="glib/glib-String-Utility-Functions.html#g-ascii-isgraph">
|
766
|
+
<ANCHOR id="g-ascii-islower" href="glib/glib-String-Utility-Functions.html#g-ascii-islower">
|
767
|
+
<ANCHOR id="g-ascii-isprint" href="glib/glib-String-Utility-Functions.html#g-ascii-isprint">
|
768
|
+
<ANCHOR id="g-ascii-ispunct" href="glib/glib-String-Utility-Functions.html#g-ascii-ispunct">
|
769
|
+
<ANCHOR id="g-ascii-isspace" href="glib/glib-String-Utility-Functions.html#g-ascii-isspace">
|
770
|
+
<ANCHOR id="g-ascii-isupper" href="glib/glib-String-Utility-Functions.html#g-ascii-isupper">
|
771
|
+
<ANCHOR id="g-ascii-isxdigit" href="glib/glib-String-Utility-Functions.html#g-ascii-isxdigit">
|
772
|
+
<ANCHOR id="g-ascii-digit-value" href="glib/glib-String-Utility-Functions.html#g-ascii-digit-value">
|
773
|
+
<ANCHOR id="g-ascii-xdigit-value" href="glib/glib-String-Utility-Functions.html#g-ascii-xdigit-value">
|
774
|
+
<ANCHOR id="g-ascii-strcasecmp" href="glib/glib-String-Utility-Functions.html#g-ascii-strcasecmp">
|
775
|
+
<ANCHOR id="g-ascii-strncasecmp" href="glib/glib-String-Utility-Functions.html#g-ascii-strncasecmp">
|
776
|
+
<ANCHOR id="g-ascii-strup" href="glib/glib-String-Utility-Functions.html#g-ascii-strup">
|
777
|
+
<ANCHOR id="g-ascii-strdown" href="glib/glib-String-Utility-Functions.html#g-ascii-strdown">
|
778
|
+
<ANCHOR id="g-ascii-tolower" href="glib/glib-String-Utility-Functions.html#g-ascii-tolower">
|
779
|
+
<ANCHOR id="g-ascii-toupper" href="glib/glib-String-Utility-Functions.html#g-ascii-toupper">
|
780
|
+
<ANCHOR id="g-string-ascii-up" href="glib/glib-String-Utility-Functions.html#g-string-ascii-up">
|
781
|
+
<ANCHOR id="g-string-ascii-down" href="glib/glib-String-Utility-Functions.html#g-string-ascii-down">
|
782
|
+
<ANCHOR id="g-strup" href="glib/glib-String-Utility-Functions.html#g-strup">
|
783
|
+
<ANCHOR id="g-strdown" href="glib/glib-String-Utility-Functions.html#g-strdown">
|
784
|
+
<ANCHOR id="g-strcasecmp" href="glib/glib-String-Utility-Functions.html#g-strcasecmp">
|
785
|
+
<ANCHOR id="g-strncasecmp" href="glib/glib-String-Utility-Functions.html#g-strncasecmp">
|
786
|
+
<ANCHOR id="g-strreverse" href="glib/glib-String-Utility-Functions.html#g-strreverse">
|
787
|
+
<ANCHOR id="g-ascii-strtoll" href="glib/glib-String-Utility-Functions.html#g-ascii-strtoll">
|
788
|
+
<ANCHOR id="g-ascii-strtoull" href="glib/glib-String-Utility-Functions.html#g-ascii-strtoull">
|
789
|
+
<ANCHOR id="G-ASCII-DTOSTR-BUF-SIZE:CAPS" href="glib/glib-String-Utility-Functions.html#G-ASCII-DTOSTR-BUF-SIZE:CAPS">
|
790
|
+
<ANCHOR id="g-ascii-strtod" href="glib/glib-String-Utility-Functions.html#g-ascii-strtod">
|
791
|
+
<ANCHOR id="g-ascii-dtostr" href="glib/glib-String-Utility-Functions.html#g-ascii-dtostr">
|
792
|
+
<ANCHOR id="g-ascii-formatd" href="glib/glib-String-Utility-Functions.html#g-ascii-formatd">
|
793
|
+
<ANCHOR id="g-strtod" href="glib/glib-String-Utility-Functions.html#g-strtod">
|
794
|
+
<ANCHOR id="g-strchug" href="glib/glib-String-Utility-Functions.html#g-strchug">
|
795
|
+
<ANCHOR id="g-strchomp" href="glib/glib-String-Utility-Functions.html#g-strchomp">
|
796
|
+
<ANCHOR id="g-strstrip" href="glib/glib-String-Utility-Functions.html#g-strstrip">
|
797
|
+
<ANCHOR id="g-strdelimit" href="glib/glib-String-Utility-Functions.html#g-strdelimit">
|
798
|
+
<ANCHOR id="G-STR-DELIMITERS:CAPS" href="glib/glib-String-Utility-Functions.html#G-STR-DELIMITERS:CAPS">
|
799
|
+
<ANCHOR id="g-strescape" href="glib/glib-String-Utility-Functions.html#g-strescape">
|
800
|
+
<ANCHOR id="g-strcompress" href="glib/glib-String-Utility-Functions.html#g-strcompress">
|
801
|
+
<ANCHOR id="g-strcanon" href="glib/glib-String-Utility-Functions.html#g-strcanon">
|
802
|
+
<ANCHOR id="g-strsplit" href="glib/glib-String-Utility-Functions.html#g-strsplit">
|
803
|
+
<ANCHOR id="g-strsplit-set" href="glib/glib-String-Utility-Functions.html#g-strsplit-set">
|
804
|
+
<ANCHOR id="g-strfreev" href="glib/glib-String-Utility-Functions.html#g-strfreev">
|
805
|
+
<ANCHOR id="g-strconcat" href="glib/glib-String-Utility-Functions.html#g-strconcat">
|
806
|
+
<ANCHOR id="g-strjoin" href="glib/glib-String-Utility-Functions.html#g-strjoin">
|
807
|
+
<ANCHOR id="g-strjoinv" href="glib/glib-String-Utility-Functions.html#g-strjoinv">
|
808
|
+
<ANCHOR id="g-strv-length" href="glib/glib-String-Utility-Functions.html#g-strv-length">
|
809
|
+
<ANCHOR id="g-strerror" href="glib/glib-String-Utility-Functions.html#g-strerror">
|
810
|
+
<ANCHOR id="g-strsignal" href="glib/glib-String-Utility-Functions.html#g-strsignal">
|
811
|
+
<ANCHOR id="glib-Character-Set-Conversion" href="glib/glib-Character-Set-Conversion.html">
|
812
|
+
<ANCHOR id="glib-Character-Set-Conversion.synopsis" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.synopsis">
|
813
|
+
<ANCHOR id="glib-Character-Set-Conversion.description" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.description">
|
814
|
+
<ANCHOR id="file-name-encodings" href="glib/glib-Character-Set-Conversion.html#file-name-encodings">
|
815
|
+
<ANCHOR id="glib-Character-Set-Conversion.details" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.details">
|
816
|
+
<ANCHOR id="g-convert" href="glib/glib-Character-Set-Conversion.html#g-convert">
|
817
|
+
<ANCHOR id="g-convert-with-fallback" href="glib/glib-Character-Set-Conversion.html#g-convert-with-fallback">
|
818
|
+
<ANCHOR id="GIConv" href="glib/glib-Character-Set-Conversion.html#GIConv">
|
819
|
+
<ANCHOR id="g-convert-with-iconv" href="glib/glib-Character-Set-Conversion.html#g-convert-with-iconv">
|
820
|
+
<ANCHOR id="G-CONVERT-ERROR:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR:CAPS">
|
821
|
+
<ANCHOR id="g-iconv-open" href="glib/glib-Character-Set-Conversion.html#g-iconv-open">
|
822
|
+
<ANCHOR id="g-iconv" href="glib/glib-Character-Set-Conversion.html#g-iconv">
|
823
|
+
<ANCHOR id="g-iconv-close" href="glib/glib-Character-Set-Conversion.html#g-iconv-close">
|
824
|
+
<ANCHOR id="g-locale-to-utf8" href="glib/glib-Character-Set-Conversion.html#g-locale-to-utf8">
|
825
|
+
<ANCHOR id="g-filename-to-utf8" href="glib/glib-Character-Set-Conversion.html#g-filename-to-utf8">
|
826
|
+
<ANCHOR id="g-filename-from-utf8" href="glib/glib-Character-Set-Conversion.html#g-filename-from-utf8">
|
827
|
+
<ANCHOR id="g-filename-from-uri" href="glib/glib-Character-Set-Conversion.html#g-filename-from-uri">
|
828
|
+
<ANCHOR id="g-filename-to-uri" href="glib/glib-Character-Set-Conversion.html#g-filename-to-uri">
|
829
|
+
<ANCHOR id="g-get-filename-charsets" href="glib/glib-Character-Set-Conversion.html#g-get-filename-charsets">
|
830
|
+
<ANCHOR id="g-filename-display-name" href="glib/glib-Character-Set-Conversion.html#g-filename-display-name">
|
831
|
+
<ANCHOR id="g-filename-display-basename" href="glib/glib-Character-Set-Conversion.html#g-filename-display-basename">
|
832
|
+
<ANCHOR id="g-locale-from-utf8" href="glib/glib-Character-Set-Conversion.html#g-locale-from-utf8">
|
833
|
+
<ANCHOR id="GConvertError" href="glib/glib-Character-Set-Conversion.html#GConvertError">
|
834
|
+
<ANCHOR id="G-CONVERT-ERROR-NO-CONVERSION:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR-NO-CONVERSION:CAPS">
|
835
|
+
<ANCHOR id="G-CONVERT-ERROR-ILLEGAL-SEQUENCE:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR-ILLEGAL-SEQUENCE:CAPS">
|
836
|
+
<ANCHOR id="G-CONVERT-ERROR-FAILED:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR-FAILED:CAPS">
|
837
|
+
<ANCHOR id="G-CONVERT-ERROR-PARTIAL-INPUT:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR-PARTIAL-INPUT:CAPS">
|
838
|
+
<ANCHOR id="G-CONVERT-ERROR-BAD-URI:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR-BAD-URI:CAPS">
|
839
|
+
<ANCHOR id="G-CONVERT-ERROR-NOT-ABSOLUTE-PATH:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR-NOT-ABSOLUTE-PATH:CAPS">
|
840
|
+
<ANCHOR id="g-get-charset" href="glib/glib-Character-Set-Conversion.html#g-get-charset">
|
841
|
+
<ANCHOR id="glib-Unicode-Manipulation" href="glib/glib-Unicode-Manipulation.html">
|
842
|
+
<ANCHOR id="glib-Unicode-Manipulation.synopsis" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.synopsis">
|
843
|
+
<ANCHOR id="glib-Unicode-Manipulation.description" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.description">
|
844
|
+
<ANCHOR id="glib-Unicode-Manipulation.details" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.details">
|
845
|
+
<ANCHOR id="gunichar" href="glib/glib-Unicode-Manipulation.html#gunichar">
|
846
|
+
<ANCHOR id="gunichar2" href="glib/glib-Unicode-Manipulation.html#gunichar2">
|
847
|
+
<ANCHOR id="g-unichar-validate" href="glib/glib-Unicode-Manipulation.html#g-unichar-validate">
|
848
|
+
<ANCHOR id="g-unichar-isalnum" href="glib/glib-Unicode-Manipulation.html#g-unichar-isalnum">
|
849
|
+
<ANCHOR id="g-unichar-isalpha" href="glib/glib-Unicode-Manipulation.html#g-unichar-isalpha">
|
850
|
+
<ANCHOR id="g-unichar-iscntrl" href="glib/glib-Unicode-Manipulation.html#g-unichar-iscntrl">
|
851
|
+
<ANCHOR id="g-unichar-isdefined" href="glib/glib-Unicode-Manipulation.html#g-unichar-isdefined">
|
852
|
+
<ANCHOR id="g-unichar-isdigit" href="glib/glib-Unicode-Manipulation.html#g-unichar-isdigit">
|
853
|
+
<ANCHOR id="g-unichar-isgraph" href="glib/glib-Unicode-Manipulation.html#g-unichar-isgraph">
|
854
|
+
<ANCHOR id="g-unichar-islower" href="glib/glib-Unicode-Manipulation.html#g-unichar-islower">
|
855
|
+
<ANCHOR id="g-unichar-ismark" href="glib/glib-Unicode-Manipulation.html#g-unichar-ismark">
|
856
|
+
<ANCHOR id="g-unichar-isprint" href="glib/glib-Unicode-Manipulation.html#g-unichar-isprint">
|
857
|
+
<ANCHOR id="g-unichar-ispunct" href="glib/glib-Unicode-Manipulation.html#g-unichar-ispunct">
|
858
|
+
<ANCHOR id="g-unichar-isspace" href="glib/glib-Unicode-Manipulation.html#g-unichar-isspace">
|
859
|
+
<ANCHOR id="g-unichar-istitle" href="glib/glib-Unicode-Manipulation.html#g-unichar-istitle">
|
860
|
+
<ANCHOR id="g-unichar-isupper" href="glib/glib-Unicode-Manipulation.html#g-unichar-isupper">
|
861
|
+
<ANCHOR id="g-unichar-isxdigit" href="glib/glib-Unicode-Manipulation.html#g-unichar-isxdigit">
|
862
|
+
<ANCHOR id="g-unichar-iswide" href="glib/glib-Unicode-Manipulation.html#g-unichar-iswide">
|
863
|
+
<ANCHOR id="g-unichar-iswide-cjk" href="glib/glib-Unicode-Manipulation.html#g-unichar-iswide-cjk">
|
864
|
+
<ANCHOR id="g-unichar-iszerowidth" href="glib/glib-Unicode-Manipulation.html#g-unichar-iszerowidth">
|
865
|
+
<ANCHOR id="g-unichar-toupper" href="glib/glib-Unicode-Manipulation.html#g-unichar-toupper">
|
866
|
+
<ANCHOR id="g-unichar-tolower" href="glib/glib-Unicode-Manipulation.html#g-unichar-tolower">
|
867
|
+
<ANCHOR id="g-unichar-totitle" href="glib/glib-Unicode-Manipulation.html#g-unichar-totitle">
|
868
|
+
<ANCHOR id="g-unichar-digit-value" href="glib/glib-Unicode-Manipulation.html#g-unichar-digit-value">
|
869
|
+
<ANCHOR id="g-unichar-xdigit-value" href="glib/glib-Unicode-Manipulation.html#g-unichar-xdigit-value">
|
870
|
+
<ANCHOR id="GUnicodeType" href="glib/glib-Unicode-Manipulation.html#GUnicodeType">
|
871
|
+
<ANCHOR id="G-UNICODE-CONTROL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-CONTROL:CAPS">
|
872
|
+
<ANCHOR id="G-UNICODE-FORMAT:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-FORMAT:CAPS">
|
873
|
+
<ANCHOR id="G-UNICODE-UNASSIGNED:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-UNASSIGNED:CAPS">
|
874
|
+
<ANCHOR id="G-UNICODE-PRIVATE-USE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-PRIVATE-USE:CAPS">
|
875
|
+
<ANCHOR id="G-UNICODE-SURROGATE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SURROGATE:CAPS">
|
876
|
+
<ANCHOR id="G-UNICODE-LOWERCASE-LETTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-LOWERCASE-LETTER:CAPS">
|
877
|
+
<ANCHOR id="G-UNICODE-MODIFIER-LETTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-MODIFIER-LETTER:CAPS">
|
878
|
+
<ANCHOR id="G-UNICODE-OTHER-LETTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-OTHER-LETTER:CAPS">
|
879
|
+
<ANCHOR id="G-UNICODE-TITLECASE-LETTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-TITLECASE-LETTER:CAPS">
|
880
|
+
<ANCHOR id="G-UNICODE-UPPERCASE-LETTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-UPPERCASE-LETTER:CAPS">
|
881
|
+
<ANCHOR id="G-UNICODE-COMBINING-MARK:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-COMBINING-MARK:CAPS">
|
882
|
+
<ANCHOR id="G-UNICODE-ENCLOSING-MARK:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-ENCLOSING-MARK:CAPS">
|
883
|
+
<ANCHOR id="G-UNICODE-NON-SPACING-MARK:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-NON-SPACING-MARK:CAPS">
|
884
|
+
<ANCHOR id="G-UNICODE-DECIMAL-NUMBER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-DECIMAL-NUMBER:CAPS">
|
885
|
+
<ANCHOR id="G-UNICODE-LETTER-NUMBER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-LETTER-NUMBER:CAPS">
|
886
|
+
<ANCHOR id="G-UNICODE-OTHER-NUMBER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-OTHER-NUMBER:CAPS">
|
887
|
+
<ANCHOR id="G-UNICODE-CONNECT-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-CONNECT-PUNCTUATION:CAPS">
|
888
|
+
<ANCHOR id="G-UNICODE-DASH-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-DASH-PUNCTUATION:CAPS">
|
889
|
+
<ANCHOR id="G-UNICODE-CLOSE-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-CLOSE-PUNCTUATION:CAPS">
|
890
|
+
<ANCHOR id="G-UNICODE-FINAL-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-FINAL-PUNCTUATION:CAPS">
|
891
|
+
<ANCHOR id="G-UNICODE-INITIAL-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-INITIAL-PUNCTUATION:CAPS">
|
892
|
+
<ANCHOR id="G-UNICODE-OTHER-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-OTHER-PUNCTUATION:CAPS">
|
893
|
+
<ANCHOR id="G-UNICODE-OPEN-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-OPEN-PUNCTUATION:CAPS">
|
894
|
+
<ANCHOR id="G-UNICODE-CURRENCY-SYMBOL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-CURRENCY-SYMBOL:CAPS">
|
895
|
+
<ANCHOR id="G-UNICODE-MODIFIER-SYMBOL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-MODIFIER-SYMBOL:CAPS">
|
896
|
+
<ANCHOR id="G-UNICODE-MATH-SYMBOL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-MATH-SYMBOL:CAPS">
|
897
|
+
<ANCHOR id="G-UNICODE-OTHER-SYMBOL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-OTHER-SYMBOL:CAPS">
|
898
|
+
<ANCHOR id="G-UNICODE-LINE-SEPARATOR:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-LINE-SEPARATOR:CAPS">
|
899
|
+
<ANCHOR id="G-UNICODE-PARAGRAPH-SEPARATOR:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-PARAGRAPH-SEPARATOR:CAPS">
|
900
|
+
<ANCHOR id="G-UNICODE-SPACE-SEPARATOR:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SPACE-SEPARATOR:CAPS">
|
901
|
+
<ANCHOR id="g-unichar-type" href="glib/glib-Unicode-Manipulation.html#g-unichar-type">
|
902
|
+
<ANCHOR id="GUnicodeBreakType" href="glib/glib-Unicode-Manipulation.html#GUnicodeBreakType">
|
903
|
+
<ANCHOR id="G-UNICODE-BREAK-MANDATORY:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-MANDATORY:CAPS">
|
904
|
+
<ANCHOR id="G-UNICODE-BREAK-CARRIAGE-RETURN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-CARRIAGE-RETURN:CAPS">
|
905
|
+
<ANCHOR id="G-UNICODE-BREAK-LINE-FEED:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-LINE-FEED:CAPS">
|
906
|
+
<ANCHOR id="G-UNICODE-BREAK-COMBINING-MARK:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-COMBINING-MARK:CAPS">
|
907
|
+
<ANCHOR id="G-UNICODE-BREAK-SURROGATE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-SURROGATE:CAPS">
|
908
|
+
<ANCHOR id="G-UNICODE-BREAK-ZERO-WIDTH-SPACE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-ZERO-WIDTH-SPACE:CAPS">
|
909
|
+
<ANCHOR id="G-UNICODE-BREAK-INSEPARABLE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-INSEPARABLE:CAPS">
|
910
|
+
<ANCHOR id="G-UNICODE-BREAK-NON-BREAKING-GLUE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NON-BREAKING-GLUE:CAPS">
|
911
|
+
<ANCHOR id="G-UNICODE-BREAK-CONTINGENT:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-CONTINGENT:CAPS">
|
912
|
+
<ANCHOR id="G-UNICODE-BREAK-SPACE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-SPACE:CAPS">
|
913
|
+
<ANCHOR id="G-UNICODE-BREAK-AFTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-AFTER:CAPS">
|
914
|
+
<ANCHOR id="G-UNICODE-BREAK-BEFORE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-BEFORE:CAPS">
|
915
|
+
<ANCHOR id="G-UNICODE-BREAK-BEFORE-AND-AFTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-BEFORE-AND-AFTER:CAPS">
|
916
|
+
<ANCHOR id="G-UNICODE-BREAK-HYPHEN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HYPHEN:CAPS">
|
917
|
+
<ANCHOR id="G-UNICODE-BREAK-NON-STARTER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NON-STARTER:CAPS">
|
918
|
+
<ANCHOR id="G-UNICODE-BREAK-OPEN-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-OPEN-PUNCTUATION:CAPS">
|
919
|
+
<ANCHOR id="G-UNICODE-BREAK-CLOSE-PUNCTUATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-CLOSE-PUNCTUATION:CAPS">
|
920
|
+
<ANCHOR id="G-UNICODE-BREAK-QUOTATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-QUOTATION:CAPS">
|
921
|
+
<ANCHOR id="G-UNICODE-BREAK-EXCLAMATION:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-EXCLAMATION:CAPS">
|
922
|
+
<ANCHOR id="G-UNICODE-BREAK-IDEOGRAPHIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-IDEOGRAPHIC:CAPS">
|
923
|
+
<ANCHOR id="G-UNICODE-BREAK-NUMERIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NUMERIC:CAPS">
|
924
|
+
<ANCHOR id="G-UNICODE-BREAK-INFIX-SEPARATOR:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-INFIX-SEPARATOR:CAPS">
|
925
|
+
<ANCHOR id="G-UNICODE-BREAK-SYMBOL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-SYMBOL:CAPS">
|
926
|
+
<ANCHOR id="G-UNICODE-BREAK-ALPHABETIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-ALPHABETIC:CAPS">
|
927
|
+
<ANCHOR id="G-UNICODE-BREAK-PREFIX:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-PREFIX:CAPS">
|
928
|
+
<ANCHOR id="G-UNICODE-BREAK-POSTFIX:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-POSTFIX:CAPS">
|
929
|
+
<ANCHOR id="G-UNICODE-BREAK-COMPLEX-CONTEXT:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-COMPLEX-CONTEXT:CAPS">
|
930
|
+
<ANCHOR id="G-UNICODE-BREAK-AMBIGUOUS:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-AMBIGUOUS:CAPS">
|
931
|
+
<ANCHOR id="G-UNICODE-BREAK-UNKNOWN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-UNKNOWN:CAPS">
|
932
|
+
<ANCHOR id="G-UNICODE-BREAK-NEXT-LINE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NEXT-LINE:CAPS">
|
933
|
+
<ANCHOR id="G-UNICODE-BREAK-WORD-JOINER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-WORD-JOINER:CAPS">
|
934
|
+
<ANCHOR id="G-UNICODE-BREAK-HANGUL-L-JAMO:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-L-JAMO:CAPS">
|
935
|
+
<ANCHOR id="G-UNICODE-BREAK-HANGUL-V-JAMO:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-V-JAMO:CAPS">
|
936
|
+
<ANCHOR id="G-UNICODE-BREAK-HANGUL-T-JAMO:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-T-JAMO:CAPS">
|
937
|
+
<ANCHOR id="G-UNICODE-BREAK-HANGUL-LV-SYLLABLE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-LV-SYLLABLE:CAPS">
|
938
|
+
<ANCHOR id="G-UNICODE-BREAK-HANGUL-LVT-SYLLABLE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-LVT-SYLLABLE:CAPS">
|
939
|
+
<ANCHOR id="g-unichar-break-type" href="glib/glib-Unicode-Manipulation.html#g-unichar-break-type">
|
940
|
+
<ANCHOR id="g-unichar-combining-class" href="glib/glib-Unicode-Manipulation.html#g-unichar-combining-class">
|
941
|
+
<ANCHOR id="g-unicode-canonical-ordering" href="glib/glib-Unicode-Manipulation.html#g-unicode-canonical-ordering">
|
942
|
+
<ANCHOR id="g-unicode-canonical-decomposition" href="glib/glib-Unicode-Manipulation.html#g-unicode-canonical-decomposition">
|
943
|
+
<ANCHOR id="g-unichar-get-mirror-char" href="glib/glib-Unicode-Manipulation.html#g-unichar-get-mirror-char">
|
944
|
+
<ANCHOR id="GUnicodeScript" href="glib/glib-Unicode-Manipulation.html#GUnicodeScript">
|
945
|
+
<ANCHOR id="G-UNICODE-SCRIPT-INVALID-CODE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-INVALID-CODE:CAPS">
|
946
|
+
<ANCHOR id="G-UNICODE-SCRIPT-COMMON:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-COMMON:CAPS">
|
947
|
+
<ANCHOR id="G-UNICODE-SCRIPT-INHERITED:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-INHERITED:CAPS">
|
948
|
+
<ANCHOR id="G-UNICODE-SCRIPT-ARABIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ARABIC:CAPS">
|
949
|
+
<ANCHOR id="G-UNICODE-SCRIPT-ARMENIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ARMENIAN:CAPS">
|
950
|
+
<ANCHOR id="G-UNICODE-SCRIPT-BENGALI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BENGALI:CAPS">
|
951
|
+
<ANCHOR id="G-UNICODE-SCRIPT-BOPOMOFO:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BOPOMOFO:CAPS">
|
952
|
+
<ANCHOR id="G-UNICODE-SCRIPT-CHEROKEE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CHEROKEE:CAPS">
|
953
|
+
<ANCHOR id="G-UNICODE-SCRIPT-COPTIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-COPTIC:CAPS">
|
954
|
+
<ANCHOR id="G-UNICODE-SCRIPT-CYRILLIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CYRILLIC:CAPS">
|
955
|
+
<ANCHOR id="G-UNICODE-SCRIPT-DESERET:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-DESERET:CAPS">
|
956
|
+
<ANCHOR id="G-UNICODE-SCRIPT-DEVANAGARI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-DEVANAGARI:CAPS">
|
957
|
+
<ANCHOR id="G-UNICODE-SCRIPT-ETHIOPIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ETHIOPIC:CAPS">
|
958
|
+
<ANCHOR id="G-UNICODE-SCRIPT-GEORGIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GEORGIAN:CAPS">
|
959
|
+
<ANCHOR id="G-UNICODE-SCRIPT-GOTHIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GOTHIC:CAPS">
|
960
|
+
<ANCHOR id="G-UNICODE-SCRIPT-GREEK:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GREEK:CAPS">
|
961
|
+
<ANCHOR id="G-UNICODE-SCRIPT-GUJARATI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GUJARATI:CAPS">
|
962
|
+
<ANCHOR id="G-UNICODE-SCRIPT-GURMUKHI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GURMUKHI:CAPS">
|
963
|
+
<ANCHOR id="G-UNICODE-SCRIPT-HAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HAN:CAPS">
|
964
|
+
<ANCHOR id="G-UNICODE-SCRIPT-HANGUL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HANGUL:CAPS">
|
965
|
+
<ANCHOR id="G-UNICODE-SCRIPT-HEBREW:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HEBREW:CAPS">
|
966
|
+
<ANCHOR id="G-UNICODE-SCRIPT-HIRAGANA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HIRAGANA:CAPS">
|
967
|
+
<ANCHOR id="G-UNICODE-SCRIPT-KANNADA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KANNADA:CAPS">
|
968
|
+
<ANCHOR id="G-UNICODE-SCRIPT-KATAKANA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KATAKANA:CAPS">
|
969
|
+
<ANCHOR id="G-UNICODE-SCRIPT-KHMER:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KHMER:CAPS">
|
970
|
+
<ANCHOR id="G-UNICODE-SCRIPT-LAO:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LAO:CAPS">
|
971
|
+
<ANCHOR id="G-UNICODE-SCRIPT-LATIN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LATIN:CAPS">
|
972
|
+
<ANCHOR id="G-UNICODE-SCRIPT-MALAYALAM:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-MALAYALAM:CAPS">
|
973
|
+
<ANCHOR id="G-UNICODE-SCRIPT-MONGOLIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-MONGOLIAN:CAPS">
|
974
|
+
<ANCHOR id="G-UNICODE-SCRIPT-MYANMAR:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-MYANMAR:CAPS">
|
975
|
+
<ANCHOR id="G-UNICODE-SCRIPT-OGHAM:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OGHAM:CAPS">
|
976
|
+
<ANCHOR id="G-UNICODE-SCRIPT-OLD-ITALIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OLD-ITALIC:CAPS">
|
977
|
+
<ANCHOR id="G-UNICODE-SCRIPT-ORIYA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ORIYA:CAPS">
|
978
|
+
<ANCHOR id="G-UNICODE-SCRIPT-RUNIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-RUNIC:CAPS">
|
979
|
+
<ANCHOR id="G-UNICODE-SCRIPT-SINHALA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SINHALA:CAPS">
|
980
|
+
<ANCHOR id="G-UNICODE-SCRIPT-SYRIAC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SYRIAC:CAPS">
|
981
|
+
<ANCHOR id="G-UNICODE-SCRIPT-TAMIL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAMIL:CAPS">
|
982
|
+
<ANCHOR id="G-UNICODE-SCRIPT-TELUGU:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TELUGU:CAPS">
|
983
|
+
<ANCHOR id="G-UNICODE-SCRIPT-THAANA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-THAANA:CAPS">
|
984
|
+
<ANCHOR id="G-UNICODE-SCRIPT-THAI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-THAI:CAPS">
|
985
|
+
<ANCHOR id="G-UNICODE-SCRIPT-TIBETAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TIBETAN:CAPS">
|
986
|
+
<ANCHOR id="G-UNICODE-SCRIPT-CANADIAN-ABORIGINAL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CANADIAN-ABORIGINAL:CAPS">
|
987
|
+
<ANCHOR id="G-UNICODE-SCRIPT-YI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-YI:CAPS">
|
988
|
+
<ANCHOR id="G-UNICODE-SCRIPT-TAGALOG:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAGALOG:CAPS">
|
989
|
+
<ANCHOR id="G-UNICODE-SCRIPT-HANUNOO:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HANUNOO:CAPS">
|
990
|
+
<ANCHOR id="G-UNICODE-SCRIPT-BUHID:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BUHID:CAPS">
|
991
|
+
<ANCHOR id="G-UNICODE-SCRIPT-TAGBANWA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAGBANWA:CAPS">
|
992
|
+
<ANCHOR id="G-UNICODE-SCRIPT-BRAILLE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BRAILLE:CAPS">
|
993
|
+
<ANCHOR id="G-UNICODE-SCRIPT-CYPRIOT:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CYPRIOT:CAPS">
|
994
|
+
<ANCHOR id="G-UNICODE-SCRIPT-LIMBU:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LIMBU:CAPS">
|
995
|
+
<ANCHOR id="G-UNICODE-SCRIPT-OSMANYA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OSMANYA:CAPS">
|
996
|
+
<ANCHOR id="G-UNICODE-SCRIPT-SHAVIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SHAVIAN:CAPS">
|
997
|
+
<ANCHOR id="G-UNICODE-SCRIPT-LINEAR-B:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LINEAR-B:CAPS">
|
998
|
+
<ANCHOR id="G-UNICODE-SCRIPT-TAI-LE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAI-LE:CAPS">
|
999
|
+
<ANCHOR id="G-UNICODE-SCRIPT-UGARITIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-UGARITIC:CAPS">
|
1000
|
+
<ANCHOR id="G-UNICODE-SCRIPT-NEW-TAI-LUE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-NEW-TAI-LUE:CAPS">
|
1001
|
+
<ANCHOR id="G-UNICODE-SCRIPT-BUGINESE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BUGINESE:CAPS">
|
1002
|
+
<ANCHOR id="G-UNICODE-SCRIPT-GLAGOLITIC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GLAGOLITIC:CAPS">
|
1003
|
+
<ANCHOR id="G-UNICODE-SCRIPT-TIFINAGH:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TIFINAGH:CAPS">
|
1004
|
+
<ANCHOR id="G-UNICODE-SCRIPT-SYLOTI-NAGRI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SYLOTI-NAGRI:CAPS">
|
1005
|
+
<ANCHOR id="G-UNICODE-SCRIPT-OLD-PERSIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OLD-PERSIAN:CAPS">
|
1006
|
+
<ANCHOR id="G-UNICODE-SCRIPT-KHAROSHTHI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KHAROSHTHI:CAPS">
|
1007
|
+
<ANCHOR id="G-UNICODE-SCRIPT-UNKNOWN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-UNKNOWN:CAPS">
|
1008
|
+
<ANCHOR id="G-UNICODE-SCRIPT-BALINESE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BALINESE:CAPS">
|
1009
|
+
<ANCHOR id="G-UNICODE-SCRIPT-CUNEIFORM:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CUNEIFORM:CAPS">
|
1010
|
+
<ANCHOR id="G-UNICODE-SCRIPT-PHOENICIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-PHOENICIAN:CAPS">
|
1011
|
+
<ANCHOR id="G-UNICODE-SCRIPT-PHAGS-PA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-PHAGS-PA:CAPS">
|
1012
|
+
<ANCHOR id="G-UNICODE-SCRIPT-NKO:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-NKO:CAPS">
|
1013
|
+
<ANCHOR id="G-UNICODE-SCRIPT-KAYAH-LI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KAYAH-LI:CAPS">
|
1014
|
+
<ANCHOR id="G-UNICODE-SCRIPT-LEPCHA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LEPCHA:CAPS">
|
1015
|
+
<ANCHOR id="G-UNICODE-SCRIPT-REJANG:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-REJANG:CAPS">
|
1016
|
+
<ANCHOR id="G-UNICODE-SCRIPT-SUNDANESE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SUNDANESE:CAPS">
|
1017
|
+
<ANCHOR id="G-UNICODE-SCRIPT-SAURASHTRA:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SAURASHTRA:CAPS">
|
1018
|
+
<ANCHOR id="G-UNICODE-SCRIPT-CHAM:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CHAM:CAPS">
|
1019
|
+
<ANCHOR id="G-UNICODE-SCRIPT-OL-CHIKI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OL-CHIKI:CAPS">
|
1020
|
+
<ANCHOR id="G-UNICODE-SCRIPT-VAI:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-VAI:CAPS">
|
1021
|
+
<ANCHOR id="G-UNICODE-SCRIPT-CARIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CARIAN:CAPS">
|
1022
|
+
<ANCHOR id="G-UNICODE-SCRIPT-LYCIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LYCIAN:CAPS">
|
1023
|
+
<ANCHOR id="G-UNICODE-SCRIPT-LYDIAN:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LYDIAN:CAPS">
|
1024
|
+
<ANCHOR id="g-unichar-get-script" href="glib/glib-Unicode-Manipulation.html#g-unichar-get-script">
|
1025
|
+
<ANCHOR id="g-utf8-next-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-next-char">
|
1026
|
+
<ANCHOR id="g-utf8-get-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-get-char">
|
1027
|
+
<ANCHOR id="g-utf8-get-char-validated" href="glib/glib-Unicode-Manipulation.html#g-utf8-get-char-validated">
|
1028
|
+
<ANCHOR id="g-utf8-offset-to-pointer" href="glib/glib-Unicode-Manipulation.html#g-utf8-offset-to-pointer">
|
1029
|
+
<ANCHOR id="g-utf8-pointer-to-offset" href="glib/glib-Unicode-Manipulation.html#g-utf8-pointer-to-offset">
|
1030
|
+
<ANCHOR id="g-utf8-prev-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-prev-char">
|
1031
|
+
<ANCHOR id="g-utf8-find-next-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-find-next-char">
|
1032
|
+
<ANCHOR id="g-utf8-find-prev-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-find-prev-char">
|
1033
|
+
<ANCHOR id="g-utf8-strlen" href="glib/glib-Unicode-Manipulation.html#g-utf8-strlen">
|
1034
|
+
<ANCHOR id="g-utf8-strncpy" href="glib/glib-Unicode-Manipulation.html#g-utf8-strncpy">
|
1035
|
+
<ANCHOR id="g-utf8-strchr" href="glib/glib-Unicode-Manipulation.html#g-utf8-strchr">
|
1036
|
+
<ANCHOR id="g-utf8-strrchr" href="glib/glib-Unicode-Manipulation.html#g-utf8-strrchr">
|
1037
|
+
<ANCHOR id="g-utf8-strreverse" href="glib/glib-Unicode-Manipulation.html#g-utf8-strreverse">
|
1038
|
+
<ANCHOR id="g-utf8-validate" href="glib/glib-Unicode-Manipulation.html#g-utf8-validate">
|
1039
|
+
<ANCHOR id="g-utf8-strup" href="glib/glib-Unicode-Manipulation.html#g-utf8-strup">
|
1040
|
+
<ANCHOR id="g-utf8-strdown" href="glib/glib-Unicode-Manipulation.html#g-utf8-strdown">
|
1041
|
+
<ANCHOR id="g-utf8-casefold" href="glib/glib-Unicode-Manipulation.html#g-utf8-casefold">
|
1042
|
+
<ANCHOR id="g-utf8-normalize" href="glib/glib-Unicode-Manipulation.html#g-utf8-normalize">
|
1043
|
+
<ANCHOR id="GNormalizeMode" href="glib/glib-Unicode-Manipulation.html#GNormalizeMode">
|
1044
|
+
<ANCHOR id="G-NORMALIZE-DEFAULT:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-DEFAULT:CAPS">
|
1045
|
+
<ANCHOR id="G-NORMALIZE-NFD:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-NFD:CAPS">
|
1046
|
+
<ANCHOR id="G-NORMALIZE-DEFAULT-COMPOSE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-DEFAULT-COMPOSE:CAPS">
|
1047
|
+
<ANCHOR id="G-NORMALIZE-NFC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-NFC:CAPS">
|
1048
|
+
<ANCHOR id="G-NORMALIZE-ALL:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-ALL:CAPS">
|
1049
|
+
<ANCHOR id="G-NORMALIZE-NFKD:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-NFKD:CAPS">
|
1050
|
+
<ANCHOR id="G-NORMALIZE-ALL-COMPOSE:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-ALL-COMPOSE:CAPS">
|
1051
|
+
<ANCHOR id="G-NORMALIZE-NFKC:CAPS" href="glib/glib-Unicode-Manipulation.html#G-NORMALIZE-NFKC:CAPS">
|
1052
|
+
<ANCHOR id="g-utf8-collate" href="glib/glib-Unicode-Manipulation.html#g-utf8-collate">
|
1053
|
+
<ANCHOR id="g-utf8-collate-key" href="glib/glib-Unicode-Manipulation.html#g-utf8-collate-key">
|
1054
|
+
<ANCHOR id="g-utf8-collate-key-for-filename" href="glib/glib-Unicode-Manipulation.html#g-utf8-collate-key-for-filename">
|
1055
|
+
<ANCHOR id="g-utf8-to-utf16" href="glib/glib-Unicode-Manipulation.html#g-utf8-to-utf16">
|
1056
|
+
<ANCHOR id="g-utf8-to-ucs4" href="glib/glib-Unicode-Manipulation.html#g-utf8-to-ucs4">
|
1057
|
+
<ANCHOR id="g-utf8-to-ucs4-fast" href="glib/glib-Unicode-Manipulation.html#g-utf8-to-ucs4-fast">
|
1058
|
+
<ANCHOR id="g-utf16-to-ucs4" href="glib/glib-Unicode-Manipulation.html#g-utf16-to-ucs4">
|
1059
|
+
<ANCHOR id="g-utf16-to-utf8" href="glib/glib-Unicode-Manipulation.html#g-utf16-to-utf8">
|
1060
|
+
<ANCHOR id="g-ucs4-to-utf16" href="glib/glib-Unicode-Manipulation.html#g-ucs4-to-utf16">
|
1061
|
+
<ANCHOR id="g-ucs4-to-utf8" href="glib/glib-Unicode-Manipulation.html#g-ucs4-to-utf8">
|
1062
|
+
<ANCHOR id="g-unichar-to-utf8" href="glib/glib-Unicode-Manipulation.html#g-unichar-to-utf8">
|
1063
|
+
<ANCHOR id="glib-Unicode-Manipulation.see-also" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.see-also">
|
1064
|
+
<ANCHOR id="glib-Base64-Encoding" href="glib/glib-Base64-Encoding.html">
|
1065
|
+
<ANCHOR id="glib-Base64-Encoding.synopsis" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.synopsis">
|
1066
|
+
<ANCHOR id="glib-Base64-Encoding.description" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.description">
|
1067
|
+
<ANCHOR id="glib-Base64-Encoding.details" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.details">
|
1068
|
+
<ANCHOR id="g-base64-encode-step" href="glib/glib-Base64-Encoding.html#g-base64-encode-step">
|
1069
|
+
<ANCHOR id="g-base64-encode-close" href="glib/glib-Base64-Encoding.html#g-base64-encode-close">
|
1070
|
+
<ANCHOR id="g-base64-encode" href="glib/glib-Base64-Encoding.html#g-base64-encode">
|
1071
|
+
<ANCHOR id="g-base64-decode-step" href="glib/glib-Base64-Encoding.html#g-base64-decode-step">
|
1072
|
+
<ANCHOR id="g-base64-decode" href="glib/glib-Base64-Encoding.html#g-base64-decode">
|
1073
|
+
<ANCHOR id="g-base64-decode-inplace" href="glib/glib-Base64-Encoding.html#g-base64-decode-inplace">
|
1074
|
+
<ANCHOR id="glib-Data-Checksums" href="glib/glib-Data-Checksums.html">
|
1075
|
+
<ANCHOR id="glib-Data-Checksums.synopsis" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.synopsis">
|
1076
|
+
<ANCHOR id="glib-Data-Checksums.description" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.description">
|
1077
|
+
<ANCHOR id="glib-Data-Checksums.details" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.details">
|
1078
|
+
<ANCHOR id="GChecksumType" href="glib/glib-Data-Checksums.html#GChecksumType">
|
1079
|
+
<ANCHOR id="G-CHECKSUM-MD5:CAPS" href="glib/glib-Data-Checksums.html#G-CHECKSUM-MD5:CAPS">
|
1080
|
+
<ANCHOR id="G-CHECKSUM-SHA1:CAPS" href="glib/glib-Data-Checksums.html#G-CHECKSUM-SHA1:CAPS">
|
1081
|
+
<ANCHOR id="G-CHECKSUM-SHA256:CAPS" href="glib/glib-Data-Checksums.html#G-CHECKSUM-SHA256:CAPS">
|
1082
|
+
<ANCHOR id="g-checksum-type-get-length" href="glib/glib-Data-Checksums.html#g-checksum-type-get-length">
|
1083
|
+
<ANCHOR id="GChecksum" href="glib/glib-Data-Checksums.html#GChecksum">
|
1084
|
+
<ANCHOR id="g-checksum-new" href="glib/glib-Data-Checksums.html#g-checksum-new">
|
1085
|
+
<ANCHOR id="g-checksum-copy" href="glib/glib-Data-Checksums.html#g-checksum-copy">
|
1086
|
+
<ANCHOR id="g-checksum-free" href="glib/glib-Data-Checksums.html#g-checksum-free">
|
1087
|
+
<ANCHOR id="g-checksum-reset" href="glib/glib-Data-Checksums.html#g-checksum-reset">
|
1088
|
+
<ANCHOR id="g-checksum-update" href="glib/glib-Data-Checksums.html#g-checksum-update">
|
1089
|
+
<ANCHOR id="g-checksum-get-string" href="glib/glib-Data-Checksums.html#g-checksum-get-string">
|
1090
|
+
<ANCHOR id="g-checksum-get-digest" href="glib/glib-Data-Checksums.html#g-checksum-get-digest">
|
1091
|
+
<ANCHOR id="g-compute-checksum-for-data" href="glib/glib-Data-Checksums.html#g-compute-checksum-for-data">
|
1092
|
+
<ANCHOR id="g-compute-checksum-for-string" href="glib/glib-Data-Checksums.html#g-compute-checksum-for-string">
|
1093
|
+
<ANCHOR id="glib-I18N" href="glib/glib-I18N.html">
|
1094
|
+
<ANCHOR id="glib-I18N.synopsis" href="glib/glib-I18N.html#glib-I18N.synopsis">
|
1095
|
+
<ANCHOR id="glib-I18N.description" href="glib/glib-I18N.html#glib-I18N.description">
|
1096
|
+
<ANCHOR id="glib-I18N.details" href="glib/glib-I18N.html#glib-I18N.details">
|
1097
|
+
<ANCHOR id="Q-:CAPS" href="glib/glib-I18N.html#Q-:CAPS">
|
1098
|
+
<ANCHOR id="C-:CAPS" href="glib/glib-I18N.html#C-:CAPS">
|
1099
|
+
<ANCHOR id="N-:CAPS" href="glib/glib-I18N.html#N-:CAPS">
|
1100
|
+
<ANCHOR id="NC-:CAPS" href="glib/glib-I18N.html#NC-:CAPS">
|
1101
|
+
<ANCHOR id="g-dgettext" href="glib/glib-I18N.html#g-dgettext">
|
1102
|
+
<ANCHOR id="g-dngettext" href="glib/glib-I18N.html#g-dngettext">
|
1103
|
+
<ANCHOR id="g-dpgettext" href="glib/glib-I18N.html#g-dpgettext">
|
1104
|
+
<ANCHOR id="g-dpgettext2" href="glib/glib-I18N.html#g-dpgettext2">
|
1105
|
+
<ANCHOR id="g-strip-context" href="glib/glib-I18N.html#g-strip-context">
|
1106
|
+
<ANCHOR id="g-get-language-names" href="glib/glib-I18N.html#g-get-language-names">
|
1107
|
+
<ANCHOR id="glib-I18N.see-also" href="glib/glib-I18N.html#glib-I18N.see-also">
|
1108
|
+
<ANCHOR id="glib-Date-and-Time-Functions" href="glib/glib-Date-and-Time-Functions.html">
|
1109
|
+
<ANCHOR id="glib-Date-and-Time-Functions.synopsis" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.synopsis">
|
1110
|
+
<ANCHOR id="glib-Date-and-Time-Functions.description" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.description">
|
1111
|
+
<ANCHOR id="glib-Date-and-Time-Functions.details" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.details">
|
1112
|
+
<ANCHOR id="G-USEC-PER-SEC:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-USEC-PER-SEC:CAPS">
|
1113
|
+
<ANCHOR id="GTimeVal" href="glib/glib-Date-and-Time-Functions.html#GTimeVal">
|
1114
|
+
<ANCHOR id="g-get-current-time" href="glib/glib-Date-and-Time-Functions.html#g-get-current-time">
|
1115
|
+
<ANCHOR id="g-usleep" href="glib/glib-Date-and-Time-Functions.html#g-usleep">
|
1116
|
+
<ANCHOR id="g-time-val-add" href="glib/glib-Date-and-Time-Functions.html#g-time-val-add">
|
1117
|
+
<ANCHOR id="g-time-val-from-iso8601" href="glib/glib-Date-and-Time-Functions.html#g-time-val-from-iso8601">
|
1118
|
+
<ANCHOR id="g-time-val-to-iso8601" href="glib/glib-Date-and-Time-Functions.html#g-time-val-to-iso8601">
|
1119
|
+
<ANCHOR id="GDate" href="glib/glib-Date-and-Time-Functions.html#GDate">
|
1120
|
+
<ANCHOR id="GTime" href="glib/glib-Date-and-Time-Functions.html#GTime">
|
1121
|
+
<ANCHOR id="GDateDMY" href="glib/glib-Date-and-Time-Functions.html#GDateDMY">
|
1122
|
+
<ANCHOR id="G-DATE-DAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-DAY:CAPS">
|
1123
|
+
<ANCHOR id="G-DATE-MONTH:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-MONTH:CAPS">
|
1124
|
+
<ANCHOR id="G-DATE-YEAR:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-YEAR:CAPS">
|
1125
|
+
<ANCHOR id="GDateDay" href="glib/glib-Date-and-Time-Functions.html#GDateDay">
|
1126
|
+
<ANCHOR id="GDateMonth" href="glib/glib-Date-and-Time-Functions.html#GDateMonth">
|
1127
|
+
<ANCHOR id="G-DATE-BAD-MONTH:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-MONTH:CAPS">
|
1128
|
+
<ANCHOR id="G-DATE-JANUARY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-JANUARY:CAPS">
|
1129
|
+
<ANCHOR id="G-DATE-FEBRUARY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-FEBRUARY:CAPS">
|
1130
|
+
<ANCHOR id="G-DATE-MARCH:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-MARCH:CAPS">
|
1131
|
+
<ANCHOR id="G-DATE-APRIL:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-APRIL:CAPS">
|
1132
|
+
<ANCHOR id="G-DATE-MAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-MAY:CAPS">
|
1133
|
+
<ANCHOR id="G-DATE-JUNE:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-JUNE:CAPS">
|
1134
|
+
<ANCHOR id="G-DATE-JULY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-JULY:CAPS">
|
1135
|
+
<ANCHOR id="G-DATE-AUGUST:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-AUGUST:CAPS">
|
1136
|
+
<ANCHOR id="G-DATE-SEPTEMBER:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-SEPTEMBER:CAPS">
|
1137
|
+
<ANCHOR id="G-DATE-OCTOBER:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-OCTOBER:CAPS">
|
1138
|
+
<ANCHOR id="G-DATE-NOVEMBER:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-NOVEMBER:CAPS">
|
1139
|
+
<ANCHOR id="G-DATE-DECEMBER:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-DECEMBER:CAPS">
|
1140
|
+
<ANCHOR id="GDateYear" href="glib/glib-Date-and-Time-Functions.html#GDateYear">
|
1141
|
+
<ANCHOR id="GDateWeekday" href="glib/glib-Date-and-Time-Functions.html#GDateWeekday">
|
1142
|
+
<ANCHOR id="G-DATE-BAD-WEEKDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-WEEKDAY:CAPS">
|
1143
|
+
<ANCHOR id="G-DATE-MONDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-MONDAY:CAPS">
|
1144
|
+
<ANCHOR id="G-DATE-TUESDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-TUESDAY:CAPS">
|
1145
|
+
<ANCHOR id="G-DATE-WEDNESDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-WEDNESDAY:CAPS">
|
1146
|
+
<ANCHOR id="G-DATE-THURSDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-THURSDAY:CAPS">
|
1147
|
+
<ANCHOR id="G-DATE-FRIDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-FRIDAY:CAPS">
|
1148
|
+
<ANCHOR id="G-DATE-SATURDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-SATURDAY:CAPS">
|
1149
|
+
<ANCHOR id="G-DATE-SUNDAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-SUNDAY:CAPS">
|
1150
|
+
<ANCHOR id="G-DATE-BAD-DAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-DAY:CAPS">
|
1151
|
+
<ANCHOR id="G-DATE-BAD-JULIAN:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-JULIAN:CAPS">
|
1152
|
+
<ANCHOR id="G-DATE-BAD-YEAR:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-YEAR:CAPS">
|
1153
|
+
<ANCHOR id="g-date-new" href="glib/glib-Date-and-Time-Functions.html#g-date-new">
|
1154
|
+
<ANCHOR id="g-date-new-dmy" href="glib/glib-Date-and-Time-Functions.html#g-date-new-dmy">
|
1155
|
+
<ANCHOR id="g-date-new-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-new-julian">
|
1156
|
+
<ANCHOR id="g-date-clear" href="glib/glib-Date-and-Time-Functions.html#g-date-clear">
|
1157
|
+
<ANCHOR id="g-date-free" href="glib/glib-Date-and-Time-Functions.html#g-date-free">
|
1158
|
+
<ANCHOR id="g-date-set-day" href="glib/glib-Date-and-Time-Functions.html#g-date-set-day">
|
1159
|
+
<ANCHOR id="g-date-set-month" href="glib/glib-Date-and-Time-Functions.html#g-date-set-month">
|
1160
|
+
<ANCHOR id="g-date-set-year" href="glib/glib-Date-and-Time-Functions.html#g-date-set-year">
|
1161
|
+
<ANCHOR id="g-date-set-dmy" href="glib/glib-Date-and-Time-Functions.html#g-date-set-dmy">
|
1162
|
+
<ANCHOR id="g-date-set-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-set-julian">
|
1163
|
+
<ANCHOR id="g-date-set-time" href="glib/glib-Date-and-Time-Functions.html#g-date-set-time">
|
1164
|
+
<ANCHOR id="g-date-set-time-t" href="glib/glib-Date-and-Time-Functions.html#g-date-set-time-t">
|
1165
|
+
<ANCHOR id="g-date-set-time-val" href="glib/glib-Date-and-Time-Functions.html#g-date-set-time-val">
|
1166
|
+
<ANCHOR id="g-date-set-parse" href="glib/glib-Date-and-Time-Functions.html#g-date-set-parse">
|
1167
|
+
<ANCHOR id="g-date-add-days" href="glib/glib-Date-and-Time-Functions.html#g-date-add-days">
|
1168
|
+
<ANCHOR id="g-date-subtract-days" href="glib/glib-Date-and-Time-Functions.html#g-date-subtract-days">
|
1169
|
+
<ANCHOR id="g-date-add-months" href="glib/glib-Date-and-Time-Functions.html#g-date-add-months">
|
1170
|
+
<ANCHOR id="g-date-subtract-months" href="glib/glib-Date-and-Time-Functions.html#g-date-subtract-months">
|
1171
|
+
<ANCHOR id="g-date-add-years" href="glib/glib-Date-and-Time-Functions.html#g-date-add-years">
|
1172
|
+
<ANCHOR id="g-date-subtract-years" href="glib/glib-Date-and-Time-Functions.html#g-date-subtract-years">
|
1173
|
+
<ANCHOR id="g-date-days-between" href="glib/glib-Date-and-Time-Functions.html#g-date-days-between">
|
1174
|
+
<ANCHOR id="g-date-compare" href="glib/glib-Date-and-Time-Functions.html#g-date-compare">
|
1175
|
+
<ANCHOR id="g-date-clamp" href="glib/glib-Date-and-Time-Functions.html#g-date-clamp">
|
1176
|
+
<ANCHOR id="g-date-order" href="glib/glib-Date-and-Time-Functions.html#g-date-order">
|
1177
|
+
<ANCHOR id="g-date-get-day" href="glib/glib-Date-and-Time-Functions.html#g-date-get-day">
|
1178
|
+
<ANCHOR id="g-date-get-month" href="glib/glib-Date-and-Time-Functions.html#g-date-get-month">
|
1179
|
+
<ANCHOR id="g-date-get-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-year">
|
1180
|
+
<ANCHOR id="g-date-get-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-get-julian">
|
1181
|
+
<ANCHOR id="g-date-get-weekday" href="glib/glib-Date-and-Time-Functions.html#g-date-get-weekday">
|
1182
|
+
<ANCHOR id="g-date-get-day-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-day-of-year">
|
1183
|
+
<ANCHOR id="g-date-get-days-in-month" href="glib/glib-Date-and-Time-Functions.html#g-date-get-days-in-month">
|
1184
|
+
<ANCHOR id="g-date-is-first-of-month" href="glib/glib-Date-and-Time-Functions.html#g-date-is-first-of-month">
|
1185
|
+
<ANCHOR id="g-date-is-last-of-month" href="glib/glib-Date-and-Time-Functions.html#g-date-is-last-of-month">
|
1186
|
+
<ANCHOR id="g-date-is-leap-year" href="glib/glib-Date-and-Time-Functions.html#g-date-is-leap-year">
|
1187
|
+
<ANCHOR id="g-date-get-monday-week-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-monday-week-of-year">
|
1188
|
+
<ANCHOR id="g-date-get-monday-weeks-in-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-monday-weeks-in-year">
|
1189
|
+
<ANCHOR id="g-date-get-sunday-week-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-sunday-week-of-year">
|
1190
|
+
<ANCHOR id="g-date-get-sunday-weeks-in-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-sunday-weeks-in-year">
|
1191
|
+
<ANCHOR id="g-date-get-iso8601-week-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-iso8601-week-of-year">
|
1192
|
+
<ANCHOR id="g-date-strftime" href="glib/glib-Date-and-Time-Functions.html#g-date-strftime">
|
1193
|
+
<ANCHOR id="g-date-to-struct-tm" href="glib/glib-Date-and-Time-Functions.html#g-date-to-struct-tm">
|
1194
|
+
<ANCHOR id="g-date-valid" href="glib/glib-Date-and-Time-Functions.html#g-date-valid">
|
1195
|
+
<ANCHOR id="g-date-valid-day" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-day">
|
1196
|
+
<ANCHOR id="g-date-valid-month" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-month">
|
1197
|
+
<ANCHOR id="g-date-valid-year" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-year">
|
1198
|
+
<ANCHOR id="g-date-valid-dmy" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-dmy">
|
1199
|
+
<ANCHOR id="g-date-valid-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-julian">
|
1200
|
+
<ANCHOR id="g-date-valid-weekday" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-weekday">
|
1201
|
+
<ANCHOR id="glib-Random-Numbers" href="glib/glib-Random-Numbers.html">
|
1202
|
+
<ANCHOR id="glib-Random-Numbers.synopsis" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.synopsis">
|
1203
|
+
<ANCHOR id="glib-Random-Numbers.description" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.description">
|
1204
|
+
<ANCHOR id="glib-Random-Numbers.details" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.details">
|
1205
|
+
<ANCHOR id="GRand" href="glib/glib-Random-Numbers.html#GRand">
|
1206
|
+
<ANCHOR id="g-rand-new-with-seed" href="glib/glib-Random-Numbers.html#g-rand-new-with-seed">
|
1207
|
+
<ANCHOR id="g-rand-new-with-seed-array" href="glib/glib-Random-Numbers.html#g-rand-new-with-seed-array">
|
1208
|
+
<ANCHOR id="g-rand-new" href="glib/glib-Random-Numbers.html#g-rand-new">
|
1209
|
+
<ANCHOR id="g-rand-copy" href="glib/glib-Random-Numbers.html#g-rand-copy">
|
1210
|
+
<ANCHOR id="g-rand-free" href="glib/glib-Random-Numbers.html#g-rand-free">
|
1211
|
+
<ANCHOR id="g-rand-set-seed" href="glib/glib-Random-Numbers.html#g-rand-set-seed">
|
1212
|
+
<ANCHOR id="g-rand-set-seed-array" href="glib/glib-Random-Numbers.html#g-rand-set-seed-array">
|
1213
|
+
<ANCHOR id="g-rand-boolean" href="glib/glib-Random-Numbers.html#g-rand-boolean">
|
1214
|
+
<ANCHOR id="g-rand-int" href="glib/glib-Random-Numbers.html#g-rand-int">
|
1215
|
+
<ANCHOR id="g-rand-int-range" href="glib/glib-Random-Numbers.html#g-rand-int-range">
|
1216
|
+
<ANCHOR id="g-rand-double" href="glib/glib-Random-Numbers.html#g-rand-double">
|
1217
|
+
<ANCHOR id="g-rand-double-range" href="glib/glib-Random-Numbers.html#g-rand-double-range">
|
1218
|
+
<ANCHOR id="g-random-set-seed" href="glib/glib-Random-Numbers.html#g-random-set-seed">
|
1219
|
+
<ANCHOR id="g-random-boolean" href="glib/glib-Random-Numbers.html#g-random-boolean">
|
1220
|
+
<ANCHOR id="g-random-int" href="glib/glib-Random-Numbers.html#g-random-int">
|
1221
|
+
<ANCHOR id="g-random-int-range" href="glib/glib-Random-Numbers.html#g-random-int-range">
|
1222
|
+
<ANCHOR id="g-random-double" href="glib/glib-Random-Numbers.html#g-random-double">
|
1223
|
+
<ANCHOR id="g-random-double-range" href="glib/glib-Random-Numbers.html#g-random-double-range">
|
1224
|
+
<ANCHOR id="glib-Hook-Functions" href="glib/glib-Hook-Functions.html">
|
1225
|
+
<ANCHOR id="glib-Hook-Functions.synopsis" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.synopsis">
|
1226
|
+
<ANCHOR id="glib-Hook-Functions.description" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.description">
|
1227
|
+
<ANCHOR id="glib-Hook-Functions.details" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.details">
|
1228
|
+
<ANCHOR id="GHookList" href="glib/glib-Hook-Functions.html#GHookList">
|
1229
|
+
<ANCHOR id="GHookFinalizeFunc" href="glib/glib-Hook-Functions.html#GHookFinalizeFunc">
|
1230
|
+
<ANCHOR id="GHook" href="glib/glib-Hook-Functions.html#GHook">
|
1231
|
+
<ANCHOR id="GHookFunc" href="glib/glib-Hook-Functions.html#GHookFunc">
|
1232
|
+
<ANCHOR id="GHookCheckFunc" href="glib/glib-Hook-Functions.html#GHookCheckFunc">
|
1233
|
+
<ANCHOR id="g-hook-list-init" href="glib/glib-Hook-Functions.html#g-hook-list-init">
|
1234
|
+
<ANCHOR id="g-hook-list-invoke" href="glib/glib-Hook-Functions.html#g-hook-list-invoke">
|
1235
|
+
<ANCHOR id="g-hook-list-invoke-check" href="glib/glib-Hook-Functions.html#g-hook-list-invoke-check">
|
1236
|
+
<ANCHOR id="g-hook-list-marshal" href="glib/glib-Hook-Functions.html#g-hook-list-marshal">
|
1237
|
+
<ANCHOR id="GHookMarshaller" href="glib/glib-Hook-Functions.html#GHookMarshaller">
|
1238
|
+
<ANCHOR id="g-hook-list-marshal-check" href="glib/glib-Hook-Functions.html#g-hook-list-marshal-check">
|
1239
|
+
<ANCHOR id="GHookCheckMarshaller" href="glib/glib-Hook-Functions.html#GHookCheckMarshaller">
|
1240
|
+
<ANCHOR id="g-hook-list-clear" href="glib/glib-Hook-Functions.html#g-hook-list-clear">
|
1241
|
+
<ANCHOR id="g-hook-alloc" href="glib/glib-Hook-Functions.html#g-hook-alloc">
|
1242
|
+
<ANCHOR id="g-hook-append" href="glib/glib-Hook-Functions.html#g-hook-append">
|
1243
|
+
<ANCHOR id="g-hook-prepend" href="glib/glib-Hook-Functions.html#g-hook-prepend">
|
1244
|
+
<ANCHOR id="g-hook-insert-before" href="glib/glib-Hook-Functions.html#g-hook-insert-before">
|
1245
|
+
<ANCHOR id="g-hook-insert-sorted" href="glib/glib-Hook-Functions.html#g-hook-insert-sorted">
|
1246
|
+
<ANCHOR id="GHookCompareFunc" href="glib/glib-Hook-Functions.html#GHookCompareFunc">
|
1247
|
+
<ANCHOR id="g-hook-compare-ids" href="glib/glib-Hook-Functions.html#g-hook-compare-ids">
|
1248
|
+
<ANCHOR id="g-hook-get" href="glib/glib-Hook-Functions.html#g-hook-get">
|
1249
|
+
<ANCHOR id="g-hook-find" href="glib/glib-Hook-Functions.html#g-hook-find">
|
1250
|
+
<ANCHOR id="GHookFindFunc" href="glib/glib-Hook-Functions.html#GHookFindFunc">
|
1251
|
+
<ANCHOR id="g-hook-find-data" href="glib/glib-Hook-Functions.html#g-hook-find-data">
|
1252
|
+
<ANCHOR id="g-hook-find-func" href="glib/glib-Hook-Functions.html#g-hook-find-func">
|
1253
|
+
<ANCHOR id="g-hook-find-func-data" href="glib/glib-Hook-Functions.html#g-hook-find-func-data">
|
1254
|
+
<ANCHOR id="g-hook-first-valid" href="glib/glib-Hook-Functions.html#g-hook-first-valid">
|
1255
|
+
<ANCHOR id="g-hook-next-valid" href="glib/glib-Hook-Functions.html#g-hook-next-valid">
|
1256
|
+
<ANCHOR id="GHookFlagMask" href="glib/glib-Hook-Functions.html#GHookFlagMask">
|
1257
|
+
<ANCHOR id="G-HOOK-FLAG-ACTIVE:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-FLAG-ACTIVE:CAPS">
|
1258
|
+
<ANCHOR id="G-HOOK-FLAG-IN-CALL:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-FLAG-IN-CALL:CAPS">
|
1259
|
+
<ANCHOR id="G-HOOK-FLAG-MASK:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-FLAG-MASK:CAPS">
|
1260
|
+
<ANCHOR id="G-HOOK-FLAGS:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-FLAGS:CAPS">
|
1261
|
+
<ANCHOR id="G-HOOK-FLAG-USER-SHIFT:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-FLAG-USER-SHIFT:CAPS">
|
1262
|
+
<ANCHOR id="G-HOOK:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK:CAPS">
|
1263
|
+
<ANCHOR id="G-HOOK-IS-VALID:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-IS-VALID:CAPS">
|
1264
|
+
<ANCHOR id="G-HOOK-ACTIVE:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-ACTIVE:CAPS">
|
1265
|
+
<ANCHOR id="G-HOOK-IN-CALL:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-IN-CALL:CAPS">
|
1266
|
+
<ANCHOR id="G-HOOK-IS-UNLINKED:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-IS-UNLINKED:CAPS">
|
1267
|
+
<ANCHOR id="g-hook-ref" href="glib/glib-Hook-Functions.html#g-hook-ref">
|
1268
|
+
<ANCHOR id="g-hook-unref" href="glib/glib-Hook-Functions.html#g-hook-unref">
|
1269
|
+
<ANCHOR id="g-hook-free" href="glib/glib-Hook-Functions.html#g-hook-free">
|
1270
|
+
<ANCHOR id="g-hook-destroy" href="glib/glib-Hook-Functions.html#g-hook-destroy">
|
1271
|
+
<ANCHOR id="g-hook-destroy-link" href="glib/glib-Hook-Functions.html#g-hook-destroy-link">
|
1272
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions" href="glib/glib-Miscellaneous-Utility-Functions.html">
|
1273
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.synopsis" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.synopsis">
|
1274
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.description" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.description">
|
1275
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.details" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.details">
|
1276
|
+
<ANCHOR id="g-get-application-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-application-name">
|
1277
|
+
<ANCHOR id="g-set-application-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-set-application-name">
|
1278
|
+
<ANCHOR id="g-get-prgname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-prgname">
|
1279
|
+
<ANCHOR id="g-set-prgname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-set-prgname">
|
1280
|
+
<ANCHOR id="g-getenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-getenv">
|
1281
|
+
<ANCHOR id="g-setenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-setenv">
|
1282
|
+
<ANCHOR id="g-unsetenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-unsetenv">
|
1283
|
+
<ANCHOR id="g-listenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-listenv">
|
1284
|
+
<ANCHOR id="g-get-user-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-name">
|
1285
|
+
<ANCHOR id="g-get-real-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-real-name">
|
1286
|
+
<ANCHOR id="g-get-user-cache-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-cache-dir">
|
1287
|
+
<ANCHOR id="g-get-user-data-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-data-dir">
|
1288
|
+
<ANCHOR id="g-get-user-config-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-config-dir">
|
1289
|
+
<ANCHOR id="GUserDirectory" href="glib/glib-Miscellaneous-Utility-Functions.html#GUserDirectory">
|
1290
|
+
<ANCHOR id="G-USER-DIRECTORY-DESKTOP:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-DESKTOP:CAPS">
|
1291
|
+
<ANCHOR id="G-USER-DIRECTORY-DOCUMENTS:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-DOCUMENTS:CAPS">
|
1292
|
+
<ANCHOR id="G-USER-DIRECTORY-DOWNLOAD:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-DOWNLOAD:CAPS">
|
1293
|
+
<ANCHOR id="G-USER-DIRECTORY-MUSIC:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-MUSIC:CAPS">
|
1294
|
+
<ANCHOR id="G-USER-DIRECTORY-PICTURES:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-PICTURES:CAPS">
|
1295
|
+
<ANCHOR id="G-USER-DIRECTORY-PUBLIC-SHARE:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-PUBLIC-SHARE:CAPS">
|
1296
|
+
<ANCHOR id="G-USER-DIRECTORY-TEMPLATES:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-TEMPLATES:CAPS">
|
1297
|
+
<ANCHOR id="G-USER-DIRECTORY-VIDEOS:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-VIDEOS:CAPS">
|
1298
|
+
<ANCHOR id="G-USER-N-DIRECTORIES:CAPS" href="glib/glib-Miscellaneous-Utility-Functions.html#G-USER-N-DIRECTORIES:CAPS">
|
1299
|
+
<ANCHOR id="g-get-user-special-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-special-dir">
|
1300
|
+
<ANCHOR id="g-get-system-data-dirs" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-system-data-dirs">
|
1301
|
+
<ANCHOR id="g-get-system-config-dirs" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-system-config-dirs">
|
1302
|
+
<ANCHOR id="g-reload-user-special-dirs-cache" href="glib/glib-Miscellaneous-Utility-Functions.html#g-reload-user-special-dirs-cache">
|
1303
|
+
<ANCHOR id="g-get-host-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-host-name">
|
1304
|
+
<ANCHOR id="g-get-home-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-home-dir">
|
1305
|
+
<ANCHOR id="g-get-tmp-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-tmp-dir">
|
1306
|
+
<ANCHOR id="g-get-current-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-current-dir">
|
1307
|
+
<ANCHOR id="g-basename" href="glib/glib-Miscellaneous-Utility-Functions.html#g-basename">
|
1308
|
+
<ANCHOR id="g-dirname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-dirname">
|
1309
|
+
<ANCHOR id="g-path-is-absolute" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-is-absolute">
|
1310
|
+
<ANCHOR id="g-path-skip-root" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-skip-root">
|
1311
|
+
<ANCHOR id="g-path-get-basename" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-get-basename">
|
1312
|
+
<ANCHOR id="g-path-get-dirname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-get-dirname">
|
1313
|
+
<ANCHOR id="g-build-filename" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-filename">
|
1314
|
+
<ANCHOR id="g-build-filenamev" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-filenamev">
|
1315
|
+
<ANCHOR id="g-build-path" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-path">
|
1316
|
+
<ANCHOR id="g-build-pathv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-pathv">
|
1317
|
+
<ANCHOR id="g-format-size-for-display" href="glib/glib-Miscellaneous-Utility-Functions.html#g-format-size-for-display">
|
1318
|
+
<ANCHOR id="g-find-program-in-path" href="glib/glib-Miscellaneous-Utility-Functions.html#g-find-program-in-path">
|
1319
|
+
<ANCHOR id="g-bit-nth-lsf" href="glib/glib-Miscellaneous-Utility-Functions.html#g-bit-nth-lsf">
|
1320
|
+
<ANCHOR id="g-bit-nth-msf" href="glib/glib-Miscellaneous-Utility-Functions.html#g-bit-nth-msf">
|
1321
|
+
<ANCHOR id="g-bit-storage" href="glib/glib-Miscellaneous-Utility-Functions.html#g-bit-storage">
|
1322
|
+
<ANCHOR id="g-spaced-primes-closest" href="glib/glib-Miscellaneous-Utility-Functions.html#g-spaced-primes-closest">
|
1323
|
+
<ANCHOR id="g-atexit" href="glib/glib-Miscellaneous-Utility-Functions.html#g-atexit">
|
1324
|
+
<ANCHOR id="g-parse-debug-string" href="glib/glib-Miscellaneous-Utility-Functions.html#g-parse-debug-string">
|
1325
|
+
<ANCHOR id="GDebugKey" href="glib/glib-Miscellaneous-Utility-Functions.html#GDebugKey">
|
1326
|
+
<ANCHOR id="GVoidFunc" href="glib/glib-Miscellaneous-Utility-Functions.html#GVoidFunc">
|
1327
|
+
<ANCHOR id="GFreeFunc" href="glib/glib-Miscellaneous-Utility-Functions.html#GFreeFunc">
|
1328
|
+
<ANCHOR id="g-qsort-with-data" href="glib/glib-Miscellaneous-Utility-Functions.html#g-qsort-with-data">
|
1329
|
+
<ANCHOR id="g-nullify-pointer" href="glib/glib-Miscellaneous-Utility-Functions.html#g-nullify-pointer">
|
1330
|
+
<ANCHOR id="glib-Lexical-Scanner" href="glib/glib-Lexical-Scanner.html">
|
1331
|
+
<ANCHOR id="glib-Lexical-Scanner.synopsis" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.synopsis">
|
1332
|
+
<ANCHOR id="glib-Lexical-Scanner.description" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.description">
|
1333
|
+
<ANCHOR id="glib-Lexical-Scanner.details" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.details">
|
1334
|
+
<ANCHOR id="GScanner" href="glib/glib-Lexical-Scanner.html#GScanner">
|
1335
|
+
<ANCHOR id="GScannerConfig" href="glib/glib-Lexical-Scanner.html#GScannerConfig">
|
1336
|
+
<ANCHOR id="g-scanner-new" href="glib/glib-Lexical-Scanner.html#g-scanner-new">
|
1337
|
+
<ANCHOR id="g-scanner-destroy" href="glib/glib-Lexical-Scanner.html#g-scanner-destroy">
|
1338
|
+
<ANCHOR id="g-scanner-input-file" href="glib/glib-Lexical-Scanner.html#g-scanner-input-file">
|
1339
|
+
<ANCHOR id="g-scanner-sync-file-offset" href="glib/glib-Lexical-Scanner.html#g-scanner-sync-file-offset">
|
1340
|
+
<ANCHOR id="g-scanner-input-text" href="glib/glib-Lexical-Scanner.html#g-scanner-input-text">
|
1341
|
+
<ANCHOR id="g-scanner-peek-next-token" href="glib/glib-Lexical-Scanner.html#g-scanner-peek-next-token">
|
1342
|
+
<ANCHOR id="g-scanner-get-next-token" href="glib/glib-Lexical-Scanner.html#g-scanner-get-next-token">
|
1343
|
+
<ANCHOR id="g-scanner-eof" href="glib/glib-Lexical-Scanner.html#g-scanner-eof">
|
1344
|
+
<ANCHOR id="g-scanner-cur-line" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-line">
|
1345
|
+
<ANCHOR id="g-scanner-cur-position" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-position">
|
1346
|
+
<ANCHOR id="g-scanner-cur-token" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-token">
|
1347
|
+
<ANCHOR id="g-scanner-cur-value" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-value">
|
1348
|
+
<ANCHOR id="g-scanner-set-scope" href="glib/glib-Lexical-Scanner.html#g-scanner-set-scope">
|
1349
|
+
<ANCHOR id="g-scanner-scope-add-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-add-symbol">
|
1350
|
+
<ANCHOR id="g-scanner-scope-foreach-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-foreach-symbol">
|
1351
|
+
<ANCHOR id="g-scanner-scope-lookup-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-lookup-symbol">
|
1352
|
+
<ANCHOR id="g-scanner-scope-remove-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-remove-symbol">
|
1353
|
+
<ANCHOR id="g-scanner-add-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-add-symbol">
|
1354
|
+
<ANCHOR id="g-scanner-remove-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-remove-symbol">
|
1355
|
+
<ANCHOR id="g-scanner-foreach-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-foreach-symbol">
|
1356
|
+
<ANCHOR id="g-scanner-freeze-symbol-table" href="glib/glib-Lexical-Scanner.html#g-scanner-freeze-symbol-table">
|
1357
|
+
<ANCHOR id="g-scanner-thaw-symbol-table" href="glib/glib-Lexical-Scanner.html#g-scanner-thaw-symbol-table">
|
1358
|
+
<ANCHOR id="g-scanner-lookup-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-lookup-symbol">
|
1359
|
+
<ANCHOR id="g-scanner-warn" href="glib/glib-Lexical-Scanner.html#g-scanner-warn">
|
1360
|
+
<ANCHOR id="g-scanner-error" href="glib/glib-Lexical-Scanner.html#g-scanner-error">
|
1361
|
+
<ANCHOR id="g-scanner-unexp-token" href="glib/glib-Lexical-Scanner.html#g-scanner-unexp-token">
|
1362
|
+
<ANCHOR id="GScannerMsgFunc" href="glib/glib-Lexical-Scanner.html#GScannerMsgFunc">
|
1363
|
+
<ANCHOR id="G-CSET-a-2-z" href="glib/glib-Lexical-Scanner.html#G-CSET-a-2-z">
|
1364
|
+
<ANCHOR id="G-CSET-A-2-Z:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-A-2-Z:CAPS">
|
1365
|
+
<ANCHOR id="G-CSET-DIGITS:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-DIGITS:CAPS">
|
1366
|
+
<ANCHOR id="G-CSET-LATINC:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-LATINC:CAPS">
|
1367
|
+
<ANCHOR id="G-CSET-LATINS:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-LATINS:CAPS">
|
1368
|
+
<ANCHOR id="GTokenType" href="glib/glib-Lexical-Scanner.html#GTokenType">
|
1369
|
+
<ANCHOR id="G-TOKEN-EOF:CAPS" href="glib/glib-Lexical-Scanner.html#G-TOKEN-EOF:CAPS">
|
1370
|
+
<ANCHOR id="G-TOKEN-LEFT-PAREN:CAPS" href="glib/glib-Lexical-Scanner.html#G-TOKEN-LEFT-PAREN:CAPS">
|
1371
|
+
<ANCHOR id="G-TOKEN-LEFT-CURLY:CAPS" href="glib/glib-Lexical-Scanner.html#G-TOKEN-LEFT-CURLY:CAPS">
|
1372
|
+
<ANCHOR id="G-TOKEN-RIGHT-CURLY:CAPS" href="glib/glib-Lexical-Scanner.html#G-TOKEN-RIGHT-CURLY:CAPS">
|
1373
|
+
<ANCHOR id="GTokenValue" href="glib/glib-Lexical-Scanner.html#GTokenValue">
|
1374
|
+
<ANCHOR id="GErrorType" href="glib/glib-Lexical-Scanner.html#GErrorType">
|
1375
|
+
<ANCHOR id="G-ERR-UNKNOWN:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-UNKNOWN:CAPS">
|
1376
|
+
<ANCHOR id="G-ERR-UNEXP-EOF:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-UNEXP-EOF:CAPS">
|
1377
|
+
<ANCHOR id="G-ERR-UNEXP-EOF-IN-STRING:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-UNEXP-EOF-IN-STRING:CAPS">
|
1378
|
+
<ANCHOR id="G-ERR-UNEXP-EOF-IN-COMMENT:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-UNEXP-EOF-IN-COMMENT:CAPS">
|
1379
|
+
<ANCHOR id="G-ERR-NON-DIGIT-IN-CONST:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-NON-DIGIT-IN-CONST:CAPS">
|
1380
|
+
<ANCHOR id="G-ERR-DIGIT-RADIX:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-DIGIT-RADIX:CAPS">
|
1381
|
+
<ANCHOR id="G-ERR-FLOAT-RADIX:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-FLOAT-RADIX:CAPS">
|
1382
|
+
<ANCHOR id="G-ERR-FLOAT-MALFORMED:CAPS" href="glib/glib-Lexical-Scanner.html#G-ERR-FLOAT-MALFORMED:CAPS">
|
1383
|
+
<ANCHOR id="glib-Automatic-String-Completion" href="glib/glib-Automatic-String-Completion.html">
|
1384
|
+
<ANCHOR id="glib-Automatic-String-Completion.synopsis" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.synopsis">
|
1385
|
+
<ANCHOR id="glib-Automatic-String-Completion.description" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.description">
|
1386
|
+
<ANCHOR id="glib-Automatic-String-Completion.details" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.details">
|
1387
|
+
<ANCHOR id="GCompletion" href="glib/glib-Automatic-String-Completion.html#GCompletion">
|
1388
|
+
<ANCHOR id="g-completion-new" href="glib/glib-Automatic-String-Completion.html#g-completion-new">
|
1389
|
+
<ANCHOR id="GCompletionFunc" href="glib/glib-Automatic-String-Completion.html#GCompletionFunc">
|
1390
|
+
<ANCHOR id="g-completion-add-items" href="glib/glib-Automatic-String-Completion.html#g-completion-add-items">
|
1391
|
+
<ANCHOR id="g-completion-remove-items" href="glib/glib-Automatic-String-Completion.html#g-completion-remove-items">
|
1392
|
+
<ANCHOR id="g-completion-clear-items" href="glib/glib-Automatic-String-Completion.html#g-completion-clear-items">
|
1393
|
+
<ANCHOR id="g-completion-complete" href="glib/glib-Automatic-String-Completion.html#g-completion-complete">
|
1394
|
+
<ANCHOR id="g-completion-complete-utf8" href="glib/glib-Automatic-String-Completion.html#g-completion-complete-utf8">
|
1395
|
+
<ANCHOR id="g-completion-set-compare" href="glib/glib-Automatic-String-Completion.html#g-completion-set-compare">
|
1396
|
+
<ANCHOR id="GCompletionStrncmpFunc" href="glib/glib-Automatic-String-Completion.html#GCompletionStrncmpFunc">
|
1397
|
+
<ANCHOR id="g-completion-free" href="glib/glib-Automatic-String-Completion.html#g-completion-free">
|
1398
|
+
<ANCHOR id="glib-Timers" href="glib/glib-Timers.html">
|
1399
|
+
<ANCHOR id="glib-Timers.synopsis" href="glib/glib-Timers.html#glib-Timers.synopsis">
|
1400
|
+
<ANCHOR id="glib-Timers.description" href="glib/glib-Timers.html#glib-Timers.description">
|
1401
|
+
<ANCHOR id="glib-Timers.details" href="glib/glib-Timers.html#glib-Timers.details">
|
1402
|
+
<ANCHOR id="GTimer" href="glib/glib-Timers.html#GTimer">
|
1403
|
+
<ANCHOR id="g-timer-new" href="glib/glib-Timers.html#g-timer-new">
|
1404
|
+
<ANCHOR id="g-timer-start" href="glib/glib-Timers.html#g-timer-start">
|
1405
|
+
<ANCHOR id="g-timer-stop" href="glib/glib-Timers.html#g-timer-stop">
|
1406
|
+
<ANCHOR id="g-timer-continue" href="glib/glib-Timers.html#g-timer-continue">
|
1407
|
+
<ANCHOR id="g-timer-elapsed" href="glib/glib-Timers.html#g-timer-elapsed">
|
1408
|
+
<ANCHOR id="g-timer-reset" href="glib/glib-Timers.html#g-timer-reset">
|
1409
|
+
<ANCHOR id="g-timer-destroy" href="glib/glib-Timers.html#g-timer-destroy">
|
1410
|
+
<ANCHOR id="glib-Spawning-Processes" href="glib/glib-Spawning-Processes.html">
|
1411
|
+
<ANCHOR id="glib-Spawning-Processes.synopsis" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.synopsis">
|
1412
|
+
<ANCHOR id="glib-Spawning-Processes.description" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.description">
|
1413
|
+
<ANCHOR id="glib-Spawning-Processes.details" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.details">
|
1414
|
+
<ANCHOR id="GSpawnError" href="glib/glib-Spawning-Processes.html#GSpawnError">
|
1415
|
+
<ANCHOR id="G-SPAWN-ERROR-FORK:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-FORK:CAPS">
|
1416
|
+
<ANCHOR id="G-SPAWN-ERROR-READ:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-READ:CAPS">
|
1417
|
+
<ANCHOR id="G-SPAWN-ERROR-CHDIR:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-CHDIR:CAPS">
|
1418
|
+
<ANCHOR id="G-SPAWN-ERROR-ACCES:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-ACCES:CAPS">
|
1419
|
+
<ANCHOR id="G-SPAWN-ERROR-PERM:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-PERM:CAPS">
|
1420
|
+
<ANCHOR id="G-SPAWN-ERROR-2BIG:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-2BIG:CAPS">
|
1421
|
+
<ANCHOR id="G-SPAWN-ERROR-NOEXEC:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-NOEXEC:CAPS">
|
1422
|
+
<ANCHOR id="G-SPAWN-ERROR-NAMETOOLONG:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-NAMETOOLONG:CAPS">
|
1423
|
+
<ANCHOR id="G-SPAWN-ERROR-NOENT:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-NOENT:CAPS">
|
1424
|
+
<ANCHOR id="G-SPAWN-ERROR-NOMEM:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-NOMEM:CAPS">
|
1425
|
+
<ANCHOR id="G-SPAWN-ERROR-NOTDIR:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-NOTDIR:CAPS">
|
1426
|
+
<ANCHOR id="G-SPAWN-ERROR-LOOP:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-LOOP:CAPS">
|
1427
|
+
<ANCHOR id="G-SPAWN-ERROR-TXTBUSY:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-TXTBUSY:CAPS">
|
1428
|
+
<ANCHOR id="G-SPAWN-ERROR-IO:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-IO:CAPS">
|
1429
|
+
<ANCHOR id="G-SPAWN-ERROR-NFILE:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-NFILE:CAPS">
|
1430
|
+
<ANCHOR id="G-SPAWN-ERROR-MFILE:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-MFILE:CAPS">
|
1431
|
+
<ANCHOR id="G-SPAWN-ERROR-INVAL:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-INVAL:CAPS">
|
1432
|
+
<ANCHOR id="G-SPAWN-ERROR-ISDIR:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-ISDIR:CAPS">
|
1433
|
+
<ANCHOR id="G-SPAWN-ERROR-LIBBAD:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-LIBBAD:CAPS">
|
1434
|
+
<ANCHOR id="G-SPAWN-ERROR-FAILED:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR-FAILED:CAPS">
|
1435
|
+
<ANCHOR id="G-SPAWN-ERROR:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR:CAPS">
|
1436
|
+
<ANCHOR id="GSpawnFlags" href="glib/glib-Spawning-Processes.html#GSpawnFlags">
|
1437
|
+
<ANCHOR id="G-SPAWN-LEAVE-DESCRIPTORS-OPEN:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-LEAVE-DESCRIPTORS-OPEN:CAPS">
|
1438
|
+
<ANCHOR id="G-SPAWN-DO-NOT-REAP-CHILD:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-DO-NOT-REAP-CHILD:CAPS">
|
1439
|
+
<ANCHOR id="G-SPAWN-SEARCH-PATH:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-SEARCH-PATH:CAPS">
|
1440
|
+
<ANCHOR id="G-SPAWN-STDOUT-TO-DEV-NULL:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-STDOUT-TO-DEV-NULL:CAPS">
|
1441
|
+
<ANCHOR id="G-SPAWN-STDERR-TO-DEV-NULL:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-STDERR-TO-DEV-NULL:CAPS">
|
1442
|
+
<ANCHOR id="G-SPAWN-CHILD-INHERITS-STDIN:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-CHILD-INHERITS-STDIN:CAPS">
|
1443
|
+
<ANCHOR id="G-SPAWN-FILE-AND-ARGV-ZERO:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-FILE-AND-ARGV-ZERO:CAPS">
|
1444
|
+
<ANCHOR id="GSpawnChildSetupFunc" href="glib/glib-Spawning-Processes.html#GSpawnChildSetupFunc">
|
1445
|
+
<ANCHOR id="g-spawn-async-with-pipes" href="glib/glib-Spawning-Processes.html#g-spawn-async-with-pipes">
|
1446
|
+
<ANCHOR id="g-spawn-async" href="glib/glib-Spawning-Processes.html#g-spawn-async">
|
1447
|
+
<ANCHOR id="g-spawn-sync" href="glib/glib-Spawning-Processes.html#g-spawn-sync">
|
1448
|
+
<ANCHOR id="g-spawn-command-line-async" href="glib/glib-Spawning-Processes.html#g-spawn-command-line-async">
|
1449
|
+
<ANCHOR id="g-spawn-command-line-sync" href="glib/glib-Spawning-Processes.html#g-spawn-command-line-sync">
|
1450
|
+
<ANCHOR id="g-spawn-close-pid" href="glib/glib-Spawning-Processes.html#g-spawn-close-pid">
|
1451
|
+
<ANCHOR id="glib-File-Utilities" href="glib/glib-File-Utilities.html">
|
1452
|
+
<ANCHOR id="glib-File-Utilities.synopsis" href="glib/glib-File-Utilities.html#glib-File-Utilities.synopsis">
|
1453
|
+
<ANCHOR id="glib-File-Utilities.description" href="glib/glib-File-Utilities.html#glib-File-Utilities.description">
|
1454
|
+
<ANCHOR id="glib-File-Utilities.details" href="glib/glib-File-Utilities.html#glib-File-Utilities.details">
|
1455
|
+
<ANCHOR id="GFileError" href="glib/glib-File-Utilities.html#GFileError">
|
1456
|
+
<ANCHOR id="G-FILE-ERROR-EXIST:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-EXIST:CAPS">
|
1457
|
+
<ANCHOR id="G-FILE-ERROR-ISDIR:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-ISDIR:CAPS">
|
1458
|
+
<ANCHOR id="G-FILE-ERROR-ACCES:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-ACCES:CAPS">
|
1459
|
+
<ANCHOR id="G-FILE-ERROR-NAMETOOLONG:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NAMETOOLONG:CAPS">
|
1460
|
+
<ANCHOR id="G-FILE-ERROR-NOENT:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NOENT:CAPS">
|
1461
|
+
<ANCHOR id="G-FILE-ERROR-NOTDIR:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NOTDIR:CAPS">
|
1462
|
+
<ANCHOR id="G-FILE-ERROR-NXIO:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NXIO:CAPS">
|
1463
|
+
<ANCHOR id="G-FILE-ERROR-NODEV:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NODEV:CAPS">
|
1464
|
+
<ANCHOR id="G-FILE-ERROR-ROFS:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-ROFS:CAPS">
|
1465
|
+
<ANCHOR id="G-FILE-ERROR-TXTBSY:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-TXTBSY:CAPS">
|
1466
|
+
<ANCHOR id="G-FILE-ERROR-FAULT:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-FAULT:CAPS">
|
1467
|
+
<ANCHOR id="G-FILE-ERROR-LOOP:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-LOOP:CAPS">
|
1468
|
+
<ANCHOR id="G-FILE-ERROR-NOSPC:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NOSPC:CAPS">
|
1469
|
+
<ANCHOR id="G-FILE-ERROR-NOMEM:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NOMEM:CAPS">
|
1470
|
+
<ANCHOR id="G-FILE-ERROR-MFILE:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-MFILE:CAPS">
|
1471
|
+
<ANCHOR id="G-FILE-ERROR-NFILE:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NFILE:CAPS">
|
1472
|
+
<ANCHOR id="G-FILE-ERROR-BADF:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-BADF:CAPS">
|
1473
|
+
<ANCHOR id="G-FILE-ERROR-INVAL:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-INVAL:CAPS">
|
1474
|
+
<ANCHOR id="G-FILE-ERROR-PIPE:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-PIPE:CAPS">
|
1475
|
+
<ANCHOR id="G-FILE-ERROR-AGAIN:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-AGAIN:CAPS">
|
1476
|
+
<ANCHOR id="G-FILE-ERROR-INTR:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-INTR:CAPS">
|
1477
|
+
<ANCHOR id="G-FILE-ERROR-IO:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-IO:CAPS">
|
1478
|
+
<ANCHOR id="G-FILE-ERROR-PERM:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-PERM:CAPS">
|
1479
|
+
<ANCHOR id="G-FILE-ERROR-NOSYS:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-NOSYS:CAPS">
|
1480
|
+
<ANCHOR id="G-FILE-ERROR-FAILED:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR-FAILED:CAPS">
|
1481
|
+
<ANCHOR id="G-FILE-ERROR:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS">
|
1482
|
+
<ANCHOR id="GFileTest" href="glib/glib-File-Utilities.html#GFileTest">
|
1483
|
+
<ANCHOR id="G-FILE-TEST-IS-REGULAR:CAPS" href="glib/glib-File-Utilities.html#G-FILE-TEST-IS-REGULAR:CAPS">
|
1484
|
+
<ANCHOR id="G-FILE-TEST-IS-SYMLINK:CAPS" href="glib/glib-File-Utilities.html#G-FILE-TEST-IS-SYMLINK:CAPS">
|
1485
|
+
<ANCHOR id="G-FILE-TEST-IS-DIR:CAPS" href="glib/glib-File-Utilities.html#G-FILE-TEST-IS-DIR:CAPS">
|
1486
|
+
<ANCHOR id="G-FILE-TEST-IS-EXECUTABLE:CAPS" href="glib/glib-File-Utilities.html#G-FILE-TEST-IS-EXECUTABLE:CAPS">
|
1487
|
+
<ANCHOR id="G-FILE-TEST-EXISTS:CAPS" href="glib/glib-File-Utilities.html#G-FILE-TEST-EXISTS:CAPS">
|
1488
|
+
<ANCHOR id="g-file-error-from-errno" href="glib/glib-File-Utilities.html#g-file-error-from-errno">
|
1489
|
+
<ANCHOR id="g-file-get-contents" href="glib/glib-File-Utilities.html#g-file-get-contents">
|
1490
|
+
<ANCHOR id="g-file-set-contents" href="glib/glib-File-Utilities.html#g-file-set-contents">
|
1491
|
+
<ANCHOR id="g-file-test" href="glib/glib-File-Utilities.html#g-file-test">
|
1492
|
+
<ANCHOR id="g-mkstemp" href="glib/glib-File-Utilities.html#g-mkstemp">
|
1493
|
+
<ANCHOR id="g-mkstemp-full" href="glib/glib-File-Utilities.html#g-mkstemp-full">
|
1494
|
+
<ANCHOR id="g-file-open-tmp" href="glib/glib-File-Utilities.html#g-file-open-tmp">
|
1495
|
+
<ANCHOR id="g-file-read-link" href="glib/glib-File-Utilities.html#g-file-read-link">
|
1496
|
+
<ANCHOR id="g-mkdir-with-parents" href="glib/glib-File-Utilities.html#g-mkdir-with-parents">
|
1497
|
+
<ANCHOR id="GDir" href="glib/glib-File-Utilities.html#GDir">
|
1498
|
+
<ANCHOR id="g-dir-open" href="glib/glib-File-Utilities.html#g-dir-open">
|
1499
|
+
<ANCHOR id="g-dir-read-name" href="glib/glib-File-Utilities.html#g-dir-read-name">
|
1500
|
+
<ANCHOR id="g-dir-rewind" href="glib/glib-File-Utilities.html#g-dir-rewind">
|
1501
|
+
<ANCHOR id="g-dir-close" href="glib/glib-File-Utilities.html#g-dir-close">
|
1502
|
+
<ANCHOR id="GMappedFile" href="glib/glib-File-Utilities.html#GMappedFile">
|
1503
|
+
<ANCHOR id="g-mapped-file-new" href="glib/glib-File-Utilities.html#g-mapped-file-new">
|
1504
|
+
<ANCHOR id="g-mapped-file-ref" href="glib/glib-File-Utilities.html#g-mapped-file-ref">
|
1505
|
+
<ANCHOR id="g-mapped-file-unref" href="glib/glib-File-Utilities.html#g-mapped-file-unref">
|
1506
|
+
<ANCHOR id="g-mapped-file-free" href="glib/glib-File-Utilities.html#g-mapped-file-free">
|
1507
|
+
<ANCHOR id="g-mapped-file-get-length" href="glib/glib-File-Utilities.html#g-mapped-file-get-length">
|
1508
|
+
<ANCHOR id="g-mapped-file-get-contents" href="glib/glib-File-Utilities.html#g-mapped-file-get-contents">
|
1509
|
+
<ANCHOR id="g-open" href="glib/glib-File-Utilities.html#g-open">
|
1510
|
+
<ANCHOR id="g-rename" href="glib/glib-File-Utilities.html#g-rename">
|
1511
|
+
<ANCHOR id="g-mkdir" href="glib/glib-File-Utilities.html#g-mkdir">
|
1512
|
+
<ANCHOR id="g-stat" href="glib/glib-File-Utilities.html#g-stat">
|
1513
|
+
<ANCHOR id="g-lstat" href="glib/glib-File-Utilities.html#g-lstat">
|
1514
|
+
<ANCHOR id="g-unlink" href="glib/glib-File-Utilities.html#g-unlink">
|
1515
|
+
<ANCHOR id="g-remove" href="glib/glib-File-Utilities.html#g-remove">
|
1516
|
+
<ANCHOR id="g-rmdir" href="glib/glib-File-Utilities.html#g-rmdir">
|
1517
|
+
<ANCHOR id="g-fopen" href="glib/glib-File-Utilities.html#g-fopen">
|
1518
|
+
<ANCHOR id="g-freopen" href="glib/glib-File-Utilities.html#g-freopen">
|
1519
|
+
<ANCHOR id="g-chmod" href="glib/glib-File-Utilities.html#g-chmod">
|
1520
|
+
<ANCHOR id="g-access" href="glib/glib-File-Utilities.html#g-access">
|
1521
|
+
<ANCHOR id="g-creat" href="glib/glib-File-Utilities.html#g-creat">
|
1522
|
+
<ANCHOR id="g-chdir" href="glib/glib-File-Utilities.html#g-chdir">
|
1523
|
+
<ANCHOR id="g-utime" href="glib/glib-File-Utilities.html#g-utime">
|
1524
|
+
<ANCHOR id="glib-URI-Functions" href="glib/glib-URI-Functions.html">
|
1525
|
+
<ANCHOR id="glib-URI-Functions.synopsis" href="glib/glib-URI-Functions.html#glib-URI-Functions.synopsis">
|
1526
|
+
<ANCHOR id="glib-URI-Functions.description" href="glib/glib-URI-Functions.html#glib-URI-Functions.description">
|
1527
|
+
<ANCHOR id="glib-URI-Functions.details" href="glib/glib-URI-Functions.html#glib-URI-Functions.details">
|
1528
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-ALLOWED-IN-PATH:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-PATH:CAPS">
|
1529
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-ALLOWED-IN-PATH-ELEMENT:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-PATH-ELEMENT:CAPS">
|
1530
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-ALLOWED-IN-USERINFO:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-USERINFO:CAPS">
|
1531
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-GENERIC-DELIMITERS:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-GENERIC-DELIMITERS:CAPS">
|
1532
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-SUBCOMPONENT-DELIMITERS:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-SUBCOMPONENT-DELIMITERS:CAPS">
|
1533
|
+
<ANCHOR id="g-uri-parse-scheme" href="glib/glib-URI-Functions.html#g-uri-parse-scheme">
|
1534
|
+
<ANCHOR id="g-uri-escape-string" href="glib/glib-URI-Functions.html#g-uri-escape-string">
|
1535
|
+
<ANCHOR id="g-uri-unescape-string" href="glib/glib-URI-Functions.html#g-uri-unescape-string">
|
1536
|
+
<ANCHOR id="g-uri-unescape-segment" href="glib/glib-URI-Functions.html#g-uri-unescape-segment">
|
1537
|
+
<ANCHOR id="g-uri-list-extract-uris" href="glib/glib-URI-Functions.html#g-uri-list-extract-uris">
|
1538
|
+
<ANCHOR id="glib-Hostname-Utilities" href="glib/glib-Hostname-Utilities.html">
|
1539
|
+
<ANCHOR id="glib-Hostname-Utilities.synopsis" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.synopsis">
|
1540
|
+
<ANCHOR id="glib-Hostname-Utilities.description" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.description">
|
1541
|
+
<ANCHOR id="glib-Hostname-Utilities.details" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.details">
|
1542
|
+
<ANCHOR id="g-hostname-to-ascii" href="glib/glib-Hostname-Utilities.html#g-hostname-to-ascii">
|
1543
|
+
<ANCHOR id="g-hostname-to-unicode" href="glib/glib-Hostname-Utilities.html#g-hostname-to-unicode">
|
1544
|
+
<ANCHOR id="g-hostname-is-non-ascii" href="glib/glib-Hostname-Utilities.html#g-hostname-is-non-ascii">
|
1545
|
+
<ANCHOR id="g-hostname-is-ascii-encoded" href="glib/glib-Hostname-Utilities.html#g-hostname-is-ascii-encoded">
|
1546
|
+
<ANCHOR id="g-hostname-is-ip-address" href="glib/glib-Hostname-Utilities.html#g-hostname-is-ip-address">
|
1547
|
+
<ANCHOR id="glib-Shell-related-Utilities" href="glib/glib-Shell-related-Utilities.html">
|
1548
|
+
<ANCHOR id="glib-Shell-related-Utilities.synopsis" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.synopsis">
|
1549
|
+
<ANCHOR id="glib-Shell-related-Utilities.description" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.description">
|
1550
|
+
<ANCHOR id="glib-Shell-related-Utilities.details" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.details">
|
1551
|
+
<ANCHOR id="GShellError" href="glib/glib-Shell-related-Utilities.html#GShellError">
|
1552
|
+
<ANCHOR id="G-SHELL-ERROR-BAD-QUOTING:CAPS" href="glib/glib-Shell-related-Utilities.html#G-SHELL-ERROR-BAD-QUOTING:CAPS">
|
1553
|
+
<ANCHOR id="G-SHELL-ERROR-EMPTY-STRING:CAPS" href="glib/glib-Shell-related-Utilities.html#G-SHELL-ERROR-EMPTY-STRING:CAPS">
|
1554
|
+
<ANCHOR id="G-SHELL-ERROR-FAILED:CAPS" href="glib/glib-Shell-related-Utilities.html#G-SHELL-ERROR-FAILED:CAPS">
|
1555
|
+
<ANCHOR id="G-SHELL-ERROR:CAPS" href="glib/glib-Shell-related-Utilities.html#G-SHELL-ERROR:CAPS">
|
1556
|
+
<ANCHOR id="g-shell-parse-argv" href="glib/glib-Shell-related-Utilities.html#g-shell-parse-argv">
|
1557
|
+
<ANCHOR id="g-shell-quote" href="glib/glib-Shell-related-Utilities.html#g-shell-quote">
|
1558
|
+
<ANCHOR id="g-shell-unquote" href="glib/glib-Shell-related-Utilities.html#g-shell-unquote">
|
1559
|
+
<ANCHOR id="glib-Commandline-option-parser" href="glib/glib-Commandline-option-parser.html">
|
1560
|
+
<ANCHOR id="glib-Commandline-option-parser.synopsis" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.synopsis">
|
1561
|
+
<ANCHOR id="glib-Commandline-option-parser.description" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.description">
|
1562
|
+
<ANCHOR id="glib-Commandline-option-parser.details" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.details">
|
1563
|
+
<ANCHOR id="GOptionError" href="glib/glib-Commandline-option-parser.html#GOptionError">
|
1564
|
+
<ANCHOR id="G-OPTION-ERROR-UNKNOWN-OPTION:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ERROR-UNKNOWN-OPTION:CAPS">
|
1565
|
+
<ANCHOR id="G-OPTION-ERROR-BAD-VALUE:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ERROR-BAD-VALUE:CAPS">
|
1566
|
+
<ANCHOR id="G-OPTION-ERROR-FAILED:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ERROR-FAILED:CAPS">
|
1567
|
+
<ANCHOR id="G-OPTION-ERROR:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ERROR:CAPS">
|
1568
|
+
<ANCHOR id="GOptionArgFunc" href="glib/glib-Commandline-option-parser.html#GOptionArgFunc">
|
1569
|
+
<ANCHOR id="GOptionContext" href="glib/glib-Commandline-option-parser.html#GOptionContext">
|
1570
|
+
<ANCHOR id="g-option-context-new" href="glib/glib-Commandline-option-parser.html#g-option-context-new">
|
1571
|
+
<ANCHOR id="g-option-context-set-summary" href="glib/glib-Commandline-option-parser.html#g-option-context-set-summary">
|
1572
|
+
<ANCHOR id="g-option-context-get-summary" href="glib/glib-Commandline-option-parser.html#g-option-context-get-summary">
|
1573
|
+
<ANCHOR id="g-option-context-set-description" href="glib/glib-Commandline-option-parser.html#g-option-context-set-description">
|
1574
|
+
<ANCHOR id="g-option-context-get-description" href="glib/glib-Commandline-option-parser.html#g-option-context-get-description">
|
1575
|
+
<ANCHOR id="GTranslateFunc" href="glib/glib-Commandline-option-parser.html#GTranslateFunc">
|
1576
|
+
<ANCHOR id="g-option-context-set-translate-func" href="glib/glib-Commandline-option-parser.html#g-option-context-set-translate-func">
|
1577
|
+
<ANCHOR id="g-option-context-set-translation-domain" href="glib/glib-Commandline-option-parser.html#g-option-context-set-translation-domain">
|
1578
|
+
<ANCHOR id="g-option-context-free" href="glib/glib-Commandline-option-parser.html#g-option-context-free">
|
1579
|
+
<ANCHOR id="g-option-context-parse" href="glib/glib-Commandline-option-parser.html#g-option-context-parse">
|
1580
|
+
<ANCHOR id="g-option-context-set-help-enabled" href="glib/glib-Commandline-option-parser.html#g-option-context-set-help-enabled">
|
1581
|
+
<ANCHOR id="g-option-context-get-help-enabled" href="glib/glib-Commandline-option-parser.html#g-option-context-get-help-enabled">
|
1582
|
+
<ANCHOR id="g-option-context-set-ignore-unknown-options" href="glib/glib-Commandline-option-parser.html#g-option-context-set-ignore-unknown-options">
|
1583
|
+
<ANCHOR id="g-option-context-get-ignore-unknown-options" href="glib/glib-Commandline-option-parser.html#g-option-context-get-ignore-unknown-options">
|
1584
|
+
<ANCHOR id="g-option-context-get-help" href="glib/glib-Commandline-option-parser.html#g-option-context-get-help">
|
1585
|
+
<ANCHOR id="GOptionArg" href="glib/glib-Commandline-option-parser.html#GOptionArg">
|
1586
|
+
<ANCHOR id="G-OPTION-ARG-NONE:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-NONE:CAPS">
|
1587
|
+
<ANCHOR id="G-OPTION-ARG-STRING:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-STRING:CAPS">
|
1588
|
+
<ANCHOR id="G-OPTION-ARG-INT:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-INT:CAPS">
|
1589
|
+
<ANCHOR id="G-OPTION-ARG-CALLBACK:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-CALLBACK:CAPS">
|
1590
|
+
<ANCHOR id="G-OPTION-ARG-FILENAME:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-FILENAME:CAPS">
|
1591
|
+
<ANCHOR id="G-OPTION-ARG-STRING-ARRAY:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-STRING-ARRAY:CAPS">
|
1592
|
+
<ANCHOR id="G-OPTION-ARG-FILENAME-ARRAY:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-FILENAME-ARRAY:CAPS">
|
1593
|
+
<ANCHOR id="G-OPTION-ARG-DOUBLE:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-DOUBLE:CAPS">
|
1594
|
+
<ANCHOR id="G-OPTION-ARG-INT64:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ARG-INT64:CAPS">
|
1595
|
+
<ANCHOR id="GOptionFlags" href="glib/glib-Commandline-option-parser.html#GOptionFlags">
|
1596
|
+
<ANCHOR id="G-OPTION-FLAG-HIDDEN:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-FLAG-HIDDEN:CAPS">
|
1597
|
+
<ANCHOR id="G-OPTION-FLAG-IN-MAIN:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-FLAG-IN-MAIN:CAPS">
|
1598
|
+
<ANCHOR id="G-OPTION-FLAG-REVERSE:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-FLAG-REVERSE:CAPS">
|
1599
|
+
<ANCHOR id="G-OPTION-FLAG-NO-ARG:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-FLAG-NO-ARG:CAPS">
|
1600
|
+
<ANCHOR id="G-OPTION-FLAG-FILENAME:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-FLAG-FILENAME:CAPS">
|
1601
|
+
<ANCHOR id="G-OPTION-FLAG-OPTIONAL-ARG:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-FLAG-OPTIONAL-ARG:CAPS">
|
1602
|
+
<ANCHOR id="G-OPTION-FLAG-NOALIAS:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-FLAG-NOALIAS:CAPS">
|
1603
|
+
<ANCHOR id="G-OPTION-REMAINING:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-REMAINING:CAPS">
|
1604
|
+
<ANCHOR id="GOptionEntry" href="glib/glib-Commandline-option-parser.html#GOptionEntry">
|
1605
|
+
<ANCHOR id="g-option-context-add-main-entries" href="glib/glib-Commandline-option-parser.html#g-option-context-add-main-entries">
|
1606
|
+
<ANCHOR id="GOptionGroup" href="glib/glib-Commandline-option-parser.html#GOptionGroup">
|
1607
|
+
<ANCHOR id="g-option-context-add-group" href="glib/glib-Commandline-option-parser.html#g-option-context-add-group">
|
1608
|
+
<ANCHOR id="g-option-context-set-main-group" href="glib/glib-Commandline-option-parser.html#g-option-context-set-main-group">
|
1609
|
+
<ANCHOR id="g-option-context-get-main-group" href="glib/glib-Commandline-option-parser.html#g-option-context-get-main-group">
|
1610
|
+
<ANCHOR id="g-option-group-new" href="glib/glib-Commandline-option-parser.html#g-option-group-new">
|
1611
|
+
<ANCHOR id="g-option-group-free" href="glib/glib-Commandline-option-parser.html#g-option-group-free">
|
1612
|
+
<ANCHOR id="g-option-group-add-entries" href="glib/glib-Commandline-option-parser.html#g-option-group-add-entries">
|
1613
|
+
<ANCHOR id="GOptionParseFunc" href="glib/glib-Commandline-option-parser.html#GOptionParseFunc">
|
1614
|
+
<ANCHOR id="g-option-group-set-parse-hooks" href="glib/glib-Commandline-option-parser.html#g-option-group-set-parse-hooks">
|
1615
|
+
<ANCHOR id="GOptionErrorFunc" href="glib/glib-Commandline-option-parser.html#GOptionErrorFunc">
|
1616
|
+
<ANCHOR id="g-option-group-set-error-hook" href="glib/glib-Commandline-option-parser.html#g-option-group-set-error-hook">
|
1617
|
+
<ANCHOR id="g-option-group-set-translate-func" href="glib/glib-Commandline-option-parser.html#g-option-group-set-translate-func">
|
1618
|
+
<ANCHOR id="g-option-group-set-translation-domain" href="glib/glib-Commandline-option-parser.html#g-option-group-set-translation-domain">
|
1619
|
+
<ANCHOR id="glib-Glob-style-pattern-matching" href="glib/glib-Glob-style-pattern-matching.html">
|
1620
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.synopsis" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.synopsis">
|
1621
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.description" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.description">
|
1622
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.details" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.details">
|
1623
|
+
<ANCHOR id="GPatternSpec" href="glib/glib-Glob-style-pattern-matching.html#GPatternSpec">
|
1624
|
+
<ANCHOR id="g-pattern-spec-new" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-spec-new">
|
1625
|
+
<ANCHOR id="g-pattern-spec-free" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-spec-free">
|
1626
|
+
<ANCHOR id="g-pattern-spec-equal" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-spec-equal">
|
1627
|
+
<ANCHOR id="g-pattern-match" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-match">
|
1628
|
+
<ANCHOR id="g-pattern-match-string" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-match-string">
|
1629
|
+
<ANCHOR id="g-pattern-match-simple" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-match-simple">
|
1630
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions" href="glib/glib-Perl-compatible-regular-expressions.html">
|
1631
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.synopsis" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.synopsis">
|
1632
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.description" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.description">
|
1633
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.details" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.details">
|
1634
|
+
<ANCHOR id="GRegexError" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexError">
|
1635
|
+
<ANCHOR id="G-REGEX-ERROR-COMPILE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-COMPILE:CAPS">
|
1636
|
+
<ANCHOR id="G-REGEX-ERROR-OPTIMIZE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-OPTIMIZE:CAPS">
|
1637
|
+
<ANCHOR id="G-REGEX-ERROR-REPLACE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-REPLACE:CAPS">
|
1638
|
+
<ANCHOR id="G-REGEX-ERROR-MATCH:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MATCH:CAPS">
|
1639
|
+
<ANCHOR id="G-REGEX-ERROR-INTERNAL:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INTERNAL:CAPS">
|
1640
|
+
<ANCHOR id="G-REGEX-ERROR-STRAY-BACKSLASH:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-STRAY-BACKSLASH:CAPS">
|
1641
|
+
<ANCHOR id="G-REGEX-ERROR-MISSING-CONTROL-CHAR:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MISSING-CONTROL-CHAR:CAPS">
|
1642
|
+
<ANCHOR id="G-REGEX-ERROR-UNRECOGNIZED-ESCAPE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNRECOGNIZED-ESCAPE:CAPS">
|
1643
|
+
<ANCHOR id="G-REGEX-ERROR-QUANTIFIERS-OUT-OF-ORDER:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-QUANTIFIERS-OUT-OF-ORDER:CAPS">
|
1644
|
+
<ANCHOR id="G-REGEX-ERROR-QUANTIFIER-TOO-BIG:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-QUANTIFIER-TOO-BIG:CAPS">
|
1645
|
+
<ANCHOR id="G-REGEX-ERROR-UNTERMINATED-CHARACTER-CLASS:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNTERMINATED-CHARACTER-CLASS:CAPS">
|
1646
|
+
<ANCHOR id="G-REGEX-ERROR-INVALID-ESCAPE-IN-CHARACTER-CLASS:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INVALID-ESCAPE-IN-CHARACTER-CLASS:CAPS">
|
1647
|
+
<ANCHOR id="G-REGEX-ERROR-RANGE-OUT-OF-ORDER:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-RANGE-OUT-OF-ORDER:CAPS">
|
1648
|
+
<ANCHOR id="G-REGEX-ERROR-NOTHING-TO-REPEAT:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-NOTHING-TO-REPEAT:CAPS">
|
1649
|
+
<ANCHOR id="G-REGEX-ERROR-UNRECOGNIZED-CHARACTER:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNRECOGNIZED-CHARACTER:CAPS">
|
1650
|
+
<ANCHOR id="G-REGEX-ERROR-POSIX-NAMED-CLASS-OUTSIDE-CLASS:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-POSIX-NAMED-CLASS-OUTSIDE-CLASS:CAPS">
|
1651
|
+
<ANCHOR id="G-REGEX-ERROR-UNMATCHED-PARENTHESIS:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNMATCHED-PARENTHESIS:CAPS">
|
1652
|
+
<ANCHOR id="G-REGEX-ERROR-INEXISTENT-SUBPATTERN-REFERENCE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INEXISTENT-SUBPATTERN-REFERENCE:CAPS">
|
1653
|
+
<ANCHOR id="G-REGEX-ERROR-UNTERMINATED-COMMENT:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNTERMINATED-COMMENT:CAPS">
|
1654
|
+
<ANCHOR id="G-REGEX-ERROR-EXPRESSION-TOO-LARGE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-EXPRESSION-TOO-LARGE:CAPS">
|
1655
|
+
<ANCHOR id="G-REGEX-ERROR-MEMORY-ERROR:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MEMORY-ERROR:CAPS">
|
1656
|
+
<ANCHOR id="G-REGEX-ERROR-VARIABLE-LENGTH-LOOKBEHIND:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-VARIABLE-LENGTH-LOOKBEHIND:CAPS">
|
1657
|
+
<ANCHOR id="G-REGEX-ERROR-MALFORMED-CONDITION:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MALFORMED-CONDITION:CAPS">
|
1658
|
+
<ANCHOR id="G-REGEX-ERROR-TOO-MANY-CONDITIONAL-BRANCHES:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-TOO-MANY-CONDITIONAL-BRANCHES:CAPS">
|
1659
|
+
<ANCHOR id="G-REGEX-ERROR-ASSERTION-EXPECTED:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-ASSERTION-EXPECTED:CAPS">
|
1660
|
+
<ANCHOR id="G-REGEX-ERROR-UNKNOWN-POSIX-CLASS-NAME:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNKNOWN-POSIX-CLASS-NAME:CAPS">
|
1661
|
+
<ANCHOR id="G-REGEX-ERROR-POSIX-COLLATING-ELEMENTS-NOT-SUPPORTED:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-POSIX-COLLATING-ELEMENTS-NOT-SUPPORTED:CAPS">
|
1662
|
+
<ANCHOR id="G-REGEX-ERROR-HEX-CODE-TOO-LARGE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-HEX-CODE-TOO-LARGE:CAPS">
|
1663
|
+
<ANCHOR id="G-REGEX-ERROR-INVALID-CONDITION:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INVALID-CONDITION:CAPS">
|
1664
|
+
<ANCHOR id="G-REGEX-ERROR-SINGLE-BYTE-MATCH-IN-LOOKBEHIND:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-SINGLE-BYTE-MATCH-IN-LOOKBEHIND:CAPS">
|
1665
|
+
<ANCHOR id="G-REGEX-ERROR-INFINITE-LOOP:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INFINITE-LOOP:CAPS">
|
1666
|
+
<ANCHOR id="G-REGEX-ERROR-MISSING-SUBPATTERN-NAME-TERMINATOR:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MISSING-SUBPATTERN-NAME-TERMINATOR:CAPS">
|
1667
|
+
<ANCHOR id="G-REGEX-ERROR-DUPLICATE-SUBPATTERN-NAME:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-DUPLICATE-SUBPATTERN-NAME:CAPS">
|
1668
|
+
<ANCHOR id="G-REGEX-ERROR-MALFORMED-PROPERTY:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MALFORMED-PROPERTY:CAPS">
|
1669
|
+
<ANCHOR id="G-REGEX-ERROR-UNKNOWN-PROPERTY:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNKNOWN-PROPERTY:CAPS">
|
1670
|
+
<ANCHOR id="G-REGEX-ERROR-SUBPATTERN-NAME-TOO-LONG:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-SUBPATTERN-NAME-TOO-LONG:CAPS">
|
1671
|
+
<ANCHOR id="G-REGEX-ERROR-TOO-MANY-SUBPATTERNS:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-TOO-MANY-SUBPATTERNS:CAPS">
|
1672
|
+
<ANCHOR id="G-REGEX-ERROR-INVALID-OCTAL-VALUE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INVALID-OCTAL-VALUE:CAPS">
|
1673
|
+
<ANCHOR id="G-REGEX-ERROR-TOO-MANY-BRANCHES-IN-DEFINE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-TOO-MANY-BRANCHES-IN-DEFINE:CAPS">
|
1674
|
+
<ANCHOR id="G-REGEX-ERROR-DEFINE-REPETION:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-DEFINE-REPETION:CAPS">
|
1675
|
+
<ANCHOR id="G-REGEX-ERROR-INCONSISTENT-NEWLINE-OPTIONS:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INCONSISTENT-NEWLINE-OPTIONS:CAPS">
|
1676
|
+
<ANCHOR id="G-REGEX-ERROR-MISSING-BACK-REFERENCE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MISSING-BACK-REFERENCE:CAPS">
|
1677
|
+
<ANCHOR id="G-REGEX-ERROR:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR:CAPS">
|
1678
|
+
<ANCHOR id="GRegexCompileFlags" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexCompileFlags">
|
1679
|
+
<ANCHOR id="G-REGEX-CASELESS:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-CASELESS:CAPS">
|
1680
|
+
<ANCHOR id="G-REGEX-MULTILINE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MULTILINE:CAPS">
|
1681
|
+
<ANCHOR id="G-REGEX-DOTALL:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-DOTALL:CAPS">
|
1682
|
+
<ANCHOR id="G-REGEX-EXTENDED:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-EXTENDED:CAPS">
|
1683
|
+
<ANCHOR id="G-REGEX-ANCHORED:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ANCHORED:CAPS">
|
1684
|
+
<ANCHOR id="G-REGEX-DOLLAR-ENDONLY:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-DOLLAR-ENDONLY:CAPS">
|
1685
|
+
<ANCHOR id="G-REGEX-UNGREEDY:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-UNGREEDY:CAPS">
|
1686
|
+
<ANCHOR id="G-REGEX-RAW:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-RAW:CAPS">
|
1687
|
+
<ANCHOR id="G-REGEX-NO-AUTO-CAPTURE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-NO-AUTO-CAPTURE:CAPS">
|
1688
|
+
<ANCHOR id="G-REGEX-OPTIMIZE:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-OPTIMIZE:CAPS">
|
1689
|
+
<ANCHOR id="G-REGEX-DUPNAMES:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-DUPNAMES:CAPS">
|
1690
|
+
<ANCHOR id="G-REGEX-NEWLINE-CR:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-NEWLINE-CR:CAPS">
|
1691
|
+
<ANCHOR id="G-REGEX-NEWLINE-LF:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-NEWLINE-LF:CAPS">
|
1692
|
+
<ANCHOR id="G-REGEX-NEWLINE-CRLF:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-NEWLINE-CRLF:CAPS">
|
1693
|
+
<ANCHOR id="GRegexMatchFlags" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexMatchFlags">
|
1694
|
+
<ANCHOR id="G-REGEX-MATCH-ANCHORED:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-ANCHORED:CAPS">
|
1695
|
+
<ANCHOR id="G-REGEX-MATCH-NOTBOL:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NOTBOL:CAPS">
|
1696
|
+
<ANCHOR id="G-REGEX-MATCH-NOTEOL:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NOTEOL:CAPS">
|
1697
|
+
<ANCHOR id="G-REGEX-MATCH-NOTEMPTY:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NOTEMPTY:CAPS">
|
1698
|
+
<ANCHOR id="G-REGEX-MATCH-PARTIAL:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-PARTIAL:CAPS">
|
1699
|
+
<ANCHOR id="G-REGEX-MATCH-NEWLINE-CR:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-CR:CAPS">
|
1700
|
+
<ANCHOR id="G-REGEX-MATCH-NEWLINE-LF:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-LF:CAPS">
|
1701
|
+
<ANCHOR id="G-REGEX-MATCH-NEWLINE-CRLF:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-CRLF:CAPS">
|
1702
|
+
<ANCHOR id="G-REGEX-MATCH-NEWLINE-ANY:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-ANY:CAPS">
|
1703
|
+
<ANCHOR id="GRegex" href="glib/glib-Perl-compatible-regular-expressions.html#GRegex">
|
1704
|
+
<ANCHOR id="GRegexEvalCallback" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexEvalCallback">
|
1705
|
+
<ANCHOR id="g-regex-new" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-new">
|
1706
|
+
<ANCHOR id="g-regex-ref" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-ref">
|
1707
|
+
<ANCHOR id="g-regex-unref" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-unref">
|
1708
|
+
<ANCHOR id="g-regex-get-pattern" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-pattern">
|
1709
|
+
<ANCHOR id="g-regex-get-max-backref" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-max-backref">
|
1710
|
+
<ANCHOR id="g-regex-get-capture-count" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-capture-count">
|
1711
|
+
<ANCHOR id="g-regex-get-string-number" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-string-number">
|
1712
|
+
<ANCHOR id="g-regex-escape-string" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-escape-string">
|
1713
|
+
<ANCHOR id="g-regex-match-simple" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-simple">
|
1714
|
+
<ANCHOR id="g-regex-match" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match">
|
1715
|
+
<ANCHOR id="g-regex-match-full" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-full">
|
1716
|
+
<ANCHOR id="g-regex-match-all" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-all">
|
1717
|
+
<ANCHOR id="g-regex-match-all-full" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-all-full">
|
1718
|
+
<ANCHOR id="g-regex-split-simple" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-split-simple">
|
1719
|
+
<ANCHOR id="g-regex-split" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-split">
|
1720
|
+
<ANCHOR id="g-regex-split-full" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-split-full">
|
1721
|
+
<ANCHOR id="g-regex-replace" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace">
|
1722
|
+
<ANCHOR id="g-regex-replace-literal" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace-literal">
|
1723
|
+
<ANCHOR id="g-regex-replace-eval" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace-eval">
|
1724
|
+
<ANCHOR id="g-regex-check-replacement" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-check-replacement">
|
1725
|
+
<ANCHOR id="GMatchInfo" href="glib/glib-Perl-compatible-regular-expressions.html#GMatchInfo">
|
1726
|
+
<ANCHOR id="g-match-info-get-regex" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-get-regex">
|
1727
|
+
<ANCHOR id="g-match-info-get-string" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-get-string">
|
1728
|
+
<ANCHOR id="g-match-info-free" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-free">
|
1729
|
+
<ANCHOR id="g-match-info-matches" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-matches">
|
1730
|
+
<ANCHOR id="g-match-info-next" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-next">
|
1731
|
+
<ANCHOR id="g-match-info-get-match-count" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-get-match-count">
|
1732
|
+
<ANCHOR id="g-match-info-is-partial-match" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-is-partial-match">
|
1733
|
+
<ANCHOR id="g-match-info-expand-references" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-expand-references">
|
1734
|
+
<ANCHOR id="g-match-info-fetch" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch">
|
1735
|
+
<ANCHOR id="g-match-info-fetch-pos" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-pos">
|
1736
|
+
<ANCHOR id="g-match-info-fetch-named" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-named">
|
1737
|
+
<ANCHOR id="g-match-info-fetch-named-pos" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-named-pos">
|
1738
|
+
<ANCHOR id="g-match-info-fetch-all" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-all">
|
1739
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser" href="glib/glib-Simple-XML-Subset-Parser.html">
|
1740
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.synopsis" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.synopsis">
|
1741
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.description" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.description">
|
1742
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.details" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.details">
|
1743
|
+
<ANCHOR id="GMarkupError" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupError">
|
1744
|
+
<ANCHOR id="G-MARKUP-ERROR-BAD-UTF8:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-BAD-UTF8:CAPS">
|
1745
|
+
<ANCHOR id="G-MARKUP-ERROR-EMPTY:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-EMPTY:CAPS">
|
1746
|
+
<ANCHOR id="G-MARKUP-ERROR-PARSE:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-PARSE:CAPS">
|
1747
|
+
<ANCHOR id="G-MARKUP-ERROR-UNKNOWN-ELEMENT:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-UNKNOWN-ELEMENT:CAPS">
|
1748
|
+
<ANCHOR id="G-MARKUP-ERROR-UNKNOWN-ATTRIBUTE:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-UNKNOWN-ATTRIBUTE:CAPS">
|
1749
|
+
<ANCHOR id="G-MARKUP-ERROR-INVALID-CONTENT:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-INVALID-CONTENT:CAPS">
|
1750
|
+
<ANCHOR id="G-MARKUP-ERROR-MISSING-ATTRIBUTE:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-MISSING-ATTRIBUTE:CAPS">
|
1751
|
+
<ANCHOR id="G-MARKUP-ERROR:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR:CAPS">
|
1752
|
+
<ANCHOR id="GMarkupParseFlags" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupParseFlags">
|
1753
|
+
<ANCHOR id="G-MARKUP-DO-NOT-USE-THIS-UNSUPPORTED-FLAG:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-DO-NOT-USE-THIS-UNSUPPORTED-FLAG:CAPS">
|
1754
|
+
<ANCHOR id="G-MARKUP-TREAT-CDATA-AS-TEXT:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-TREAT-CDATA-AS-TEXT:CAPS">
|
1755
|
+
<ANCHOR id="G-MARKUP-PREFIX-ERROR-POSITION:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-PREFIX-ERROR-POSITION:CAPS">
|
1756
|
+
<ANCHOR id="GMarkupParseContext" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupParseContext">
|
1757
|
+
<ANCHOR id="GMarkupParser" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupParser">
|
1758
|
+
<ANCHOR id="g-markup-escape-text" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-escape-text">
|
1759
|
+
<ANCHOR id="g-markup-printf-escaped" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-printf-escaped">
|
1760
|
+
<ANCHOR id="g-markup-vprintf-escaped" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-vprintf-escaped">
|
1761
|
+
<ANCHOR id="g-markup-parse-context-end-parse" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-end-parse">
|
1762
|
+
<ANCHOR id="g-markup-parse-context-free" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-free">
|
1763
|
+
<ANCHOR id="g-markup-parse-context-get-position" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-position">
|
1764
|
+
<ANCHOR id="g-markup-parse-context-get-element" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-element">
|
1765
|
+
<ANCHOR id="g-markup-parse-context-get-element-stack" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-element-stack">
|
1766
|
+
<ANCHOR id="g-markup-parse-context-get-user-data" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-user-data">
|
1767
|
+
<ANCHOR id="g-markup-parse-context-new" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-new">
|
1768
|
+
<ANCHOR id="g-markup-parse-context-parse" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-parse">
|
1769
|
+
<ANCHOR id="g-markup-parse-context-push" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-push">
|
1770
|
+
<ANCHOR id="g-markup-parse-context-pop" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-pop">
|
1771
|
+
<ANCHOR id="GMarkupCollectType" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupCollectType">
|
1772
|
+
<ANCHOR id="G-MARKUP-COLLECT-INVALID:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-INVALID:CAPS">
|
1773
|
+
<ANCHOR id="G-MARKUP-COLLECT-STRING:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-STRING:CAPS">
|
1774
|
+
<ANCHOR id="G-MARKUP-COLLECT-STRDUP:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-STRDUP:CAPS">
|
1775
|
+
<ANCHOR id="G-MARKUP-COLLECT-BOOLEAN:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-BOOLEAN:CAPS">
|
1776
|
+
<ANCHOR id="G-MARKUP-COLLECT-TRISTATE:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-TRISTATE:CAPS">
|
1777
|
+
<ANCHOR id="G-MARKUP-COLLECT-OPTIONAL:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-OPTIONAL:CAPS">
|
1778
|
+
<ANCHOR id="g-markup-collect-attributes" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-collect-attributes">
|
1779
|
+
<ANCHOR id="glib-Key-value-file-parser" href="glib/glib-Key-value-file-parser.html">
|
1780
|
+
<ANCHOR id="glib-Key-value-file-parser.synopsis" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.synopsis">
|
1781
|
+
<ANCHOR id="glib-Key-value-file-parser.description" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.description">
|
1782
|
+
<ANCHOR id="glib-Key-value-file-parser.details" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.details">
|
1783
|
+
<ANCHOR id="GKeyFile" href="glib/glib-Key-value-file-parser.html#GKeyFile">
|
1784
|
+
<ANCHOR id="G-KEY-FILE-ERROR:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR:CAPS">
|
1785
|
+
<ANCHOR id="GKeyFileError" href="glib/glib-Key-value-file-parser.html#GKeyFileError">
|
1786
|
+
<ANCHOR id="G-KEY-FILE-ERROR-UNKNOWN-ENCODING:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-UNKNOWN-ENCODING:CAPS">
|
1787
|
+
<ANCHOR id="G-KEY-FILE-ERROR-PARSE:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-PARSE:CAPS">
|
1788
|
+
<ANCHOR id="G-KEY-FILE-ERROR-NOT-FOUND:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-NOT-FOUND:CAPS">
|
1789
|
+
<ANCHOR id="G-KEY-FILE-ERROR-KEY-NOT-FOUND:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-KEY-NOT-FOUND:CAPS">
|
1790
|
+
<ANCHOR id="G-KEY-FILE-ERROR-GROUP-NOT-FOUND:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-GROUP-NOT-FOUND:CAPS">
|
1791
|
+
<ANCHOR id="G-KEY-FILE-ERROR-INVALID-VALUE:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-INVALID-VALUE:CAPS">
|
1792
|
+
<ANCHOR id="GKeyFileFlags" href="glib/glib-Key-value-file-parser.html#GKeyFileFlags">
|
1793
|
+
<ANCHOR id="G-KEY-FILE-NONE:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-NONE:CAPS">
|
1794
|
+
<ANCHOR id="G-KEY-FILE-KEEP-COMMENTS:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-KEEP-COMMENTS:CAPS">
|
1795
|
+
<ANCHOR id="G-KEY-FILE-KEEP-TRANSLATIONS:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-KEEP-TRANSLATIONS:CAPS">
|
1796
|
+
<ANCHOR id="g-key-file-new" href="glib/glib-Key-value-file-parser.html#g-key-file-new">
|
1797
|
+
<ANCHOR id="g-key-file-free" href="glib/glib-Key-value-file-parser.html#g-key-file-free">
|
1798
|
+
<ANCHOR id="g-key-file-set-list-separator" href="glib/glib-Key-value-file-parser.html#g-key-file-set-list-separator">
|
1799
|
+
<ANCHOR id="g-key-file-load-from-file" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-file">
|
1800
|
+
<ANCHOR id="g-key-file-load-from-data" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-data">
|
1801
|
+
<ANCHOR id="g-key-file-load-from-data-dirs" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-data-dirs">
|
1802
|
+
<ANCHOR id="g-key-file-load-from-dirs" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-dirs">
|
1803
|
+
<ANCHOR id="g-key-file-to-data" href="glib/glib-Key-value-file-parser.html#g-key-file-to-data">
|
1804
|
+
<ANCHOR id="g-key-file-get-start-group" href="glib/glib-Key-value-file-parser.html#g-key-file-get-start-group">
|
1805
|
+
<ANCHOR id="g-key-file-get-groups" href="glib/glib-Key-value-file-parser.html#g-key-file-get-groups">
|
1806
|
+
<ANCHOR id="g-key-file-get-keys" href="glib/glib-Key-value-file-parser.html#g-key-file-get-keys">
|
1807
|
+
<ANCHOR id="g-key-file-has-group" href="glib/glib-Key-value-file-parser.html#g-key-file-has-group">
|
1808
|
+
<ANCHOR id="g-key-file-has-key" href="glib/glib-Key-value-file-parser.html#g-key-file-has-key">
|
1809
|
+
<ANCHOR id="g-key-file-get-value" href="glib/glib-Key-value-file-parser.html#g-key-file-get-value">
|
1810
|
+
<ANCHOR id="g-key-file-get-string" href="glib/glib-Key-value-file-parser.html#g-key-file-get-string">
|
1811
|
+
<ANCHOR id="g-key-file-get-locale-string" href="glib/glib-Key-value-file-parser.html#g-key-file-get-locale-string">
|
1812
|
+
<ANCHOR id="g-key-file-get-boolean" href="glib/glib-Key-value-file-parser.html#g-key-file-get-boolean">
|
1813
|
+
<ANCHOR id="g-key-file-get-integer" href="glib/glib-Key-value-file-parser.html#g-key-file-get-integer">
|
1814
|
+
<ANCHOR id="g-key-file-get-double" href="glib/glib-Key-value-file-parser.html#g-key-file-get-double">
|
1815
|
+
<ANCHOR id="g-key-file-get-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-string-list">
|
1816
|
+
<ANCHOR id="g-key-file-get-locale-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-locale-string-list">
|
1817
|
+
<ANCHOR id="g-key-file-get-boolean-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-boolean-list">
|
1818
|
+
<ANCHOR id="g-key-file-get-integer-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-integer-list">
|
1819
|
+
<ANCHOR id="g-key-file-get-double-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-double-list">
|
1820
|
+
<ANCHOR id="g-key-file-get-comment" href="glib/glib-Key-value-file-parser.html#g-key-file-get-comment">
|
1821
|
+
<ANCHOR id="g-key-file-set-value" href="glib/glib-Key-value-file-parser.html#g-key-file-set-value">
|
1822
|
+
<ANCHOR id="g-key-file-set-string" href="glib/glib-Key-value-file-parser.html#g-key-file-set-string">
|
1823
|
+
<ANCHOR id="g-key-file-set-locale-string" href="glib/glib-Key-value-file-parser.html#g-key-file-set-locale-string">
|
1824
|
+
<ANCHOR id="g-key-file-set-boolean" href="glib/glib-Key-value-file-parser.html#g-key-file-set-boolean">
|
1825
|
+
<ANCHOR id="g-key-file-set-integer" href="glib/glib-Key-value-file-parser.html#g-key-file-set-integer">
|
1826
|
+
<ANCHOR id="g-key-file-set-double" href="glib/glib-Key-value-file-parser.html#g-key-file-set-double">
|
1827
|
+
<ANCHOR id="g-key-file-set-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-string-list">
|
1828
|
+
<ANCHOR id="g-key-file-set-locale-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-locale-string-list">
|
1829
|
+
<ANCHOR id="g-key-file-set-boolean-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-boolean-list">
|
1830
|
+
<ANCHOR id="g-key-file-set-integer-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-integer-list">
|
1831
|
+
<ANCHOR id="g-key-file-set-double-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-double-list">
|
1832
|
+
<ANCHOR id="g-key-file-set-comment" href="glib/glib-Key-value-file-parser.html#g-key-file-set-comment">
|
1833
|
+
<ANCHOR id="g-key-file-remove-group" href="glib/glib-Key-value-file-parser.html#g-key-file-remove-group">
|
1834
|
+
<ANCHOR id="g-key-file-remove-key" href="glib/glib-Key-value-file-parser.html#g-key-file-remove-key">
|
1835
|
+
<ANCHOR id="g-key-file-remove-comment" href="glib/glib-Key-value-file-parser.html#g-key-file-remove-comment">
|
1836
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-GROUP:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-GROUP:CAPS">
|
1837
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-TYPE:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TYPE:CAPS">
|
1838
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-VERSION:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-VERSION:CAPS">
|
1839
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-NAME:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NAME:CAPS">
|
1840
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-GENERIC-NAME:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-GENERIC-NAME:CAPS">
|
1841
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-NO-DISPLAY:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NO-DISPLAY:CAPS">
|
1842
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-COMMENT:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-COMMENT:CAPS">
|
1843
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-ICON:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-ICON:CAPS">
|
1844
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-HIDDEN:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-HIDDEN:CAPS">
|
1845
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-ONLY-SHOW-IN:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-ONLY-SHOW-IN:CAPS">
|
1846
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-NOT-SHOW-IN:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NOT-SHOW-IN:CAPS">
|
1847
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-TRY-EXEC:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TRY-EXEC:CAPS">
|
1848
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-EXEC:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-EXEC:CAPS">
|
1849
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-PATH:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-PATH:CAPS">
|
1850
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-TERMINAL:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TERMINAL:CAPS">
|
1851
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-MIME-TYPE:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-MIME-TYPE:CAPS">
|
1852
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-CATEGORIES:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-CATEGORIES:CAPS">
|
1853
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-STARTUP-NOTIFY:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-STARTUP-NOTIFY:CAPS">
|
1854
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-STARTUP-WM-CLASS:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-STARTUP-WM-CLASS:CAPS">
|
1855
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-URL:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-URL:CAPS">
|
1856
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-TYPE-APPLICATION:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-APPLICATION:CAPS">
|
1857
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-TYPE-LINK:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-LINK:CAPS">
|
1858
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-TYPE-DIRECTORY:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-DIRECTORY:CAPS">
|
1859
|
+
<ANCHOR id="glib-Bookmark-file-parser" href="glib/glib-Bookmark-file-parser.html">
|
1860
|
+
<ANCHOR id="glib-Bookmark-file-parser.synopsis" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.synopsis">
|
1861
|
+
<ANCHOR id="glib-Bookmark-file-parser.description" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.description">
|
1862
|
+
<ANCHOR id="glib-Bookmark-file-parser.details" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.details">
|
1863
|
+
<ANCHOR id="GBookmarkFile" href="glib/glib-Bookmark-file-parser.html#GBookmarkFile">
|
1864
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR:CAPS">
|
1865
|
+
<ANCHOR id="GBookmarkFileError" href="glib/glib-Bookmark-file-parser.html#GBookmarkFileError">
|
1866
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-INVALID-URI:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-INVALID-URI:CAPS">
|
1867
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-INVALID-VALUE:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-INVALID-VALUE:CAPS">
|
1868
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-APP-NOT-REGISTERED:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-APP-NOT-REGISTERED:CAPS">
|
1869
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-URI-NOT-FOUND:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-URI-NOT-FOUND:CAPS">
|
1870
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-READ:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-READ:CAPS">
|
1871
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-UNKNOWN-ENCODING:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-UNKNOWN-ENCODING:CAPS">
|
1872
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-WRITE:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-WRITE:CAPS">
|
1873
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR-FILE-NOT-FOUND:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-FILE-NOT-FOUND:CAPS">
|
1874
|
+
<ANCHOR id="g-bookmark-file-new" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-new">
|
1875
|
+
<ANCHOR id="g-bookmark-file-free" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-free">
|
1876
|
+
<ANCHOR id="g-bookmark-file-load-from-file" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-load-from-file">
|
1877
|
+
<ANCHOR id="g-bookmark-file-load-from-data" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-load-from-data">
|
1878
|
+
<ANCHOR id="g-bookmark-file-load-from-data-dirs" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-load-from-data-dirs">
|
1879
|
+
<ANCHOR id="g-bookmark-file-to-data" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-to-data">
|
1880
|
+
<ANCHOR id="g-bookmark-file-to-file" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-to-file">
|
1881
|
+
<ANCHOR id="g-bookmark-file-has-item" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-has-item">
|
1882
|
+
<ANCHOR id="g-bookmark-file-has-group" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-has-group">
|
1883
|
+
<ANCHOR id="g-bookmark-file-has-application" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-has-application">
|
1884
|
+
<ANCHOR id="g-bookmark-file-get-size" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-size">
|
1885
|
+
<ANCHOR id="g-bookmark-file-get-uris" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-uris">
|
1886
|
+
<ANCHOR id="g-bookmark-file-get-title" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-title">
|
1887
|
+
<ANCHOR id="g-bookmark-file-get-description" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-description">
|
1888
|
+
<ANCHOR id="g-bookmark-file-get-mime-type" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-mime-type">
|
1889
|
+
<ANCHOR id="g-bookmark-file-get-is-private" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-is-private">
|
1890
|
+
<ANCHOR id="g-bookmark-file-get-icon" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-icon">
|
1891
|
+
<ANCHOR id="g-bookmark-file-get-added" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-added">
|
1892
|
+
<ANCHOR id="g-bookmark-file-get-modified" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-modified">
|
1893
|
+
<ANCHOR id="g-bookmark-file-get-visited" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-visited">
|
1894
|
+
<ANCHOR id="g-bookmark-file-get-groups" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-groups">
|
1895
|
+
<ANCHOR id="g-bookmark-file-get-applications" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-applications">
|
1896
|
+
<ANCHOR id="g-bookmark-file-get-app-info" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-app-info">
|
1897
|
+
<ANCHOR id="g-bookmark-file-set-title" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-title">
|
1898
|
+
<ANCHOR id="g-bookmark-file-set-description" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-description">
|
1899
|
+
<ANCHOR id="g-bookmark-file-set-mime-type" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-mime-type">
|
1900
|
+
<ANCHOR id="g-bookmark-file-set-is-private" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-is-private">
|
1901
|
+
<ANCHOR id="g-bookmark-file-set-icon" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-icon">
|
1902
|
+
<ANCHOR id="g-bookmark-file-set-added" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-added">
|
1903
|
+
<ANCHOR id="g-bookmark-file-set-groups" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-groups">
|
1904
|
+
<ANCHOR id="g-bookmark-file-set-modified" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-modified">
|
1905
|
+
<ANCHOR id="g-bookmark-file-set-visited" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-visited">
|
1906
|
+
<ANCHOR id="g-bookmark-file-set-app-info" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-app-info">
|
1907
|
+
<ANCHOR id="g-bookmark-file-add-group" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-add-group">
|
1908
|
+
<ANCHOR id="g-bookmark-file-add-application" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-add-application">
|
1909
|
+
<ANCHOR id="g-bookmark-file-remove-group" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-remove-group">
|
1910
|
+
<ANCHOR id="g-bookmark-file-remove-application" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-remove-application">
|
1911
|
+
<ANCHOR id="g-bookmark-file-remove-item" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-remove-item">
|
1912
|
+
<ANCHOR id="g-bookmark-file-move-item" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-move-item">
|
1913
|
+
<ANCHOR id="glib-Testing" href="glib/glib-Testing.html">
|
1914
|
+
<ANCHOR id="glib-Testing.synopsis" href="glib/glib-Testing.html#glib-Testing.synopsis">
|
1915
|
+
<ANCHOR id="glib-Testing.description" href="glib/glib-Testing.html#glib-Testing.description">
|
1916
|
+
<ANCHOR id="glib-Testing.details" href="glib/glib-Testing.html#glib-Testing.details">
|
1917
|
+
<ANCHOR id="g-test-minimized-result" href="glib/glib-Testing.html#g-test-minimized-result">
|
1918
|
+
<ANCHOR id="g-test-maximized-result" href="glib/glib-Testing.html#g-test-maximized-result">
|
1919
|
+
<ANCHOR id="g-test-init" href="glib/glib-Testing.html#g-test-init">
|
1920
|
+
<ANCHOR id="g-test-quick" href="glib/glib-Testing.html#g-test-quick">
|
1921
|
+
<ANCHOR id="g-test-slow" href="glib/glib-Testing.html#g-test-slow">
|
1922
|
+
<ANCHOR id="g-test-thorough" href="glib/glib-Testing.html#g-test-thorough">
|
1923
|
+
<ANCHOR id="g-test-perf" href="glib/glib-Testing.html#g-test-perf">
|
1924
|
+
<ANCHOR id="g-test-verbose" href="glib/glib-Testing.html#g-test-verbose">
|
1925
|
+
<ANCHOR id="g-test-quiet" href="glib/glib-Testing.html#g-test-quiet">
|
1926
|
+
<ANCHOR id="g-test-run" href="glib/glib-Testing.html#g-test-run">
|
1927
|
+
<ANCHOR id="g-test-add-func" href="glib/glib-Testing.html#g-test-add-func">
|
1928
|
+
<ANCHOR id="g-test-add-data-func" href="glib/glib-Testing.html#g-test-add-data-func">
|
1929
|
+
<ANCHOR id="g-test-add" href="glib/glib-Testing.html#g-test-add">
|
1930
|
+
<ANCHOR id="g-test-message" href="glib/glib-Testing.html#g-test-message">
|
1931
|
+
<ANCHOR id="g-test-bug-base" href="glib/glib-Testing.html#g-test-bug-base">
|
1932
|
+
<ANCHOR id="g-test-bug" href="glib/glib-Testing.html#g-test-bug">
|
1933
|
+
<ANCHOR id="GTestLogFatalFunc" href="glib/glib-Testing.html#GTestLogFatalFunc">
|
1934
|
+
<ANCHOR id="g-test-log-set-fatal-handler" href="glib/glib-Testing.html#g-test-log-set-fatal-handler">
|
1935
|
+
<ANCHOR id="g-test-timer-start" href="glib/glib-Testing.html#g-test-timer-start">
|
1936
|
+
<ANCHOR id="g-test-timer-elapsed" href="glib/glib-Testing.html#g-test-timer-elapsed">
|
1937
|
+
<ANCHOR id="g-test-timer-last" href="glib/glib-Testing.html#g-test-timer-last">
|
1938
|
+
<ANCHOR id="g-test-queue-free" href="glib/glib-Testing.html#g-test-queue-free">
|
1939
|
+
<ANCHOR id="g-test-queue-destroy" href="glib/glib-Testing.html#g-test-queue-destroy">
|
1940
|
+
<ANCHOR id="g-test-queue-unref" href="glib/glib-Testing.html#g-test-queue-unref">
|
1941
|
+
<ANCHOR id="GTestTrapFlags" href="glib/glib-Testing.html#GTestTrapFlags">
|
1942
|
+
<ANCHOR id="G-TEST-TRAP-SILENCE-STDOUT:CAPS" href="glib/glib-Testing.html#G-TEST-TRAP-SILENCE-STDOUT:CAPS">
|
1943
|
+
<ANCHOR id="G-TEST-TRAP-SILENCE-STDERR:CAPS" href="glib/glib-Testing.html#G-TEST-TRAP-SILENCE-STDERR:CAPS">
|
1944
|
+
<ANCHOR id="G-TEST-TRAP-INHERIT-STDIN:CAPS" href="glib/glib-Testing.html#G-TEST-TRAP-INHERIT-STDIN:CAPS">
|
1945
|
+
<ANCHOR id="g-test-trap-fork" href="glib/glib-Testing.html#g-test-trap-fork">
|
1946
|
+
<ANCHOR id="g-test-trap-has-passed" href="glib/glib-Testing.html#g-test-trap-has-passed">
|
1947
|
+
<ANCHOR id="g-test-trap-reached-timeout" href="glib/glib-Testing.html#g-test-trap-reached-timeout">
|
1948
|
+
<ANCHOR id="g-test-trap-assert-passed" href="glib/glib-Testing.html#g-test-trap-assert-passed">
|
1949
|
+
<ANCHOR id="g-test-trap-assert-failed" href="glib/glib-Testing.html#g-test-trap-assert-failed">
|
1950
|
+
<ANCHOR id="g-test-trap-assert-stdout" href="glib/glib-Testing.html#g-test-trap-assert-stdout">
|
1951
|
+
<ANCHOR id="g-test-trap-assert-stdout-unmatched" href="glib/glib-Testing.html#g-test-trap-assert-stdout-unmatched">
|
1952
|
+
<ANCHOR id="g-test-trap-assert-stderr" href="glib/glib-Testing.html#g-test-trap-assert-stderr">
|
1953
|
+
<ANCHOR id="g-test-trap-assert-stderr-unmatched" href="glib/glib-Testing.html#g-test-trap-assert-stderr-unmatched">
|
1954
|
+
<ANCHOR id="g-test-rand-bit" href="glib/glib-Testing.html#g-test-rand-bit">
|
1955
|
+
<ANCHOR id="g-test-rand-int" href="glib/glib-Testing.html#g-test-rand-int">
|
1956
|
+
<ANCHOR id="g-test-rand-int-range" href="glib/glib-Testing.html#g-test-rand-int-range">
|
1957
|
+
<ANCHOR id="g-test-rand-double" href="glib/glib-Testing.html#g-test-rand-double">
|
1958
|
+
<ANCHOR id="g-test-rand-double-range" href="glib/glib-Testing.html#g-test-rand-double-range">
|
1959
|
+
<ANCHOR id="g-assert" href="glib/glib-Testing.html#g-assert">
|
1960
|
+
<ANCHOR id="g-assert-not-reached" href="glib/glib-Testing.html#g-assert-not-reached">
|
1961
|
+
<ANCHOR id="g-assert-cmpstr" href="glib/glib-Testing.html#g-assert-cmpstr">
|
1962
|
+
<ANCHOR id="g-assert-cmpint" href="glib/glib-Testing.html#g-assert-cmpint">
|
1963
|
+
<ANCHOR id="g-assert-cmpuint" href="glib/glib-Testing.html#g-assert-cmpuint">
|
1964
|
+
<ANCHOR id="g-assert-cmphex" href="glib/glib-Testing.html#g-assert-cmphex">
|
1965
|
+
<ANCHOR id="g-assert-cmpfloat" href="glib/glib-Testing.html#g-assert-cmpfloat">
|
1966
|
+
<ANCHOR id="g-assert-no-error" href="glib/glib-Testing.html#g-assert-no-error">
|
1967
|
+
<ANCHOR id="g-assert-error" href="glib/glib-Testing.html#g-assert-error">
|
1968
|
+
<ANCHOR id="GTestCase" href="glib/glib-Testing.html#GTestCase">
|
1969
|
+
<ANCHOR id="GTestSuite" href="glib/glib-Testing.html#GTestSuite">
|
1970
|
+
<ANCHOR id="g-test-create-case" href="glib/glib-Testing.html#g-test-create-case">
|
1971
|
+
<ANCHOR id="g-test-create-suite" href="glib/glib-Testing.html#g-test-create-suite">
|
1972
|
+
<ANCHOR id="g-test-get-root" href="glib/glib-Testing.html#g-test-get-root">
|
1973
|
+
<ANCHOR id="g-test-suite-add" href="glib/glib-Testing.html#g-test-suite-add">
|
1974
|
+
<ANCHOR id="g-test-suite-add-suite" href="glib/glib-Testing.html#g-test-suite-add-suite">
|
1975
|
+
<ANCHOR id="g-test-run-suite" href="glib/glib-Testing.html#g-test-run-suite">
|
1976
|
+
<ANCHOR id="glib-Testing.see-also" href="glib/glib-Testing.html#glib-Testing.see-also">
|
1977
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions" href="glib/glib-Windows-Compatibility-Functions.html">
|
1978
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.synopsis" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.synopsis">
|
1979
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.description" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.description">
|
1980
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.details" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.details">
|
1981
|
+
<ANCHOR id="MAXPATHLEN:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#MAXPATHLEN:CAPS">
|
1982
|
+
<ANCHOR id="g-win32-error-message" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-error-message">
|
1983
|
+
<ANCHOR id="g-win32-getlocale" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-getlocale">
|
1984
|
+
<ANCHOR id="g-win32-get-package-installation-directory" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-directory">
|
1985
|
+
<ANCHOR id="g-win32-get-package-installation-directory-of-module" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-directory-of-module">
|
1986
|
+
<ANCHOR id="g-win32-get-package-installation-subdirectory" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-subdirectory">
|
1987
|
+
<ANCHOR id="g-win32-get-windows-version" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-windows-version">
|
1988
|
+
<ANCHOR id="g-win32-locale-filename-from-utf8" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-locale-filename-from-utf8">
|
1989
|
+
<ANCHOR id="G-WIN32-DLLMAIN-FOR-DLL-NAME:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#G-WIN32-DLLMAIN-FOR-DLL-NAME:CAPS">
|
1990
|
+
<ANCHOR id="G-WIN32-HAVE-WIDECHAR-API:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#G-WIN32-HAVE-WIDECHAR-API:CAPS">
|
1991
|
+
<ANCHOR id="G-WIN32-IS-NT-BASED:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#G-WIN32-IS-NT-BASED:CAPS">
|
1992
|
+
<ANCHOR id="glib-Memory-Slices" href="glib/glib-Memory-Slices.html">
|
1993
|
+
<ANCHOR id="glib-Memory-Slices.synopsis" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.synopsis">
|
1994
|
+
<ANCHOR id="glib-Memory-Slices.description" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.description">
|
1995
|
+
<ANCHOR id="glib-Memory-Slices.details" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.details">
|
1996
|
+
<ANCHOR id="g-slice-alloc" href="glib/glib-Memory-Slices.html#g-slice-alloc">
|
1997
|
+
<ANCHOR id="g-slice-alloc0" href="glib/glib-Memory-Slices.html#g-slice-alloc0">
|
1998
|
+
<ANCHOR id="g-slice-copy" href="glib/glib-Memory-Slices.html#g-slice-copy">
|
1999
|
+
<ANCHOR id="g-slice-free1" href="glib/glib-Memory-Slices.html#g-slice-free1">
|
2000
|
+
<ANCHOR id="g-slice-free-chain-with-offset" href="glib/glib-Memory-Slices.html#g-slice-free-chain-with-offset">
|
2001
|
+
<ANCHOR id="g-slice-new" href="glib/glib-Memory-Slices.html#g-slice-new">
|
2002
|
+
<ANCHOR id="g-slice-new0" href="glib/glib-Memory-Slices.html#g-slice-new0">
|
2003
|
+
<ANCHOR id="g-slice-dup" href="glib/glib-Memory-Slices.html#g-slice-dup">
|
2004
|
+
<ANCHOR id="g-slice-free" href="glib/glib-Memory-Slices.html#g-slice-free">
|
2005
|
+
<ANCHOR id="g-slice-free-chain" href="glib/glib-Memory-Slices.html#g-slice-free-chain">
|
2006
|
+
<ANCHOR id="glib-Memory-Chunks" href="glib/glib-Memory-Chunks.html">
|
2007
|
+
<ANCHOR id="glib-Memory-Chunks.synopsis" href="glib/glib-Memory-Chunks.html#glib-Memory-Chunks.synopsis">
|
2008
|
+
<ANCHOR id="glib-Memory-Chunks.description" href="glib/glib-Memory-Chunks.html#glib-Memory-Chunks.description">
|
2009
|
+
<ANCHOR id="glib-Memory-Chunks.details" href="glib/glib-Memory-Chunks.html#glib-Memory-Chunks.details">
|
2010
|
+
<ANCHOR id="GMemChunk" href="glib/glib-Memory-Chunks.html#GMemChunk">
|
2011
|
+
<ANCHOR id="G-ALLOC-AND-FREE:CAPS" href="glib/glib-Memory-Chunks.html#G-ALLOC-AND-FREE:CAPS">
|
2012
|
+
<ANCHOR id="G-ALLOC-ONLY:CAPS" href="glib/glib-Memory-Chunks.html#G-ALLOC-ONLY:CAPS">
|
2013
|
+
<ANCHOR id="g-mem-chunk-new" href="glib/glib-Memory-Chunks.html#g-mem-chunk-new">
|
2014
|
+
<ANCHOR id="g-mem-chunk-alloc" href="glib/glib-Memory-Chunks.html#g-mem-chunk-alloc">
|
2015
|
+
<ANCHOR id="g-mem-chunk-alloc0" href="glib/glib-Memory-Chunks.html#g-mem-chunk-alloc0">
|
2016
|
+
<ANCHOR id="g-mem-chunk-free" href="glib/glib-Memory-Chunks.html#g-mem-chunk-free">
|
2017
|
+
<ANCHOR id="g-mem-chunk-destroy" href="glib/glib-Memory-Chunks.html#g-mem-chunk-destroy">
|
2018
|
+
<ANCHOR id="g-mem-chunk-create" href="glib/glib-Memory-Chunks.html#g-mem-chunk-create">
|
2019
|
+
<ANCHOR id="g-chunk-new" href="glib/glib-Memory-Chunks.html#g-chunk-new">
|
2020
|
+
<ANCHOR id="g-chunk-new0" href="glib/glib-Memory-Chunks.html#g-chunk-new0">
|
2021
|
+
<ANCHOR id="g-chunk-free" href="glib/glib-Memory-Chunks.html#g-chunk-free">
|
2022
|
+
<ANCHOR id="g-mem-chunk-reset" href="glib/glib-Memory-Chunks.html#g-mem-chunk-reset">
|
2023
|
+
<ANCHOR id="g-mem-chunk-clean" href="glib/glib-Memory-Chunks.html#g-mem-chunk-clean">
|
2024
|
+
<ANCHOR id="g-blow-chunks" href="glib/glib-Memory-Chunks.html#g-blow-chunks">
|
2025
|
+
<ANCHOR id="g-mem-chunk-info" href="glib/glib-Memory-Chunks.html#g-mem-chunk-info">
|
2026
|
+
<ANCHOR id="g-mem-chunk-print" href="glib/glib-Memory-Chunks.html#g-mem-chunk-print">
|
2027
|
+
<ANCHOR id="glib-Doubly-Linked-Lists" href="glib/glib-Doubly-Linked-Lists.html">
|
2028
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.synopsis" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.synopsis">
|
2029
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.description" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.description">
|
2030
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.details" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.details">
|
2031
|
+
<ANCHOR id="GList" href="glib/glib-Doubly-Linked-Lists.html#GList">
|
2032
|
+
<ANCHOR id="g-list-append" href="glib/glib-Doubly-Linked-Lists.html#g-list-append">
|
2033
|
+
<ANCHOR id="g-list-prepend" href="glib/glib-Doubly-Linked-Lists.html#g-list-prepend">
|
2034
|
+
<ANCHOR id="g-list-insert" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert">
|
2035
|
+
<ANCHOR id="g-list-insert-before" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert-before">
|
2036
|
+
<ANCHOR id="g-list-insert-sorted" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert-sorted">
|
2037
|
+
<ANCHOR id="g-list-remove" href="glib/glib-Doubly-Linked-Lists.html#g-list-remove">
|
2038
|
+
<ANCHOR id="g-list-remove-link" href="glib/glib-Doubly-Linked-Lists.html#g-list-remove-link">
|
2039
|
+
<ANCHOR id="g-list-delete-link" href="glib/glib-Doubly-Linked-Lists.html#g-list-delete-link">
|
2040
|
+
<ANCHOR id="g-list-remove-all" href="glib/glib-Doubly-Linked-Lists.html#g-list-remove-all">
|
2041
|
+
<ANCHOR id="g-list-free" href="glib/glib-Doubly-Linked-Lists.html#g-list-free">
|
2042
|
+
<ANCHOR id="g-list-alloc" href="glib/glib-Doubly-Linked-Lists.html#g-list-alloc">
|
2043
|
+
<ANCHOR id="g-list-free-1" href="glib/glib-Doubly-Linked-Lists.html#g-list-free-1">
|
2044
|
+
<ANCHOR id="g-list-free1" href="glib/glib-Doubly-Linked-Lists.html#g-list-free1">
|
2045
|
+
<ANCHOR id="g-list-length" href="glib/glib-Doubly-Linked-Lists.html#g-list-length">
|
2046
|
+
<ANCHOR id="g-list-copy" href="glib/glib-Doubly-Linked-Lists.html#g-list-copy">
|
2047
|
+
<ANCHOR id="g-list-reverse" href="glib/glib-Doubly-Linked-Lists.html#g-list-reverse">
|
2048
|
+
<ANCHOR id="g-list-sort" href="glib/glib-Doubly-Linked-Lists.html#g-list-sort">
|
2049
|
+
<ANCHOR id="GCompareFunc" href="glib/glib-Doubly-Linked-Lists.html#GCompareFunc">
|
2050
|
+
<ANCHOR id="g-list-insert-sorted-with-data" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert-sorted-with-data">
|
2051
|
+
<ANCHOR id="g-list-sort-with-data" href="glib/glib-Doubly-Linked-Lists.html#g-list-sort-with-data">
|
2052
|
+
<ANCHOR id="GCompareDataFunc" href="glib/glib-Doubly-Linked-Lists.html#GCompareDataFunc">
|
2053
|
+
<ANCHOR id="g-list-concat" href="glib/glib-Doubly-Linked-Lists.html#g-list-concat">
|
2054
|
+
<ANCHOR id="g-list-foreach" href="glib/glib-Doubly-Linked-Lists.html#g-list-foreach">
|
2055
|
+
<ANCHOR id="GFunc" href="glib/glib-Doubly-Linked-Lists.html#GFunc">
|
2056
|
+
<ANCHOR id="g-list-first" href="glib/glib-Doubly-Linked-Lists.html#g-list-first">
|
2057
|
+
<ANCHOR id="g-list-last" href="glib/glib-Doubly-Linked-Lists.html#g-list-last">
|
2058
|
+
<ANCHOR id="g-list-previous" href="glib/glib-Doubly-Linked-Lists.html#g-list-previous">
|
2059
|
+
<ANCHOR id="g-list-next" href="glib/glib-Doubly-Linked-Lists.html#g-list-next">
|
2060
|
+
<ANCHOR id="g-list-nth" href="glib/glib-Doubly-Linked-Lists.html#g-list-nth">
|
2061
|
+
<ANCHOR id="g-list-nth-data" href="glib/glib-Doubly-Linked-Lists.html#g-list-nth-data">
|
2062
|
+
<ANCHOR id="g-list-nth-prev" href="glib/glib-Doubly-Linked-Lists.html#g-list-nth-prev">
|
2063
|
+
<ANCHOR id="g-list-find" href="glib/glib-Doubly-Linked-Lists.html#g-list-find">
|
2064
|
+
<ANCHOR id="g-list-find-custom" href="glib/glib-Doubly-Linked-Lists.html#g-list-find-custom">
|
2065
|
+
<ANCHOR id="g-list-position" href="glib/glib-Doubly-Linked-Lists.html#g-list-position">
|
2066
|
+
<ANCHOR id="g-list-index" href="glib/glib-Doubly-Linked-Lists.html#g-list-index">
|
2067
|
+
<ANCHOR id="g-list-push-allocator" href="glib/glib-Doubly-Linked-Lists.html#g-list-push-allocator">
|
2068
|
+
<ANCHOR id="g-list-pop-allocator" href="glib/glib-Doubly-Linked-Lists.html#g-list-pop-allocator">
|
2069
|
+
<ANCHOR id="glib-Singly-Linked-Lists" href="glib/glib-Singly-Linked-Lists.html">
|
2070
|
+
<ANCHOR id="glib-Singly-Linked-Lists.synopsis" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.synopsis">
|
2071
|
+
<ANCHOR id="glib-Singly-Linked-Lists.description" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.description">
|
2072
|
+
<ANCHOR id="glib-Singly-Linked-Lists.details" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.details">
|
2073
|
+
<ANCHOR id="GSList" href="glib/glib-Singly-Linked-Lists.html#GSList">
|
2074
|
+
<ANCHOR id="g-slist-alloc" href="glib/glib-Singly-Linked-Lists.html#g-slist-alloc">
|
2075
|
+
<ANCHOR id="g-slist-append" href="glib/glib-Singly-Linked-Lists.html#g-slist-append">
|
2076
|
+
<ANCHOR id="g-slist-prepend" href="glib/glib-Singly-Linked-Lists.html#g-slist-prepend">
|
2077
|
+
<ANCHOR id="g-slist-insert" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert">
|
2078
|
+
<ANCHOR id="g-slist-insert-before" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert-before">
|
2079
|
+
<ANCHOR id="g-slist-insert-sorted" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert-sorted">
|
2080
|
+
<ANCHOR id="g-slist-remove" href="glib/glib-Singly-Linked-Lists.html#g-slist-remove">
|
2081
|
+
<ANCHOR id="g-slist-remove-link" href="glib/glib-Singly-Linked-Lists.html#g-slist-remove-link">
|
2082
|
+
<ANCHOR id="g-slist-delete-link" href="glib/glib-Singly-Linked-Lists.html#g-slist-delete-link">
|
2083
|
+
<ANCHOR id="g-slist-remove-all" href="glib/glib-Singly-Linked-Lists.html#g-slist-remove-all">
|
2084
|
+
<ANCHOR id="g-slist-free" href="glib/glib-Singly-Linked-Lists.html#g-slist-free">
|
2085
|
+
<ANCHOR id="g-slist-free-1" href="glib/glib-Singly-Linked-Lists.html#g-slist-free-1">
|
2086
|
+
<ANCHOR id="g-slist-free1" href="glib/glib-Singly-Linked-Lists.html#g-slist-free1">
|
2087
|
+
<ANCHOR id="g-slist-length" href="glib/glib-Singly-Linked-Lists.html#g-slist-length">
|
2088
|
+
<ANCHOR id="g-slist-copy" href="glib/glib-Singly-Linked-Lists.html#g-slist-copy">
|
2089
|
+
<ANCHOR id="g-slist-reverse" href="glib/glib-Singly-Linked-Lists.html#g-slist-reverse">
|
2090
|
+
<ANCHOR id="g-slist-insert-sorted-with-data" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert-sorted-with-data">
|
2091
|
+
<ANCHOR id="g-slist-sort" href="glib/glib-Singly-Linked-Lists.html#g-slist-sort">
|
2092
|
+
<ANCHOR id="g-slist-sort-with-data" href="glib/glib-Singly-Linked-Lists.html#g-slist-sort-with-data">
|
2093
|
+
<ANCHOR id="g-slist-concat" href="glib/glib-Singly-Linked-Lists.html#g-slist-concat">
|
2094
|
+
<ANCHOR id="g-slist-foreach" href="glib/glib-Singly-Linked-Lists.html#g-slist-foreach">
|
2095
|
+
<ANCHOR id="g-slist-last" href="glib/glib-Singly-Linked-Lists.html#g-slist-last">
|
2096
|
+
<ANCHOR id="g-slist-next" href="glib/glib-Singly-Linked-Lists.html#g-slist-next">
|
2097
|
+
<ANCHOR id="g-slist-nth" href="glib/glib-Singly-Linked-Lists.html#g-slist-nth">
|
2098
|
+
<ANCHOR id="g-slist-nth-data" href="glib/glib-Singly-Linked-Lists.html#g-slist-nth-data">
|
2099
|
+
<ANCHOR id="g-slist-find" href="glib/glib-Singly-Linked-Lists.html#g-slist-find">
|
2100
|
+
<ANCHOR id="g-slist-find-custom" href="glib/glib-Singly-Linked-Lists.html#g-slist-find-custom">
|
2101
|
+
<ANCHOR id="g-slist-position" href="glib/glib-Singly-Linked-Lists.html#g-slist-position">
|
2102
|
+
<ANCHOR id="g-slist-index" href="glib/glib-Singly-Linked-Lists.html#g-slist-index">
|
2103
|
+
<ANCHOR id="g-slist-push-allocator" href="glib/glib-Singly-Linked-Lists.html#g-slist-push-allocator">
|
2104
|
+
<ANCHOR id="g-slist-pop-allocator" href="glib/glib-Singly-Linked-Lists.html#g-slist-pop-allocator">
|
2105
|
+
<ANCHOR id="glib-Double-ended-Queues" href="glib/glib-Double-ended-Queues.html">
|
2106
|
+
<ANCHOR id="glib-Double-ended-Queues.synopsis" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.synopsis">
|
2107
|
+
<ANCHOR id="glib-Double-ended-Queues.description" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.description">
|
2108
|
+
<ANCHOR id="glib-Double-ended-Queues.details" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.details">
|
2109
|
+
<ANCHOR id="GQueue" href="glib/glib-Double-ended-Queues.html#GQueue">
|
2110
|
+
<ANCHOR id="g-queue-new" href="glib/glib-Double-ended-Queues.html#g-queue-new">
|
2111
|
+
<ANCHOR id="g-queue-free" href="glib/glib-Double-ended-Queues.html#g-queue-free">
|
2112
|
+
<ANCHOR id="G-QUEUE-INIT:CAPS" href="glib/glib-Double-ended-Queues.html#G-QUEUE-INIT:CAPS">
|
2113
|
+
<ANCHOR id="g-queue-init" href="glib/glib-Double-ended-Queues.html#g-queue-init">
|
2114
|
+
<ANCHOR id="g-queue-clear" href="glib/glib-Double-ended-Queues.html#g-queue-clear">
|
2115
|
+
<ANCHOR id="g-queue-is-empty" href="glib/glib-Double-ended-Queues.html#g-queue-is-empty">
|
2116
|
+
<ANCHOR id="g-queue-get-length" href="glib/glib-Double-ended-Queues.html#g-queue-get-length">
|
2117
|
+
<ANCHOR id="g-queue-reverse" href="glib/glib-Double-ended-Queues.html#g-queue-reverse">
|
2118
|
+
<ANCHOR id="g-queue-copy" href="glib/glib-Double-ended-Queues.html#g-queue-copy">
|
2119
|
+
<ANCHOR id="g-queue-foreach" href="glib/glib-Double-ended-Queues.html#g-queue-foreach">
|
2120
|
+
<ANCHOR id="g-queue-find" href="glib/glib-Double-ended-Queues.html#g-queue-find">
|
2121
|
+
<ANCHOR id="g-queue-find-custom" href="glib/glib-Double-ended-Queues.html#g-queue-find-custom">
|
2122
|
+
<ANCHOR id="g-queue-sort" href="glib/glib-Double-ended-Queues.html#g-queue-sort">
|
2123
|
+
<ANCHOR id="g-queue-push-head" href="glib/glib-Double-ended-Queues.html#g-queue-push-head">
|
2124
|
+
<ANCHOR id="g-queue-push-tail" href="glib/glib-Double-ended-Queues.html#g-queue-push-tail">
|
2125
|
+
<ANCHOR id="g-queue-push-nth" href="glib/glib-Double-ended-Queues.html#g-queue-push-nth">
|
2126
|
+
<ANCHOR id="g-queue-pop-head" href="glib/glib-Double-ended-Queues.html#g-queue-pop-head">
|
2127
|
+
<ANCHOR id="g-queue-pop-tail" href="glib/glib-Double-ended-Queues.html#g-queue-pop-tail">
|
2128
|
+
<ANCHOR id="g-queue-pop-nth" href="glib/glib-Double-ended-Queues.html#g-queue-pop-nth">
|
2129
|
+
<ANCHOR id="g-queue-peek-head" href="glib/glib-Double-ended-Queues.html#g-queue-peek-head">
|
2130
|
+
<ANCHOR id="g-queue-peek-tail" href="glib/glib-Double-ended-Queues.html#g-queue-peek-tail">
|
2131
|
+
<ANCHOR id="g-queue-peek-nth" href="glib/glib-Double-ended-Queues.html#g-queue-peek-nth">
|
2132
|
+
<ANCHOR id="g-queue-index" href="glib/glib-Double-ended-Queues.html#g-queue-index">
|
2133
|
+
<ANCHOR id="g-queue-remove" href="glib/glib-Double-ended-Queues.html#g-queue-remove">
|
2134
|
+
<ANCHOR id="g-queue-remove-all" href="glib/glib-Double-ended-Queues.html#g-queue-remove-all">
|
2135
|
+
<ANCHOR id="g-queue-insert-before" href="glib/glib-Double-ended-Queues.html#g-queue-insert-before">
|
2136
|
+
<ANCHOR id="g-queue-insert-after" href="glib/glib-Double-ended-Queues.html#g-queue-insert-after">
|
2137
|
+
<ANCHOR id="g-queue-insert-sorted" href="glib/glib-Double-ended-Queues.html#g-queue-insert-sorted">
|
2138
|
+
<ANCHOR id="g-queue-push-head-link" href="glib/glib-Double-ended-Queues.html#g-queue-push-head-link">
|
2139
|
+
<ANCHOR id="g-queue-push-tail-link" href="glib/glib-Double-ended-Queues.html#g-queue-push-tail-link">
|
2140
|
+
<ANCHOR id="g-queue-push-nth-link" href="glib/glib-Double-ended-Queues.html#g-queue-push-nth-link">
|
2141
|
+
<ANCHOR id="g-queue-pop-head-link" href="glib/glib-Double-ended-Queues.html#g-queue-pop-head-link">
|
2142
|
+
<ANCHOR id="g-queue-pop-tail-link" href="glib/glib-Double-ended-Queues.html#g-queue-pop-tail-link">
|
2143
|
+
<ANCHOR id="g-queue-pop-nth-link" href="glib/glib-Double-ended-Queues.html#g-queue-pop-nth-link">
|
2144
|
+
<ANCHOR id="g-queue-peek-head-link" href="glib/glib-Double-ended-Queues.html#g-queue-peek-head-link">
|
2145
|
+
<ANCHOR id="g-queue-peek-tail-link" href="glib/glib-Double-ended-Queues.html#g-queue-peek-tail-link">
|
2146
|
+
<ANCHOR id="g-queue-peek-nth-link" href="glib/glib-Double-ended-Queues.html#g-queue-peek-nth-link">
|
2147
|
+
<ANCHOR id="g-queue-link-index" href="glib/glib-Double-ended-Queues.html#g-queue-link-index">
|
2148
|
+
<ANCHOR id="g-queue-unlink" href="glib/glib-Double-ended-Queues.html#g-queue-unlink">
|
2149
|
+
<ANCHOR id="g-queue-delete-link" href="glib/glib-Double-ended-Queues.html#g-queue-delete-link">
|
2150
|
+
<ANCHOR id="glib-Sequences" href="glib/glib-Sequences.html">
|
2151
|
+
<ANCHOR id="glib-Sequences.synopsis" href="glib/glib-Sequences.html#glib-Sequences.synopsis">
|
2152
|
+
<ANCHOR id="glib-Sequences.description" href="glib/glib-Sequences.html#glib-Sequences.description">
|
2153
|
+
<ANCHOR id="glib-Sequences.details" href="glib/glib-Sequences.html#glib-Sequences.details">
|
2154
|
+
<ANCHOR id="GSequence" href="glib/glib-Sequences.html#GSequence">
|
2155
|
+
<ANCHOR id="GSequenceIter" href="glib/glib-Sequences.html#GSequenceIter">
|
2156
|
+
<ANCHOR id="GSequenceIterCompareFunc" href="glib/glib-Sequences.html#GSequenceIterCompareFunc">
|
2157
|
+
<ANCHOR id="g-sequence-new" href="glib/glib-Sequences.html#g-sequence-new">
|
2158
|
+
<ANCHOR id="g-sequence-free" href="glib/glib-Sequences.html#g-sequence-free">
|
2159
|
+
<ANCHOR id="g-sequence-get-length" href="glib/glib-Sequences.html#g-sequence-get-length">
|
2160
|
+
<ANCHOR id="g-sequence-foreach" href="glib/glib-Sequences.html#g-sequence-foreach">
|
2161
|
+
<ANCHOR id="g-sequence-foreach-range" href="glib/glib-Sequences.html#g-sequence-foreach-range">
|
2162
|
+
<ANCHOR id="g-sequence-sort" href="glib/glib-Sequences.html#g-sequence-sort">
|
2163
|
+
<ANCHOR id="g-sequence-sort-iter" href="glib/glib-Sequences.html#g-sequence-sort-iter">
|
2164
|
+
<ANCHOR id="g-sequence-get-begin-iter" href="glib/glib-Sequences.html#g-sequence-get-begin-iter">
|
2165
|
+
<ANCHOR id="g-sequence-get-end-iter" href="glib/glib-Sequences.html#g-sequence-get-end-iter">
|
2166
|
+
<ANCHOR id="g-sequence-get-iter-at-pos" href="glib/glib-Sequences.html#g-sequence-get-iter-at-pos">
|
2167
|
+
<ANCHOR id="g-sequence-append" href="glib/glib-Sequences.html#g-sequence-append">
|
2168
|
+
<ANCHOR id="g-sequence-prepend" href="glib/glib-Sequences.html#g-sequence-prepend">
|
2169
|
+
<ANCHOR id="g-sequence-insert-before" href="glib/glib-Sequences.html#g-sequence-insert-before">
|
2170
|
+
<ANCHOR id="g-sequence-move" href="glib/glib-Sequences.html#g-sequence-move">
|
2171
|
+
<ANCHOR id="g-sequence-swap" href="glib/glib-Sequences.html#g-sequence-swap">
|
2172
|
+
<ANCHOR id="g-sequence-insert-sorted" href="glib/glib-Sequences.html#g-sequence-insert-sorted">
|
2173
|
+
<ANCHOR id="g-sequence-insert-sorted-iter" href="glib/glib-Sequences.html#g-sequence-insert-sorted-iter">
|
2174
|
+
<ANCHOR id="g-sequence-sort-changed" href="glib/glib-Sequences.html#g-sequence-sort-changed">
|
2175
|
+
<ANCHOR id="g-sequence-sort-changed-iter" href="glib/glib-Sequences.html#g-sequence-sort-changed-iter">
|
2176
|
+
<ANCHOR id="g-sequence-remove" href="glib/glib-Sequences.html#g-sequence-remove">
|
2177
|
+
<ANCHOR id="g-sequence-remove-range" href="glib/glib-Sequences.html#g-sequence-remove-range">
|
2178
|
+
<ANCHOR id="g-sequence-move-range" href="glib/glib-Sequences.html#g-sequence-move-range">
|
2179
|
+
<ANCHOR id="g-sequence-search" href="glib/glib-Sequences.html#g-sequence-search">
|
2180
|
+
<ANCHOR id="g-sequence-search-iter" href="glib/glib-Sequences.html#g-sequence-search-iter">
|
2181
|
+
<ANCHOR id="g-sequence-get" href="glib/glib-Sequences.html#g-sequence-get">
|
2182
|
+
<ANCHOR id="g-sequence-set" href="glib/glib-Sequences.html#g-sequence-set">
|
2183
|
+
<ANCHOR id="g-sequence-iter-is-begin" href="glib/glib-Sequences.html#g-sequence-iter-is-begin">
|
2184
|
+
<ANCHOR id="g-sequence-iter-is-end" href="glib/glib-Sequences.html#g-sequence-iter-is-end">
|
2185
|
+
<ANCHOR id="g-sequence-iter-next" href="glib/glib-Sequences.html#g-sequence-iter-next">
|
2186
|
+
<ANCHOR id="g-sequence-iter-prev" href="glib/glib-Sequences.html#g-sequence-iter-prev">
|
2187
|
+
<ANCHOR id="g-sequence-iter-get-position" href="glib/glib-Sequences.html#g-sequence-iter-get-position">
|
2188
|
+
<ANCHOR id="g-sequence-iter-move" href="glib/glib-Sequences.html#g-sequence-iter-move">
|
2189
|
+
<ANCHOR id="g-sequence-iter-get-sequence" href="glib/glib-Sequences.html#g-sequence-iter-get-sequence">
|
2190
|
+
<ANCHOR id="g-sequence-iter-compare" href="glib/glib-Sequences.html#g-sequence-iter-compare">
|
2191
|
+
<ANCHOR id="g-sequence-range-get-midpoint" href="glib/glib-Sequences.html#g-sequence-range-get-midpoint">
|
2192
|
+
<ANCHOR id="glib-Trash-Stacks" href="glib/glib-Trash-Stacks.html">
|
2193
|
+
<ANCHOR id="glib-Trash-Stacks.synopsis" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.synopsis">
|
2194
|
+
<ANCHOR id="glib-Trash-Stacks.description" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.description">
|
2195
|
+
<ANCHOR id="glib-Trash-Stacks.details" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.details">
|
2196
|
+
<ANCHOR id="GTrashStack" href="glib/glib-Trash-Stacks.html#GTrashStack">
|
2197
|
+
<ANCHOR id="g-trash-stack-push" href="glib/glib-Trash-Stacks.html#g-trash-stack-push">
|
2198
|
+
<ANCHOR id="g-trash-stack-pop" href="glib/glib-Trash-Stacks.html#g-trash-stack-pop">
|
2199
|
+
<ANCHOR id="g-trash-stack-peek" href="glib/glib-Trash-Stacks.html#g-trash-stack-peek">
|
2200
|
+
<ANCHOR id="g-trash-stack-height" href="glib/glib-Trash-Stacks.html#g-trash-stack-height">
|
2201
|
+
<ANCHOR id="glib-Hash-Tables" href="glib/glib-Hash-Tables.html">
|
2202
|
+
<ANCHOR id="glib-Hash-Tables.synopsis" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.synopsis">
|
2203
|
+
<ANCHOR id="glib-Hash-Tables.description" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.description">
|
2204
|
+
<ANCHOR id="glib-Hash-Tables.details" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.details">
|
2205
|
+
<ANCHOR id="GHashTable" href="glib/glib-Hash-Tables.html#GHashTable">
|
2206
|
+
<ANCHOR id="g-hash-table-new" href="glib/glib-Hash-Tables.html#g-hash-table-new">
|
2207
|
+
<ANCHOR id="g-hash-table-new-full" href="glib/glib-Hash-Tables.html#g-hash-table-new-full">
|
2208
|
+
<ANCHOR id="GHashFunc" href="glib/glib-Hash-Tables.html#GHashFunc">
|
2209
|
+
<ANCHOR id="GEqualFunc" href="glib/glib-Hash-Tables.html#GEqualFunc">
|
2210
|
+
<ANCHOR id="g-hash-table-insert" href="glib/glib-Hash-Tables.html#g-hash-table-insert">
|
2211
|
+
<ANCHOR id="g-hash-table-replace" href="glib/glib-Hash-Tables.html#g-hash-table-replace">
|
2212
|
+
<ANCHOR id="g-hash-table-size" href="glib/glib-Hash-Tables.html#g-hash-table-size">
|
2213
|
+
<ANCHOR id="g-hash-table-lookup" href="glib/glib-Hash-Tables.html#g-hash-table-lookup">
|
2214
|
+
<ANCHOR id="g-hash-table-lookup-extended" href="glib/glib-Hash-Tables.html#g-hash-table-lookup-extended">
|
2215
|
+
<ANCHOR id="g-hash-table-foreach" href="glib/glib-Hash-Tables.html#g-hash-table-foreach">
|
2216
|
+
<ANCHOR id="g-hash-table-find" href="glib/glib-Hash-Tables.html#g-hash-table-find">
|
2217
|
+
<ANCHOR id="GHFunc" href="glib/glib-Hash-Tables.html#GHFunc">
|
2218
|
+
<ANCHOR id="g-hash-table-remove" href="glib/glib-Hash-Tables.html#g-hash-table-remove">
|
2219
|
+
<ANCHOR id="g-hash-table-steal" href="glib/glib-Hash-Tables.html#g-hash-table-steal">
|
2220
|
+
<ANCHOR id="g-hash-table-foreach-remove" href="glib/glib-Hash-Tables.html#g-hash-table-foreach-remove">
|
2221
|
+
<ANCHOR id="g-hash-table-foreach-steal" href="glib/glib-Hash-Tables.html#g-hash-table-foreach-steal">
|
2222
|
+
<ANCHOR id="g-hash-table-remove-all" href="glib/glib-Hash-Tables.html#g-hash-table-remove-all">
|
2223
|
+
<ANCHOR id="g-hash-table-steal-all" href="glib/glib-Hash-Tables.html#g-hash-table-steal-all">
|
2224
|
+
<ANCHOR id="g-hash-table-get-keys" href="glib/glib-Hash-Tables.html#g-hash-table-get-keys">
|
2225
|
+
<ANCHOR id="g-hash-table-get-values" href="glib/glib-Hash-Tables.html#g-hash-table-get-values">
|
2226
|
+
<ANCHOR id="GHRFunc" href="glib/glib-Hash-Tables.html#GHRFunc">
|
2227
|
+
<ANCHOR id="g-hash-table-freeze" href="glib/glib-Hash-Tables.html#g-hash-table-freeze">
|
2228
|
+
<ANCHOR id="g-hash-table-thaw" href="glib/glib-Hash-Tables.html#g-hash-table-thaw">
|
2229
|
+
<ANCHOR id="g-hash-table-destroy" href="glib/glib-Hash-Tables.html#g-hash-table-destroy">
|
2230
|
+
<ANCHOR id="g-hash-table-ref" href="glib/glib-Hash-Tables.html#g-hash-table-ref">
|
2231
|
+
<ANCHOR id="g-hash-table-unref" href="glib/glib-Hash-Tables.html#g-hash-table-unref">
|
2232
|
+
<ANCHOR id="GHashTableIter" href="glib/glib-Hash-Tables.html#GHashTableIter">
|
2233
|
+
<ANCHOR id="g-hash-table-iter-init" href="glib/glib-Hash-Tables.html#g-hash-table-iter-init">
|
2234
|
+
<ANCHOR id="g-hash-table-iter-next" href="glib/glib-Hash-Tables.html#g-hash-table-iter-next">
|
2235
|
+
<ANCHOR id="g-hash-table-iter-get-hash-table" href="glib/glib-Hash-Tables.html#g-hash-table-iter-get-hash-table">
|
2236
|
+
<ANCHOR id="g-hash-table-iter-remove" href="glib/glib-Hash-Tables.html#g-hash-table-iter-remove">
|
2237
|
+
<ANCHOR id="g-hash-table-iter-steal" href="glib/glib-Hash-Tables.html#g-hash-table-iter-steal">
|
2238
|
+
<ANCHOR id="g-direct-equal" href="glib/glib-Hash-Tables.html#g-direct-equal">
|
2239
|
+
<ANCHOR id="g-direct-hash" href="glib/glib-Hash-Tables.html#g-direct-hash">
|
2240
|
+
<ANCHOR id="g-int-equal" href="glib/glib-Hash-Tables.html#g-int-equal">
|
2241
|
+
<ANCHOR id="g-int-hash" href="glib/glib-Hash-Tables.html#g-int-hash">
|
2242
|
+
<ANCHOR id="g-int64-equal" href="glib/glib-Hash-Tables.html#g-int64-equal">
|
2243
|
+
<ANCHOR id="g-int64-hash" href="glib/glib-Hash-Tables.html#g-int64-hash">
|
2244
|
+
<ANCHOR id="g-double-equal" href="glib/glib-Hash-Tables.html#g-double-equal">
|
2245
|
+
<ANCHOR id="g-double-hash" href="glib/glib-Hash-Tables.html#g-double-hash">
|
2246
|
+
<ANCHOR id="g-str-equal" href="glib/glib-Hash-Tables.html#g-str-equal">
|
2247
|
+
<ANCHOR id="g-str-hash" href="glib/glib-Hash-Tables.html#g-str-hash">
|
2248
|
+
<ANCHOR id="glib-Strings" href="glib/glib-Strings.html">
|
2249
|
+
<ANCHOR id="glib-Strings.synopsis" href="glib/glib-Strings.html#glib-Strings.synopsis">
|
2250
|
+
<ANCHOR id="glib-Strings.description" href="glib/glib-Strings.html#glib-Strings.description">
|
2251
|
+
<ANCHOR id="glib-Strings.details" href="glib/glib-Strings.html#glib-Strings.details">
|
2252
|
+
<ANCHOR id="GString" href="glib/glib-Strings.html#GString">
|
2253
|
+
<ANCHOR id="g-string-new" href="glib/glib-Strings.html#g-string-new">
|
2254
|
+
<ANCHOR id="g-string-new-len" href="glib/glib-Strings.html#g-string-new-len">
|
2255
|
+
<ANCHOR id="g-string-sized-new" href="glib/glib-Strings.html#g-string-sized-new">
|
2256
|
+
<ANCHOR id="g-string-assign" href="glib/glib-Strings.html#g-string-assign">
|
2257
|
+
<ANCHOR id="g-string-sprintf" href="glib/glib-Strings.html#g-string-sprintf">
|
2258
|
+
<ANCHOR id="g-string-sprintfa" href="glib/glib-Strings.html#g-string-sprintfa">
|
2259
|
+
<ANCHOR id="g-string-vprintf" href="glib/glib-Strings.html#g-string-vprintf">
|
2260
|
+
<ANCHOR id="g-string-append-vprintf" href="glib/glib-Strings.html#g-string-append-vprintf">
|
2261
|
+
<ANCHOR id="g-string-printf" href="glib/glib-Strings.html#g-string-printf">
|
2262
|
+
<ANCHOR id="g-string-append-printf" href="glib/glib-Strings.html#g-string-append-printf">
|
2263
|
+
<ANCHOR id="g-string-append" href="glib/glib-Strings.html#g-string-append">
|
2264
|
+
<ANCHOR id="g-string-append-c" href="glib/glib-Strings.html#g-string-append-c">
|
2265
|
+
<ANCHOR id="g-string-append-unichar" href="glib/glib-Strings.html#g-string-append-unichar">
|
2266
|
+
<ANCHOR id="g-string-append-len" href="glib/glib-Strings.html#g-string-append-len">
|
2267
|
+
<ANCHOR id="g-string-append-uri-escaped" href="glib/glib-Strings.html#g-string-append-uri-escaped">
|
2268
|
+
<ANCHOR id="g-string-prepend" href="glib/glib-Strings.html#g-string-prepend">
|
2269
|
+
<ANCHOR id="g-string-prepend-c" href="glib/glib-Strings.html#g-string-prepend-c">
|
2270
|
+
<ANCHOR id="g-string-prepend-unichar" href="glib/glib-Strings.html#g-string-prepend-unichar">
|
2271
|
+
<ANCHOR id="g-string-prepend-len" href="glib/glib-Strings.html#g-string-prepend-len">
|
2272
|
+
<ANCHOR id="g-string-insert" href="glib/glib-Strings.html#g-string-insert">
|
2273
|
+
<ANCHOR id="g-string-insert-c" href="glib/glib-Strings.html#g-string-insert-c">
|
2274
|
+
<ANCHOR id="g-string-insert-unichar" href="glib/glib-Strings.html#g-string-insert-unichar">
|
2275
|
+
<ANCHOR id="g-string-insert-len" href="glib/glib-Strings.html#g-string-insert-len">
|
2276
|
+
<ANCHOR id="g-string-overwrite" href="glib/glib-Strings.html#g-string-overwrite">
|
2277
|
+
<ANCHOR id="g-string-overwrite-len" href="glib/glib-Strings.html#g-string-overwrite-len">
|
2278
|
+
<ANCHOR id="g-string-erase" href="glib/glib-Strings.html#g-string-erase">
|
2279
|
+
<ANCHOR id="g-string-truncate" href="glib/glib-Strings.html#g-string-truncate">
|
2280
|
+
<ANCHOR id="g-string-set-size" href="glib/glib-Strings.html#g-string-set-size">
|
2281
|
+
<ANCHOR id="g-string-free" href="glib/glib-Strings.html#g-string-free">
|
2282
|
+
<ANCHOR id="g-string-up" href="glib/glib-Strings.html#g-string-up">
|
2283
|
+
<ANCHOR id="g-string-down" href="glib/glib-Strings.html#g-string-down">
|
2284
|
+
<ANCHOR id="g-string-hash" href="glib/glib-Strings.html#g-string-hash">
|
2285
|
+
<ANCHOR id="g-string-equal" href="glib/glib-Strings.html#g-string-equal">
|
2286
|
+
<ANCHOR id="glib-String-Chunks" href="glib/glib-String-Chunks.html">
|
2287
|
+
<ANCHOR id="glib-String-Chunks.synopsis" href="glib/glib-String-Chunks.html#glib-String-Chunks.synopsis">
|
2288
|
+
<ANCHOR id="glib-String-Chunks.description" href="glib/glib-String-Chunks.html#glib-String-Chunks.description">
|
2289
|
+
<ANCHOR id="glib-String-Chunks.details" href="glib/glib-String-Chunks.html#glib-String-Chunks.details">
|
2290
|
+
<ANCHOR id="GStringChunk" href="glib/glib-String-Chunks.html#GStringChunk">
|
2291
|
+
<ANCHOR id="g-string-chunk-new" href="glib/glib-String-Chunks.html#g-string-chunk-new">
|
2292
|
+
<ANCHOR id="g-string-chunk-insert" href="glib/glib-String-Chunks.html#g-string-chunk-insert">
|
2293
|
+
<ANCHOR id="g-string-chunk-insert-const" href="glib/glib-String-Chunks.html#g-string-chunk-insert-const">
|
2294
|
+
<ANCHOR id="g-string-chunk-insert-len" href="glib/glib-String-Chunks.html#g-string-chunk-insert-len">
|
2295
|
+
<ANCHOR id="g-string-chunk-clear" href="glib/glib-String-Chunks.html#g-string-chunk-clear">
|
2296
|
+
<ANCHOR id="g-string-chunk-free" href="glib/glib-String-Chunks.html#g-string-chunk-free">
|
2297
|
+
<ANCHOR id="glib-Arrays" href="glib/glib-Arrays.html">
|
2298
|
+
<ANCHOR id="glib-Arrays.synopsis" href="glib/glib-Arrays.html#glib-Arrays.synopsis">
|
2299
|
+
<ANCHOR id="glib-Arrays.description" href="glib/glib-Arrays.html#glib-Arrays.description">
|
2300
|
+
<ANCHOR id="glib-Arrays.details" href="glib/glib-Arrays.html#glib-Arrays.details">
|
2301
|
+
<ANCHOR id="GArray" href="glib/glib-Arrays.html#GArray">
|
2302
|
+
<ANCHOR id="g-array-new" href="glib/glib-Arrays.html#g-array-new">
|
2303
|
+
<ANCHOR id="g-array-sized-new" href="glib/glib-Arrays.html#g-array-sized-new">
|
2304
|
+
<ANCHOR id="g-array-ref" href="glib/glib-Arrays.html#g-array-ref">
|
2305
|
+
<ANCHOR id="g-array-unref" href="glib/glib-Arrays.html#g-array-unref">
|
2306
|
+
<ANCHOR id="g-array-get-element-size" href="glib/glib-Arrays.html#g-array-get-element-size">
|
2307
|
+
<ANCHOR id="g-array-append-val" href="glib/glib-Arrays.html#g-array-append-val">
|
2308
|
+
<ANCHOR id="g-array-append-vals" href="glib/glib-Arrays.html#g-array-append-vals">
|
2309
|
+
<ANCHOR id="g-array-prepend-val" href="glib/glib-Arrays.html#g-array-prepend-val">
|
2310
|
+
<ANCHOR id="g-array-prepend-vals" href="glib/glib-Arrays.html#g-array-prepend-vals">
|
2311
|
+
<ANCHOR id="g-array-insert-val" href="glib/glib-Arrays.html#g-array-insert-val">
|
2312
|
+
<ANCHOR id="g-array-insert-vals" href="glib/glib-Arrays.html#g-array-insert-vals">
|
2313
|
+
<ANCHOR id="g-array-remove-index" href="glib/glib-Arrays.html#g-array-remove-index">
|
2314
|
+
<ANCHOR id="g-array-remove-index-fast" href="glib/glib-Arrays.html#g-array-remove-index-fast">
|
2315
|
+
<ANCHOR id="g-array-remove-range" href="glib/glib-Arrays.html#g-array-remove-range">
|
2316
|
+
<ANCHOR id="g-array-sort" href="glib/glib-Arrays.html#g-array-sort">
|
2317
|
+
<ANCHOR id="g-array-sort-with-data" href="glib/glib-Arrays.html#g-array-sort-with-data">
|
2318
|
+
<ANCHOR id="g-array-index" href="glib/glib-Arrays.html#g-array-index">
|
2319
|
+
<ANCHOR id="g-array-set-size" href="glib/glib-Arrays.html#g-array-set-size">
|
2320
|
+
<ANCHOR id="g-array-free" href="glib/glib-Arrays.html#g-array-free">
|
2321
|
+
<ANCHOR id="glib-Pointer-Arrays" href="glib/glib-Pointer-Arrays.html">
|
2322
|
+
<ANCHOR id="glib-Pointer-Arrays.synopsis" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.synopsis">
|
2323
|
+
<ANCHOR id="glib-Pointer-Arrays.description" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.description">
|
2324
|
+
<ANCHOR id="glib-Pointer-Arrays.details" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.details">
|
2325
|
+
<ANCHOR id="GPtrArray" href="glib/glib-Pointer-Arrays.html#GPtrArray">
|
2326
|
+
<ANCHOR id="g-ptr-array-new" href="glib/glib-Pointer-Arrays.html#g-ptr-array-new">
|
2327
|
+
<ANCHOR id="g-ptr-array-sized-new" href="glib/glib-Pointer-Arrays.html#g-ptr-array-sized-new">
|
2328
|
+
<ANCHOR id="g-ptr-array-new-with-free-func" href="glib/glib-Pointer-Arrays.html#g-ptr-array-new-with-free-func">
|
2329
|
+
<ANCHOR id="g-ptr-array-set-free-func" href="glib/glib-Pointer-Arrays.html#g-ptr-array-set-free-func">
|
2330
|
+
<ANCHOR id="g-ptr-array-ref" href="glib/glib-Pointer-Arrays.html#g-ptr-array-ref">
|
2331
|
+
<ANCHOR id="g-ptr-array-unref" href="glib/glib-Pointer-Arrays.html#g-ptr-array-unref">
|
2332
|
+
<ANCHOR id="g-ptr-array-add" href="glib/glib-Pointer-Arrays.html#g-ptr-array-add">
|
2333
|
+
<ANCHOR id="g-ptr-array-remove" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove">
|
2334
|
+
<ANCHOR id="g-ptr-array-remove-index" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-index">
|
2335
|
+
<ANCHOR id="g-ptr-array-remove-fast" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-fast">
|
2336
|
+
<ANCHOR id="g-ptr-array-remove-index-fast" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-index-fast">
|
2337
|
+
<ANCHOR id="g-ptr-array-remove-range" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-range">
|
2338
|
+
<ANCHOR id="g-ptr-array-sort" href="glib/glib-Pointer-Arrays.html#g-ptr-array-sort">
|
2339
|
+
<ANCHOR id="g-ptr-array-sort-with-data" href="glib/glib-Pointer-Arrays.html#g-ptr-array-sort-with-data">
|
2340
|
+
<ANCHOR id="g-ptr-array-set-size" href="glib/glib-Pointer-Arrays.html#g-ptr-array-set-size">
|
2341
|
+
<ANCHOR id="g-ptr-array-index" href="glib/glib-Pointer-Arrays.html#g-ptr-array-index">
|
2342
|
+
<ANCHOR id="g-ptr-array-free" href="glib/glib-Pointer-Arrays.html#g-ptr-array-free">
|
2343
|
+
<ANCHOR id="g-ptr-array-foreach" href="glib/glib-Pointer-Arrays.html#g-ptr-array-foreach">
|
2344
|
+
<ANCHOR id="glib-Byte-Arrays" href="glib/glib-Byte-Arrays.html">
|
2345
|
+
<ANCHOR id="glib-Byte-Arrays.synopsis" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.synopsis">
|
2346
|
+
<ANCHOR id="glib-Byte-Arrays.description" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.description">
|
2347
|
+
<ANCHOR id="glib-Byte-Arrays.details" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.details">
|
2348
|
+
<ANCHOR id="GByteArray" href="glib/glib-Byte-Arrays.html#GByteArray">
|
2349
|
+
<ANCHOR id="g-byte-array-new" href="glib/glib-Byte-Arrays.html#g-byte-array-new">
|
2350
|
+
<ANCHOR id="g-byte-array-sized-new" href="glib/glib-Byte-Arrays.html#g-byte-array-sized-new">
|
2351
|
+
<ANCHOR id="g-byte-array-ref" href="glib/glib-Byte-Arrays.html#g-byte-array-ref">
|
2352
|
+
<ANCHOR id="g-byte-array-unref" href="glib/glib-Byte-Arrays.html#g-byte-array-unref">
|
2353
|
+
<ANCHOR id="g-byte-array-append" href="glib/glib-Byte-Arrays.html#g-byte-array-append">
|
2354
|
+
<ANCHOR id="g-byte-array-prepend" href="glib/glib-Byte-Arrays.html#g-byte-array-prepend">
|
2355
|
+
<ANCHOR id="g-byte-array-remove-index" href="glib/glib-Byte-Arrays.html#g-byte-array-remove-index">
|
2356
|
+
<ANCHOR id="g-byte-array-remove-index-fast" href="glib/glib-Byte-Arrays.html#g-byte-array-remove-index-fast">
|
2357
|
+
<ANCHOR id="g-byte-array-remove-range" href="glib/glib-Byte-Arrays.html#g-byte-array-remove-range">
|
2358
|
+
<ANCHOR id="g-byte-array-sort" href="glib/glib-Byte-Arrays.html#g-byte-array-sort">
|
2359
|
+
<ANCHOR id="g-byte-array-sort-with-data" href="glib/glib-Byte-Arrays.html#g-byte-array-sort-with-data">
|
2360
|
+
<ANCHOR id="g-byte-array-set-size" href="glib/glib-Byte-Arrays.html#g-byte-array-set-size">
|
2361
|
+
<ANCHOR id="g-byte-array-free" href="glib/glib-Byte-Arrays.html#g-byte-array-free">
|
2362
|
+
<ANCHOR id="glib-Balanced-Binary-Trees" href="glib/glib-Balanced-Binary-Trees.html">
|
2363
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.synopsis" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.synopsis">
|
2364
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.description" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.description">
|
2365
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.details" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.details">
|
2366
|
+
<ANCHOR id="GTree" href="glib/glib-Balanced-Binary-Trees.html#GTree">
|
2367
|
+
<ANCHOR id="g-tree-new" href="glib/glib-Balanced-Binary-Trees.html#g-tree-new">
|
2368
|
+
<ANCHOR id="g-tree-ref" href="glib/glib-Balanced-Binary-Trees.html#g-tree-ref">
|
2369
|
+
<ANCHOR id="g-tree-unref" href="glib/glib-Balanced-Binary-Trees.html#g-tree-unref">
|
2370
|
+
<ANCHOR id="g-tree-new-with-data" href="glib/glib-Balanced-Binary-Trees.html#g-tree-new-with-data">
|
2371
|
+
<ANCHOR id="g-tree-new-full" href="glib/glib-Balanced-Binary-Trees.html#g-tree-new-full">
|
2372
|
+
<ANCHOR id="g-tree-insert" href="glib/glib-Balanced-Binary-Trees.html#g-tree-insert">
|
2373
|
+
<ANCHOR id="g-tree-replace" href="glib/glib-Balanced-Binary-Trees.html#g-tree-replace">
|
2374
|
+
<ANCHOR id="g-tree-nnodes" href="glib/glib-Balanced-Binary-Trees.html#g-tree-nnodes">
|
2375
|
+
<ANCHOR id="g-tree-height" href="glib/glib-Balanced-Binary-Trees.html#g-tree-height">
|
2376
|
+
<ANCHOR id="g-tree-lookup" href="glib/glib-Balanced-Binary-Trees.html#g-tree-lookup">
|
2377
|
+
<ANCHOR id="g-tree-lookup-extended" href="glib/glib-Balanced-Binary-Trees.html#g-tree-lookup-extended">
|
2378
|
+
<ANCHOR id="g-tree-foreach" href="glib/glib-Balanced-Binary-Trees.html#g-tree-foreach">
|
2379
|
+
<ANCHOR id="g-tree-traverse" href="glib/glib-Balanced-Binary-Trees.html#g-tree-traverse">
|
2380
|
+
<ANCHOR id="GTraverseFunc" href="glib/glib-Balanced-Binary-Trees.html#GTraverseFunc">
|
2381
|
+
<ANCHOR id="GTraverseType" href="glib/glib-Balanced-Binary-Trees.html#GTraverseType">
|
2382
|
+
<ANCHOR id="G-IN-ORDER:CAPS" href="glib/glib-Balanced-Binary-Trees.html#G-IN-ORDER:CAPS">
|
2383
|
+
<ANCHOR id="G-PRE-ORDER:CAPS" href="glib/glib-Balanced-Binary-Trees.html#G-PRE-ORDER:CAPS">
|
2384
|
+
<ANCHOR id="G-POST-ORDER:CAPS" href="glib/glib-Balanced-Binary-Trees.html#G-POST-ORDER:CAPS">
|
2385
|
+
<ANCHOR id="G-LEVEL-ORDER:CAPS" href="glib/glib-Balanced-Binary-Trees.html#G-LEVEL-ORDER:CAPS">
|
2386
|
+
<ANCHOR id="g-tree-search" href="glib/glib-Balanced-Binary-Trees.html#g-tree-search">
|
2387
|
+
<ANCHOR id="g-tree-remove" href="glib/glib-Balanced-Binary-Trees.html#g-tree-remove">
|
2388
|
+
<ANCHOR id="g-tree-steal" href="glib/glib-Balanced-Binary-Trees.html#g-tree-steal">
|
2389
|
+
<ANCHOR id="g-tree-destroy" href="glib/glib-Balanced-Binary-Trees.html#g-tree-destroy">
|
2390
|
+
<ANCHOR id="glib-N-ary-Trees" href="glib/glib-N-ary-Trees.html">
|
2391
|
+
<ANCHOR id="glib-N-ary-Trees.synopsis" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.synopsis">
|
2392
|
+
<ANCHOR id="glib-N-ary-Trees.description" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.description">
|
2393
|
+
<ANCHOR id="glib-N-ary-Trees.details" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.details">
|
2394
|
+
<ANCHOR id="GNode" href="glib/glib-N-ary-Trees.html#GNode">
|
2395
|
+
<ANCHOR id="g-node-new" href="glib/glib-N-ary-Trees.html#g-node-new">
|
2396
|
+
<ANCHOR id="g-node-copy" href="glib/glib-N-ary-Trees.html#g-node-copy">
|
2397
|
+
<ANCHOR id="GCopyFunc" href="glib/glib-N-ary-Trees.html#GCopyFunc">
|
2398
|
+
<ANCHOR id="g-node-copy-deep" href="glib/glib-N-ary-Trees.html#g-node-copy-deep">
|
2399
|
+
<ANCHOR id="g-node-insert" href="glib/glib-N-ary-Trees.html#g-node-insert">
|
2400
|
+
<ANCHOR id="g-node-insert-before" href="glib/glib-N-ary-Trees.html#g-node-insert-before">
|
2401
|
+
<ANCHOR id="g-node-insert-after" href="glib/glib-N-ary-Trees.html#g-node-insert-after">
|
2402
|
+
<ANCHOR id="g-node-append" href="glib/glib-N-ary-Trees.html#g-node-append">
|
2403
|
+
<ANCHOR id="g-node-prepend" href="glib/glib-N-ary-Trees.html#g-node-prepend">
|
2404
|
+
<ANCHOR id="g-node-insert-data" href="glib/glib-N-ary-Trees.html#g-node-insert-data">
|
2405
|
+
<ANCHOR id="g-node-insert-data-before" href="glib/glib-N-ary-Trees.html#g-node-insert-data-before">
|
2406
|
+
<ANCHOR id="g-node-append-data" href="glib/glib-N-ary-Trees.html#g-node-append-data">
|
2407
|
+
<ANCHOR id="g-node-prepend-data" href="glib/glib-N-ary-Trees.html#g-node-prepend-data">
|
2408
|
+
<ANCHOR id="g-node-reverse-children" href="glib/glib-N-ary-Trees.html#g-node-reverse-children">
|
2409
|
+
<ANCHOR id="g-node-traverse" href="glib/glib-N-ary-Trees.html#g-node-traverse">
|
2410
|
+
<ANCHOR id="GTraverseFlags" href="glib/glib-N-ary-Trees.html#GTraverseFlags">
|
2411
|
+
<ANCHOR id="G-TRAVERSE-LEAVES:CAPS" href="glib/glib-N-ary-Trees.html#G-TRAVERSE-LEAVES:CAPS">
|
2412
|
+
<ANCHOR id="G-TRAVERSE-NON-LEAVES:CAPS" href="glib/glib-N-ary-Trees.html#G-TRAVERSE-NON-LEAVES:CAPS">
|
2413
|
+
<ANCHOR id="G-TRAVERSE-ALL:CAPS" href="glib/glib-N-ary-Trees.html#G-TRAVERSE-ALL:CAPS">
|
2414
|
+
<ANCHOR id="G-TRAVERSE-MASK:CAPS" href="glib/glib-N-ary-Trees.html#G-TRAVERSE-MASK:CAPS">
|
2415
|
+
<ANCHOR id="G-TRAVERSE-LEAFS:CAPS" href="glib/glib-N-ary-Trees.html#G-TRAVERSE-LEAFS:CAPS">
|
2416
|
+
<ANCHOR id="G-TRAVERSE-NON-LEAFS:CAPS" href="glib/glib-N-ary-Trees.html#G-TRAVERSE-NON-LEAFS:CAPS">
|
2417
|
+
<ANCHOR id="GNodeTraverseFunc" href="glib/glib-N-ary-Trees.html#GNodeTraverseFunc">
|
2418
|
+
<ANCHOR id="g-node-children-foreach" href="glib/glib-N-ary-Trees.html#g-node-children-foreach">
|
2419
|
+
<ANCHOR id="GNodeForeachFunc" href="glib/glib-N-ary-Trees.html#GNodeForeachFunc">
|
2420
|
+
<ANCHOR id="g-node-get-root" href="glib/glib-N-ary-Trees.html#g-node-get-root">
|
2421
|
+
<ANCHOR id="g-node-find" href="glib/glib-N-ary-Trees.html#g-node-find">
|
2422
|
+
<ANCHOR id="g-node-find-child" href="glib/glib-N-ary-Trees.html#g-node-find-child">
|
2423
|
+
<ANCHOR id="g-node-child-index" href="glib/glib-N-ary-Trees.html#g-node-child-index">
|
2424
|
+
<ANCHOR id="g-node-child-position" href="glib/glib-N-ary-Trees.html#g-node-child-position">
|
2425
|
+
<ANCHOR id="g-node-first-child" href="glib/glib-N-ary-Trees.html#g-node-first-child">
|
2426
|
+
<ANCHOR id="g-node-last-child" href="glib/glib-N-ary-Trees.html#g-node-last-child">
|
2427
|
+
<ANCHOR id="g-node-nth-child" href="glib/glib-N-ary-Trees.html#g-node-nth-child">
|
2428
|
+
<ANCHOR id="g-node-first-sibling" href="glib/glib-N-ary-Trees.html#g-node-first-sibling">
|
2429
|
+
<ANCHOR id="g-node-next-sibling" href="glib/glib-N-ary-Trees.html#g-node-next-sibling">
|
2430
|
+
<ANCHOR id="g-node-prev-sibling" href="glib/glib-N-ary-Trees.html#g-node-prev-sibling">
|
2431
|
+
<ANCHOR id="g-node-last-sibling" href="glib/glib-N-ary-Trees.html#g-node-last-sibling">
|
2432
|
+
<ANCHOR id="G-NODE-IS-LEAF:CAPS" href="glib/glib-N-ary-Trees.html#G-NODE-IS-LEAF:CAPS">
|
2433
|
+
<ANCHOR id="G-NODE-IS-ROOT:CAPS" href="glib/glib-N-ary-Trees.html#G-NODE-IS-ROOT:CAPS">
|
2434
|
+
<ANCHOR id="g-node-depth" href="glib/glib-N-ary-Trees.html#g-node-depth">
|
2435
|
+
<ANCHOR id="g-node-n-nodes" href="glib/glib-N-ary-Trees.html#g-node-n-nodes">
|
2436
|
+
<ANCHOR id="g-node-n-children" href="glib/glib-N-ary-Trees.html#g-node-n-children">
|
2437
|
+
<ANCHOR id="g-node-is-ancestor" href="glib/glib-N-ary-Trees.html#g-node-is-ancestor">
|
2438
|
+
<ANCHOR id="g-node-max-height" href="glib/glib-N-ary-Trees.html#g-node-max-height">
|
2439
|
+
<ANCHOR id="g-node-unlink" href="glib/glib-N-ary-Trees.html#g-node-unlink">
|
2440
|
+
<ANCHOR id="g-node-destroy" href="glib/glib-N-ary-Trees.html#g-node-destroy">
|
2441
|
+
<ANCHOR id="g-node-push-allocator" href="glib/glib-N-ary-Trees.html#g-node-push-allocator">
|
2442
|
+
<ANCHOR id="g-node-pop-allocator" href="glib/glib-N-ary-Trees.html#g-node-pop-allocator">
|
2443
|
+
<ANCHOR id="glib-Quarks" href="glib/glib-Quarks.html">
|
2444
|
+
<ANCHOR id="glib-Quarks.synopsis" href="glib/glib-Quarks.html#glib-Quarks.synopsis">
|
2445
|
+
<ANCHOR id="glib-Quarks.description" href="glib/glib-Quarks.html#glib-Quarks.description">
|
2446
|
+
<ANCHOR id="glib-Quarks.details" href="glib/glib-Quarks.html#glib-Quarks.details">
|
2447
|
+
<ANCHOR id="GQuark" href="glib/glib-Quarks.html#GQuark">
|
2448
|
+
<ANCHOR id="g-quark-from-string" href="glib/glib-Quarks.html#g-quark-from-string">
|
2449
|
+
<ANCHOR id="g-quark-from-static-string" href="glib/glib-Quarks.html#g-quark-from-static-string">
|
2450
|
+
<ANCHOR id="g-quark-to-string" href="glib/glib-Quarks.html#g-quark-to-string">
|
2451
|
+
<ANCHOR id="g-quark-try-string" href="glib/glib-Quarks.html#g-quark-try-string">
|
2452
|
+
<ANCHOR id="g-intern-string" href="glib/glib-Quarks.html#g-intern-string">
|
2453
|
+
<ANCHOR id="g-intern-static-string" href="glib/glib-Quarks.html#g-intern-static-string">
|
2454
|
+
<ANCHOR id="glib-Keyed-Data-Lists" href="glib/glib-Keyed-Data-Lists.html">
|
2455
|
+
<ANCHOR id="glib-Keyed-Data-Lists.synopsis" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.synopsis">
|
2456
|
+
<ANCHOR id="glib-Keyed-Data-Lists.description" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.description">
|
2457
|
+
<ANCHOR id="glib-Keyed-Data-Lists.details" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.details">
|
2458
|
+
<ANCHOR id="GData" href="glib/glib-Keyed-Data-Lists.html#GData">
|
2459
|
+
<ANCHOR id="g-datalist-init" href="glib/glib-Keyed-Data-Lists.html#g-datalist-init">
|
2460
|
+
<ANCHOR id="g-datalist-id-set-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-set-data">
|
2461
|
+
<ANCHOR id="g-datalist-id-set-data-full" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-set-data-full">
|
2462
|
+
<ANCHOR id="g-datalist-id-get-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-get-data">
|
2463
|
+
<ANCHOR id="g-datalist-id-remove-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-remove-data">
|
2464
|
+
<ANCHOR id="g-datalist-id-remove-no-notify" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-remove-no-notify">
|
2465
|
+
<ANCHOR id="g-datalist-set-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-set-data">
|
2466
|
+
<ANCHOR id="g-datalist-set-data-full" href="glib/glib-Keyed-Data-Lists.html#g-datalist-set-data-full">
|
2467
|
+
<ANCHOR id="g-datalist-get-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-get-data">
|
2468
|
+
<ANCHOR id="g-datalist-remove-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-remove-data">
|
2469
|
+
<ANCHOR id="g-datalist-remove-no-notify" href="glib/glib-Keyed-Data-Lists.html#g-datalist-remove-no-notify">
|
2470
|
+
<ANCHOR id="g-datalist-foreach" href="glib/glib-Keyed-Data-Lists.html#g-datalist-foreach">
|
2471
|
+
<ANCHOR id="g-datalist-clear" href="glib/glib-Keyed-Data-Lists.html#g-datalist-clear">
|
2472
|
+
<ANCHOR id="g-datalist-set-flags" href="glib/glib-Keyed-Data-Lists.html#g-datalist-set-flags">
|
2473
|
+
<ANCHOR id="g-datalist-unset-flags" href="glib/glib-Keyed-Data-Lists.html#g-datalist-unset-flags">
|
2474
|
+
<ANCHOR id="g-datalist-get-flags" href="glib/glib-Keyed-Data-Lists.html#g-datalist-get-flags">
|
2475
|
+
<ANCHOR id="G-DATALIST-FLAGS-MASK:CAPS" href="glib/glib-Keyed-Data-Lists.html#G-DATALIST-FLAGS-MASK:CAPS">
|
2476
|
+
<ANCHOR id="glib-Datasets" href="glib/glib-Datasets.html">
|
2477
|
+
<ANCHOR id="glib-Datasets.synopsis" href="glib/glib-Datasets.html#glib-Datasets.synopsis">
|
2478
|
+
<ANCHOR id="glib-Datasets.description" href="glib/glib-Datasets.html#glib-Datasets.description">
|
2479
|
+
<ANCHOR id="glib-Datasets.details" href="glib/glib-Datasets.html#glib-Datasets.details">
|
2480
|
+
<ANCHOR id="g-dataset-id-set-data" href="glib/glib-Datasets.html#g-dataset-id-set-data">
|
2481
|
+
<ANCHOR id="g-dataset-id-set-data-full" href="glib/glib-Datasets.html#g-dataset-id-set-data-full">
|
2482
|
+
<ANCHOR id="GDestroyNotify" href="glib/glib-Datasets.html#GDestroyNotify">
|
2483
|
+
<ANCHOR id="g-dataset-id-get-data" href="glib/glib-Datasets.html#g-dataset-id-get-data">
|
2484
|
+
<ANCHOR id="g-dataset-id-remove-data" href="glib/glib-Datasets.html#g-dataset-id-remove-data">
|
2485
|
+
<ANCHOR id="g-dataset-id-remove-no-notify" href="glib/glib-Datasets.html#g-dataset-id-remove-no-notify">
|
2486
|
+
<ANCHOR id="g-dataset-set-data" href="glib/glib-Datasets.html#g-dataset-set-data">
|
2487
|
+
<ANCHOR id="g-dataset-set-data-full" href="glib/glib-Datasets.html#g-dataset-set-data-full">
|
2488
|
+
<ANCHOR id="g-dataset-get-data" href="glib/glib-Datasets.html#g-dataset-get-data">
|
2489
|
+
<ANCHOR id="g-dataset-remove-data" href="glib/glib-Datasets.html#g-dataset-remove-data">
|
2490
|
+
<ANCHOR id="g-dataset-remove-no-notify" href="glib/glib-Datasets.html#g-dataset-remove-no-notify">
|
2491
|
+
<ANCHOR id="g-dataset-foreach" href="glib/glib-Datasets.html#g-dataset-foreach">
|
2492
|
+
<ANCHOR id="GDataForeachFunc" href="glib/glib-Datasets.html#GDataForeachFunc">
|
2493
|
+
<ANCHOR id="g-dataset-destroy" href="glib/glib-Datasets.html#g-dataset-destroy">
|
2494
|
+
<ANCHOR id="glib-Relations-and-Tuples" href="glib/glib-Relations-and-Tuples.html">
|
2495
|
+
<ANCHOR id="glib-Relations-and-Tuples.synopsis" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.synopsis">
|
2496
|
+
<ANCHOR id="glib-Relations-and-Tuples.description" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.description">
|
2497
|
+
<ANCHOR id="glib-Relations-and-Tuples.details" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.details">
|
2498
|
+
<ANCHOR id="GRelation" href="glib/glib-Relations-and-Tuples.html#GRelation">
|
2499
|
+
<ANCHOR id="g-relation-new" href="glib/glib-Relations-and-Tuples.html#g-relation-new">
|
2500
|
+
<ANCHOR id="g-relation-index" href="glib/glib-Relations-and-Tuples.html#g-relation-index">
|
2501
|
+
<ANCHOR id="g-relation-insert" href="glib/glib-Relations-and-Tuples.html#g-relation-insert">
|
2502
|
+
<ANCHOR id="g-relation-exists" href="glib/glib-Relations-and-Tuples.html#g-relation-exists">
|
2503
|
+
<ANCHOR id="g-relation-count" href="glib/glib-Relations-and-Tuples.html#g-relation-count">
|
2504
|
+
<ANCHOR id="g-relation-select" href="glib/glib-Relations-and-Tuples.html#g-relation-select">
|
2505
|
+
<ANCHOR id="g-relation-delete" href="glib/glib-Relations-and-Tuples.html#g-relation-delete">
|
2506
|
+
<ANCHOR id="g-relation-destroy" href="glib/glib-Relations-and-Tuples.html#g-relation-destroy">
|
2507
|
+
<ANCHOR id="g-relation-print" href="glib/glib-Relations-and-Tuples.html#g-relation-print">
|
2508
|
+
<ANCHOR id="GTuples" href="glib/glib-Relations-and-Tuples.html#GTuples">
|
2509
|
+
<ANCHOR id="g-tuples-destroy" href="glib/glib-Relations-and-Tuples.html#g-tuples-destroy">
|
2510
|
+
<ANCHOR id="g-tuples-index" href="glib/glib-Relations-and-Tuples.html#g-tuples-index">
|
2511
|
+
<ANCHOR id="glib-Caches" href="glib/glib-Caches.html">
|
2512
|
+
<ANCHOR id="glib-Caches.synopsis" href="glib/glib-Caches.html#glib-Caches.synopsis">
|
2513
|
+
<ANCHOR id="glib-Caches.description" href="glib/glib-Caches.html#glib-Caches.description">
|
2514
|
+
<ANCHOR id="glib-Caches.details" href="glib/glib-Caches.html#glib-Caches.details">
|
2515
|
+
<ANCHOR id="GCache" href="glib/glib-Caches.html#GCache">
|
2516
|
+
<ANCHOR id="g-cache-new" href="glib/glib-Caches.html#g-cache-new">
|
2517
|
+
<ANCHOR id="g-cache-insert" href="glib/glib-Caches.html#g-cache-insert">
|
2518
|
+
<ANCHOR id="g-cache-remove" href="glib/glib-Caches.html#g-cache-remove">
|
2519
|
+
<ANCHOR id="g-cache-destroy" href="glib/glib-Caches.html#g-cache-destroy">
|
2520
|
+
<ANCHOR id="g-cache-key-foreach" href="glib/glib-Caches.html#g-cache-key-foreach">
|
2521
|
+
<ANCHOR id="g-cache-value-foreach" href="glib/glib-Caches.html#g-cache-value-foreach">
|
2522
|
+
<ANCHOR id="GCacheDestroyFunc" href="glib/glib-Caches.html#GCacheDestroyFunc">
|
2523
|
+
<ANCHOR id="GCacheDupFunc" href="glib/glib-Caches.html#GCacheDupFunc">
|
2524
|
+
<ANCHOR id="GCacheNewFunc" href="glib/glib-Caches.html#GCacheNewFunc">
|
2525
|
+
<ANCHOR id="glib-Memory-Allocators" href="glib/glib-Memory-Allocators.html">
|
2526
|
+
<ANCHOR id="glib-Memory-Allocators.synopsis" href="glib/glib-Memory-Allocators.html#glib-Memory-Allocators.synopsis">
|
2527
|
+
<ANCHOR id="glib-Memory-Allocators.description" href="glib/glib-Memory-Allocators.html#glib-Memory-Allocators.description">
|
2528
|
+
<ANCHOR id="glib-Memory-Allocators.details" href="glib/glib-Memory-Allocators.html#glib-Memory-Allocators.details">
|
2529
|
+
<ANCHOR id="GAllocator" href="glib/glib-Memory-Allocators.html#GAllocator">
|
2530
|
+
<ANCHOR id="g-allocator-new" href="glib/glib-Memory-Allocators.html#g-allocator-new">
|
2531
|
+
<ANCHOR id="g-allocator-free" href="glib/glib-Memory-Allocators.html#g-allocator-free">
|
2532
|
+
<ANCHOR id="glib-GVariantType" href="glib/glib-GVariantType.html">
|
2533
|
+
<ANCHOR id="glib-GVariantType.synopsis" href="glib/glib-GVariantType.html#glib-GVariantType.synopsis">
|
2534
|
+
<ANCHOR id="glib-GVariantType.description" href="glib/glib-GVariantType.html#glib-GVariantType.description">
|
2535
|
+
<ANCHOR id="gvariant-typestrings" href="glib/glib-GVariantType.html#gvariant-typestrings">
|
2536
|
+
<ANCHOR id="glib-GVariantType.details" href="glib/glib-GVariantType.html#glib-GVariantType.details">
|
2537
|
+
<ANCHOR id="GVariantType" href="glib/glib-GVariantType.html#GVariantType">
|
2538
|
+
<ANCHOR id="G-VARIANT-TYPE-BOOLEAN:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BOOLEAN:CAPS">
|
2539
|
+
<ANCHOR id="G-VARIANT-TYPE-BYTE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BYTE:CAPS">
|
2540
|
+
<ANCHOR id="G-VARIANT-TYPE-INT16:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-INT16:CAPS">
|
2541
|
+
<ANCHOR id="G-VARIANT-TYPE-UINT16:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UINT16:CAPS">
|
2542
|
+
<ANCHOR id="G-VARIANT-TYPE-INT32:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-INT32:CAPS">
|
2543
|
+
<ANCHOR id="G-VARIANT-TYPE-UINT32:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UINT32:CAPS">
|
2544
|
+
<ANCHOR id="G-VARIANT-TYPE-INT64:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-INT64:CAPS">
|
2545
|
+
<ANCHOR id="G-VARIANT-TYPE-UINT64:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UINT64:CAPS">
|
2546
|
+
<ANCHOR id="G-VARIANT-TYPE-HANDLE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-HANDLE:CAPS">
|
2547
|
+
<ANCHOR id="G-VARIANT-TYPE-DOUBLE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-DOUBLE:CAPS">
|
2548
|
+
<ANCHOR id="G-VARIANT-TYPE-STRING:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-STRING:CAPS">
|
2549
|
+
<ANCHOR id="G-VARIANT-TYPE-OBJECT-PATH:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-OBJECT-PATH:CAPS">
|
2550
|
+
<ANCHOR id="G-VARIANT-TYPE-SIGNATURE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-SIGNATURE:CAPS">
|
2551
|
+
<ANCHOR id="G-VARIANT-TYPE-VARIANT:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-VARIANT:CAPS">
|
2552
|
+
<ANCHOR id="G-VARIANT-TYPE-ANY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-ANY:CAPS">
|
2553
|
+
<ANCHOR id="G-VARIANT-TYPE-BASIC:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BASIC:CAPS">
|
2554
|
+
<ANCHOR id="G-VARIANT-TYPE-MAYBE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-MAYBE:CAPS">
|
2555
|
+
<ANCHOR id="G-VARIANT-TYPE-ARRAY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-ARRAY:CAPS">
|
2556
|
+
<ANCHOR id="G-VARIANT-TYPE-TUPLE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-TUPLE:CAPS">
|
2557
|
+
<ANCHOR id="G-VARIANT-TYPE-UNIT:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UNIT:CAPS">
|
2558
|
+
<ANCHOR id="G-VARIANT-TYPE-DICT-ENTRY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-DICT-ENTRY:CAPS">
|
2559
|
+
<ANCHOR id="G-VARIANT-TYPE-DICTIONARY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-DICTIONARY:CAPS">
|
2560
|
+
<ANCHOR id="G-VARIANT-TYPE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE:CAPS">
|
2561
|
+
<ANCHOR id="g-variant-type-free" href="glib/glib-GVariantType.html#g-variant-type-free">
|
2562
|
+
<ANCHOR id="g-variant-type-copy" href="glib/glib-GVariantType.html#g-variant-type-copy">
|
2563
|
+
<ANCHOR id="g-variant-type-new" href="glib/glib-GVariantType.html#g-variant-type-new">
|
2564
|
+
<ANCHOR id="g-variant-type-string-is-valid" href="glib/glib-GVariantType.html#g-variant-type-string-is-valid">
|
2565
|
+
<ANCHOR id="g-variant-type-string-scan" href="glib/glib-GVariantType.html#g-variant-type-string-scan">
|
2566
|
+
<ANCHOR id="g-variant-type-get-string-length" href="glib/glib-GVariantType.html#g-variant-type-get-string-length">
|
2567
|
+
<ANCHOR id="g-variant-type-peek-string" href="glib/glib-GVariantType.html#g-variant-type-peek-string">
|
2568
|
+
<ANCHOR id="g-variant-type-dup-string" href="glib/glib-GVariantType.html#g-variant-type-dup-string">
|
2569
|
+
<ANCHOR id="g-variant-type-is-definite" href="glib/glib-GVariantType.html#g-variant-type-is-definite">
|
2570
|
+
<ANCHOR id="g-variant-type-is-container" href="glib/glib-GVariantType.html#g-variant-type-is-container">
|
2571
|
+
<ANCHOR id="g-variant-type-is-basic" href="glib/glib-GVariantType.html#g-variant-type-is-basic">
|
2572
|
+
<ANCHOR id="g-variant-type-is-maybe" href="glib/glib-GVariantType.html#g-variant-type-is-maybe">
|
2573
|
+
<ANCHOR id="g-variant-type-is-array" href="glib/glib-GVariantType.html#g-variant-type-is-array">
|
2574
|
+
<ANCHOR id="g-variant-type-is-tuple" href="glib/glib-GVariantType.html#g-variant-type-is-tuple">
|
2575
|
+
<ANCHOR id="g-variant-type-is-dict-entry" href="glib/glib-GVariantType.html#g-variant-type-is-dict-entry">
|
2576
|
+
<ANCHOR id="g-variant-type-is-variant" href="glib/glib-GVariantType.html#g-variant-type-is-variant">
|
2577
|
+
<ANCHOR id="g-variant-type-hash" href="glib/glib-GVariantType.html#g-variant-type-hash">
|
2578
|
+
<ANCHOR id="g-variant-type-equal" href="glib/glib-GVariantType.html#g-variant-type-equal">
|
2579
|
+
<ANCHOR id="g-variant-type-is-subtype-of" href="glib/glib-GVariantType.html#g-variant-type-is-subtype-of">
|
2580
|
+
<ANCHOR id="g-variant-type-new-maybe" href="glib/glib-GVariantType.html#g-variant-type-new-maybe">
|
2581
|
+
<ANCHOR id="g-variant-type-new-array" href="glib/glib-GVariantType.html#g-variant-type-new-array">
|
2582
|
+
<ANCHOR id="g-variant-type-new-tuple" href="glib/glib-GVariantType.html#g-variant-type-new-tuple">
|
2583
|
+
<ANCHOR id="g-variant-type-new-dict-entry" href="glib/glib-GVariantType.html#g-variant-type-new-dict-entry">
|
2584
|
+
<ANCHOR id="g-variant-type-element" href="glib/glib-GVariantType.html#g-variant-type-element">
|
2585
|
+
<ANCHOR id="g-variant-type-n-items" href="glib/glib-GVariantType.html#g-variant-type-n-items">
|
2586
|
+
<ANCHOR id="g-variant-type-first" href="glib/glib-GVariantType.html#g-variant-type-first">
|
2587
|
+
<ANCHOR id="g-variant-type-next" href="glib/glib-GVariantType.html#g-variant-type-next">
|
2588
|
+
<ANCHOR id="g-variant-type-key" href="glib/glib-GVariantType.html#g-variant-type-key">
|
2589
|
+
<ANCHOR id="g-variant-type-value" href="glib/glib-GVariantType.html#g-variant-type-value">
|
2590
|
+
<ANCHOR id="glib-GVariantType.see-also" href="glib/glib-GVariantType.html#glib-GVariantType.see-also">
|
2591
|
+
<ANCHOR id="glib-GVariant" href="glib/glib-GVariant.html">
|
2592
|
+
<ANCHOR id="glib-GVariant.synopsis" href="glib/glib-GVariant.html#glib-GVariant.synopsis">
|
2593
|
+
<ANCHOR id="glib-GVariant.description" href="glib/glib-GVariant.html#glib-GVariant.description">
|
2594
|
+
<ANCHOR id="glib-GVariant.details" href="glib/glib-GVariant.html#glib-GVariant.details">
|
2595
|
+
<ANCHOR id="GVariant" href="glib/glib-GVariant.html#GVariant">
|
2596
|
+
<ANCHOR id="g-variant-unref" href="glib/glib-GVariant.html#g-variant-unref">
|
2597
|
+
<ANCHOR id="g-variant-ref" href="glib/glib-GVariant.html#g-variant-ref">
|
2598
|
+
<ANCHOR id="g-variant-ref-sink" href="glib/glib-GVariant.html#g-variant-ref-sink">
|
2599
|
+
<ANCHOR id="g-variant-get-type" href="glib/glib-GVariant.html#g-variant-get-type">
|
2600
|
+
<ANCHOR id="g-variant-get-type-string" href="glib/glib-GVariant.html#g-variant-get-type-string">
|
2601
|
+
<ANCHOR id="g-variant-is-of-type" href="glib/glib-GVariant.html#g-variant-is-of-type">
|
2602
|
+
<ANCHOR id="g-variant-is-container" href="glib/glib-GVariant.html#g-variant-is-container">
|
2603
|
+
<ANCHOR id="g-variant-classify" href="glib/glib-GVariant.html#g-variant-classify">
|
2604
|
+
<ANCHOR id="GVariantClass" href="glib/glib-GVariant.html#GVariantClass">
|
2605
|
+
<ANCHOR id="G-VARIANT-CLASS-BOOLEAN:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-BOOLEAN:CAPS">
|
2606
|
+
<ANCHOR id="G-VARIANT-CLASS-BYTE:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-BYTE:CAPS">
|
2607
|
+
<ANCHOR id="G-VARIANT-CLASS-INT16:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-INT16:CAPS">
|
2608
|
+
<ANCHOR id="G-VARIANT-CLASS-UINT16:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-UINT16:CAPS">
|
2609
|
+
<ANCHOR id="G-VARIANT-CLASS-INT32:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-INT32:CAPS">
|
2610
|
+
<ANCHOR id="G-VARIANT-CLASS-UINT32:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-UINT32:CAPS">
|
2611
|
+
<ANCHOR id="G-VARIANT-CLASS-INT64:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-INT64:CAPS">
|
2612
|
+
<ANCHOR id="G-VARIANT-CLASS-UINT64:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-UINT64:CAPS">
|
2613
|
+
<ANCHOR id="G-VARIANT-CLASS-HANDLE:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-HANDLE:CAPS">
|
2614
|
+
<ANCHOR id="G-VARIANT-CLASS-DOUBLE:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-DOUBLE:CAPS">
|
2615
|
+
<ANCHOR id="G-VARIANT-CLASS-STRING:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-STRING:CAPS">
|
2616
|
+
<ANCHOR id="G-VARIANT-CLASS-OBJECT-PATH:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-OBJECT-PATH:CAPS">
|
2617
|
+
<ANCHOR id="G-VARIANT-CLASS-SIGNATURE:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-SIGNATURE:CAPS">
|
2618
|
+
<ANCHOR id="G-VARIANT-CLASS-VARIANT:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-VARIANT:CAPS">
|
2619
|
+
<ANCHOR id="G-VARIANT-CLASS-MAYBE:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-MAYBE:CAPS">
|
2620
|
+
<ANCHOR id="G-VARIANT-CLASS-ARRAY:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-ARRAY:CAPS">
|
2621
|
+
<ANCHOR id="G-VARIANT-CLASS-TUPLE:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-TUPLE:CAPS">
|
2622
|
+
<ANCHOR id="G-VARIANT-CLASS-DICT-ENTRY:CAPS" href="glib/glib-GVariant.html#G-VARIANT-CLASS-DICT-ENTRY:CAPS">
|
2623
|
+
<ANCHOR id="g-variant-get" href="glib/glib-GVariant.html#g-variant-get">
|
2624
|
+
<ANCHOR id="g-variant-get-va" href="glib/glib-GVariant.html#g-variant-get-va">
|
2625
|
+
<ANCHOR id="g-variant-new" href="glib/glib-GVariant.html#g-variant-new">
|
2626
|
+
<ANCHOR id="g-variant-new-va" href="glib/glib-GVariant.html#g-variant-new-va">
|
2627
|
+
<ANCHOR id="g-variant-new-boolean" href="glib/glib-GVariant.html#g-variant-new-boolean">
|
2628
|
+
<ANCHOR id="g-variant-new-byte" href="glib/glib-GVariant.html#g-variant-new-byte">
|
2629
|
+
<ANCHOR id="g-variant-new-int16" href="glib/glib-GVariant.html#g-variant-new-int16">
|
2630
|
+
<ANCHOR id="g-variant-new-uint16" href="glib/glib-GVariant.html#g-variant-new-uint16">
|
2631
|
+
<ANCHOR id="g-variant-new-int32" href="glib/glib-GVariant.html#g-variant-new-int32">
|
2632
|
+
<ANCHOR id="g-variant-new-uint32" href="glib/glib-GVariant.html#g-variant-new-uint32">
|
2633
|
+
<ANCHOR id="g-variant-new-int64" href="glib/glib-GVariant.html#g-variant-new-int64">
|
2634
|
+
<ANCHOR id="g-variant-new-uint64" href="glib/glib-GVariant.html#g-variant-new-uint64">
|
2635
|
+
<ANCHOR id="g-variant-new-handle" href="glib/glib-GVariant.html#g-variant-new-handle">
|
2636
|
+
<ANCHOR id="g-variant-new-double" href="glib/glib-GVariant.html#g-variant-new-double">
|
2637
|
+
<ANCHOR id="g-variant-new-string" href="glib/glib-GVariant.html#g-variant-new-string">
|
2638
|
+
<ANCHOR id="g-variant-new-object-path" href="glib/glib-GVariant.html#g-variant-new-object-path">
|
2639
|
+
<ANCHOR id="g-variant-is-object-path" href="glib/glib-GVariant.html#g-variant-is-object-path">
|
2640
|
+
<ANCHOR id="g-variant-new-signature" href="glib/glib-GVariant.html#g-variant-new-signature">
|
2641
|
+
<ANCHOR id="g-variant-is-signature" href="glib/glib-GVariant.html#g-variant-is-signature">
|
2642
|
+
<ANCHOR id="g-variant-new-variant" href="glib/glib-GVariant.html#g-variant-new-variant">
|
2643
|
+
<ANCHOR id="g-variant-new-strv" href="glib/glib-GVariant.html#g-variant-new-strv">
|
2644
|
+
<ANCHOR id="g-variant-get-boolean" href="glib/glib-GVariant.html#g-variant-get-boolean">
|
2645
|
+
<ANCHOR id="g-variant-get-byte" href="glib/glib-GVariant.html#g-variant-get-byte">
|
2646
|
+
<ANCHOR id="g-variant-get-int16" href="glib/glib-GVariant.html#g-variant-get-int16">
|
2647
|
+
<ANCHOR id="g-variant-get-uint16" href="glib/glib-GVariant.html#g-variant-get-uint16">
|
2648
|
+
<ANCHOR id="g-variant-get-int32" href="glib/glib-GVariant.html#g-variant-get-int32">
|
2649
|
+
<ANCHOR id="g-variant-get-uint32" href="glib/glib-GVariant.html#g-variant-get-uint32">
|
2650
|
+
<ANCHOR id="g-variant-get-int64" href="glib/glib-GVariant.html#g-variant-get-int64">
|
2651
|
+
<ANCHOR id="g-variant-get-uint64" href="glib/glib-GVariant.html#g-variant-get-uint64">
|
2652
|
+
<ANCHOR id="g-variant-get-handle" href="glib/glib-GVariant.html#g-variant-get-handle">
|
2653
|
+
<ANCHOR id="g-variant-get-double" href="glib/glib-GVariant.html#g-variant-get-double">
|
2654
|
+
<ANCHOR id="g-variant-get-string" href="glib/glib-GVariant.html#g-variant-get-string">
|
2655
|
+
<ANCHOR id="g-variant-dup-string" href="glib/glib-GVariant.html#g-variant-dup-string">
|
2656
|
+
<ANCHOR id="g-variant-get-variant" href="glib/glib-GVariant.html#g-variant-get-variant">
|
2657
|
+
<ANCHOR id="g-variant-get-strv" href="glib/glib-GVariant.html#g-variant-get-strv">
|
2658
|
+
<ANCHOR id="g-variant-dup-strv" href="glib/glib-GVariant.html#g-variant-dup-strv">
|
2659
|
+
<ANCHOR id="g-variant-new-maybe" href="glib/glib-GVariant.html#g-variant-new-maybe">
|
2660
|
+
<ANCHOR id="g-variant-new-array" href="glib/glib-GVariant.html#g-variant-new-array">
|
2661
|
+
<ANCHOR id="g-variant-new-tuple" href="glib/glib-GVariant.html#g-variant-new-tuple">
|
2662
|
+
<ANCHOR id="g-variant-new-dict-entry" href="glib/glib-GVariant.html#g-variant-new-dict-entry">
|
2663
|
+
<ANCHOR id="g-variant-get-maybe" href="glib/glib-GVariant.html#g-variant-get-maybe">
|
2664
|
+
<ANCHOR id="g-variant-n-children" href="glib/glib-GVariant.html#g-variant-n-children">
|
2665
|
+
<ANCHOR id="g-variant-get-child-value" href="glib/glib-GVariant.html#g-variant-get-child-value">
|
2666
|
+
<ANCHOR id="g-variant-get-child" href="glib/glib-GVariant.html#g-variant-get-child">
|
2667
|
+
<ANCHOR id="g-variant-get-fixed-array" href="glib/glib-GVariant.html#g-variant-get-fixed-array">
|
2668
|
+
<ANCHOR id="g-variant-get-size" href="glib/glib-GVariant.html#g-variant-get-size">
|
2669
|
+
<ANCHOR id="g-variant-get-data" href="glib/glib-GVariant.html#g-variant-get-data">
|
2670
|
+
<ANCHOR id="g-variant-store" href="glib/glib-GVariant.html#g-variant-store">
|
2671
|
+
<ANCHOR id="g-variant-new-from-data" href="glib/glib-GVariant.html#g-variant-new-from-data">
|
2672
|
+
<ANCHOR id="g-variant-byteswap" href="glib/glib-GVariant.html#g-variant-byteswap">
|
2673
|
+
<ANCHOR id="g-variant-get-normal-form" href="glib/glib-GVariant.html#g-variant-get-normal-form">
|
2674
|
+
<ANCHOR id="g-variant-is-normal-form" href="glib/glib-GVariant.html#g-variant-is-normal-form">
|
2675
|
+
<ANCHOR id="g-variant-hash" href="glib/glib-GVariant.html#g-variant-hash">
|
2676
|
+
<ANCHOR id="g-variant-equal" href="glib/glib-GVariant.html#g-variant-equal">
|
2677
|
+
<ANCHOR id="g-variant-print" href="glib/glib-GVariant.html#g-variant-print">
|
2678
|
+
<ANCHOR id="g-variant-print-string" href="glib/glib-GVariant.html#g-variant-print-string">
|
2679
|
+
<ANCHOR id="GVariantIter" href="glib/glib-GVariant.html#GVariantIter">
|
2680
|
+
<ANCHOR id="g-variant-iter-copy" href="glib/glib-GVariant.html#g-variant-iter-copy">
|
2681
|
+
<ANCHOR id="g-variant-iter-free" href="glib/glib-GVariant.html#g-variant-iter-free">
|
2682
|
+
<ANCHOR id="g-variant-iter-init" href="glib/glib-GVariant.html#g-variant-iter-init">
|
2683
|
+
<ANCHOR id="g-variant-iter-n-children" href="glib/glib-GVariant.html#g-variant-iter-n-children">
|
2684
|
+
<ANCHOR id="g-variant-iter-new" href="glib/glib-GVariant.html#g-variant-iter-new">
|
2685
|
+
<ANCHOR id="g-variant-iter-next-value" href="glib/glib-GVariant.html#g-variant-iter-next-value">
|
2686
|
+
<ANCHOR id="g-variant-iter-next" href="glib/glib-GVariant.html#g-variant-iter-next">
|
2687
|
+
<ANCHOR id="g-variant-iter-loop" href="glib/glib-GVariant.html#g-variant-iter-loop">
|
2688
|
+
<ANCHOR id="GVariantBuilder" href="glib/glib-GVariant.html#GVariantBuilder">
|
2689
|
+
<ANCHOR id="g-variant-builder-unref" href="glib/glib-GVariant.html#g-variant-builder-unref">
|
2690
|
+
<ANCHOR id="g-variant-builder-ref" href="glib/glib-GVariant.html#g-variant-builder-ref">
|
2691
|
+
<ANCHOR id="g-variant-builder-new" href="glib/glib-GVariant.html#g-variant-builder-new">
|
2692
|
+
<ANCHOR id="g-variant-builder-init" href="glib/glib-GVariant.html#g-variant-builder-init">
|
2693
|
+
<ANCHOR id="g-variant-builder-clear" href="glib/glib-GVariant.html#g-variant-builder-clear">
|
2694
|
+
<ANCHOR id="g-variant-builder-add-value" href="glib/glib-GVariant.html#g-variant-builder-add-value">
|
2695
|
+
<ANCHOR id="g-variant-builder-add" href="glib/glib-GVariant.html#g-variant-builder-add">
|
2696
|
+
<ANCHOR id="g-variant-builder-end" href="glib/glib-GVariant.html#g-variant-builder-end">
|
2697
|
+
<ANCHOR id="g-variant-builder-open" href="glib/glib-GVariant.html#g-variant-builder-open">
|
2698
|
+
<ANCHOR id="g-variant-builder-close" href="glib/glib-GVariant.html#g-variant-builder-close">
|
2699
|
+
<ANCHOR id="G-VARIANT-PARSE-ERROR:CAPS" href="glib/glib-GVariant.html#G-VARIANT-PARSE-ERROR:CAPS">
|
2700
|
+
<ANCHOR id="g-variant-parse" href="glib/glib-GVariant.html#g-variant-parse">
|
2701
|
+
<ANCHOR id="g-variant-new-parsed-va" href="glib/glib-GVariant.html#g-variant-new-parsed-va">
|
2702
|
+
<ANCHOR id="g-variant-new-parsed" href="glib/glib-GVariant.html#g-variant-new-parsed">
|
2703
|
+
<ANCHOR id="glib-GVariant.see-also" href="glib/glib-GVariant.html#glib-GVariant.see-also">
|
2704
|
+
<ANCHOR id="gvariant-format-strings" href="glib/gvariant-format-strings.html">
|
2705
|
+
<ANCHOR id="gvariant-format-strings-numeric-types" href="glib/gvariant-format-strings.html#gvariant-format-strings-numeric-types">
|
2706
|
+
<ANCHOR id="gvariant-format-strings-strings" href="glib/gvariant-format-strings.html#gvariant-format-strings-strings">
|
2707
|
+
<ANCHOR id="gvariant-format-strings-variants" href="glib/gvariant-format-strings.html#gvariant-format-strings-variants">
|
2708
|
+
<ANCHOR id="gvariant-format-strings-arrays" href="glib/gvariant-format-strings.html#gvariant-format-strings-arrays">
|
2709
|
+
<ANCHOR id="gvariant-format-strings-maybe-types" href="glib/gvariant-format-strings.html#gvariant-format-strings-maybe-types">
|
2710
|
+
<ANCHOR id="gvariant-format-strings-tuples" href="glib/gvariant-format-strings.html#gvariant-format-strings-tuples">
|
2711
|
+
<ANCHOR id="gvariant-format-strings-dictionaries" href="glib/gvariant-format-strings.html#gvariant-format-strings-dictionaries">
|
2712
|
+
<ANCHOR id="gvariant-format-strings-gvariant" href="glib/gvariant-format-strings.html#gvariant-format-strings-gvariant">
|
2713
|
+
<ANCHOR id="gvariant-format-strings-pointers" href="glib/gvariant-format-strings.html#gvariant-format-strings-pointers">
|
2714
|
+
<ANCHOR id="gvariant-format-strings-convenience" href="glib/gvariant-format-strings.html#gvariant-format-strings-convenience">
|
2715
|
+
<ANCHOR id="glib-gettextize" href="glib/glib-gettextize.html">
|
2716
|
+
<ANCHOR id="gtester" href="glib/gtester.html">
|
2717
|
+
<ANCHOR id="gtester-report" href="glib/gtester-report.html">
|