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,800 @@
|
|
1
|
+
EXPORTS
|
2
|
+
g_app_info_add_supports_type
|
3
|
+
g_app_info_can_delete
|
4
|
+
g_app_info_can_remove_supports_type
|
5
|
+
g_app_info_create_flags_get_type
|
6
|
+
g_app_info_create_from_commandline
|
7
|
+
g_app_info_delete
|
8
|
+
g_app_info_dup
|
9
|
+
g_app_info_equal
|
10
|
+
g_app_info_get_all
|
11
|
+
g_app_info_get_all_for_type
|
12
|
+
g_app_info_get_commandline
|
13
|
+
g_app_info_get_default_for_type
|
14
|
+
g_app_info_get_default_for_uri_scheme
|
15
|
+
g_app_info_get_description
|
16
|
+
g_app_info_get_display_name
|
17
|
+
g_app_info_get_executable
|
18
|
+
g_app_info_get_icon
|
19
|
+
g_app_info_get_id
|
20
|
+
g_app_info_get_name
|
21
|
+
g_app_info_get_type
|
22
|
+
g_app_info_launch
|
23
|
+
g_app_info_launch_default_for_uri
|
24
|
+
g_app_info_launch_uris
|
25
|
+
g_app_info_remove_supports_type
|
26
|
+
g_app_info_reset_type_associations
|
27
|
+
g_app_info_set_as_default_for_extension
|
28
|
+
g_app_info_set_as_default_for_type
|
29
|
+
g_app_info_should_show
|
30
|
+
g_app_info_supports_files
|
31
|
+
g_app_info_supports_uris
|
32
|
+
g_app_launch_context_get_display
|
33
|
+
g_app_launch_context_get_startup_notify_id
|
34
|
+
g_app_launch_context_get_type
|
35
|
+
g_app_launch_context_launch_failed
|
36
|
+
g_app_launch_context_new
|
37
|
+
g_ask_password_flags_get_type
|
38
|
+
g_async_initable_get_type
|
39
|
+
g_async_initable_init_async
|
40
|
+
g_async_initable_init_finish
|
41
|
+
g_async_initable_new_async
|
42
|
+
g_async_initable_new_finish
|
43
|
+
g_async_initable_new_valist_async
|
44
|
+
g_async_initable_newv_async
|
45
|
+
g_async_result_get_source_object
|
46
|
+
g_async_result_get_type
|
47
|
+
g_async_result_get_user_data
|
48
|
+
g_buffered_input_stream_fill
|
49
|
+
g_buffered_input_stream_fill_async
|
50
|
+
g_buffered_input_stream_fill_finish
|
51
|
+
g_buffered_input_stream_get_available
|
52
|
+
g_buffered_input_stream_get_buffer_size
|
53
|
+
g_buffered_input_stream_get_type
|
54
|
+
g_buffered_input_stream_new
|
55
|
+
g_buffered_input_stream_new_sized
|
56
|
+
g_buffered_input_stream_peek
|
57
|
+
g_buffered_input_stream_peek_buffer
|
58
|
+
g_buffered_input_stream_read_byte
|
59
|
+
g_buffered_input_stream_set_buffer_size
|
60
|
+
g_buffered_output_stream_get_auto_grow
|
61
|
+
g_buffered_output_stream_get_buffer_size
|
62
|
+
g_buffered_output_stream_get_type
|
63
|
+
g_buffered_output_stream_new
|
64
|
+
g_buffered_output_stream_new_sized
|
65
|
+
g_buffered_output_stream_set_auto_grow
|
66
|
+
g_buffered_output_stream_set_buffer_size
|
67
|
+
g_cancellable_cancel
|
68
|
+
g_cancellable_connect
|
69
|
+
g_cancellable_disconnect
|
70
|
+
g_cancellable_get_current
|
71
|
+
g_cancellable_get_fd
|
72
|
+
g_cancellable_get_type
|
73
|
+
g_cancellable_is_cancelled
|
74
|
+
g_cancellable_make_pollfd
|
75
|
+
g_cancellable_new
|
76
|
+
g_cancellable_pop_current
|
77
|
+
g_cancellable_push_current
|
78
|
+
g_cancellable_release_fd
|
79
|
+
g_cancellable_reset
|
80
|
+
g_cancellable_set_error_if_cancelled
|
81
|
+
g_charset_converter_get_num_fallbacks
|
82
|
+
g_charset_converter_get_type
|
83
|
+
g_charset_converter_get_use_fallback
|
84
|
+
g_charset_converter_new
|
85
|
+
g_charset_converter_set_use_fallback
|
86
|
+
g_content_type_can_be_executable
|
87
|
+
g_content_type_equals
|
88
|
+
g_content_type_from_mime_type
|
89
|
+
g_content_type_get_description
|
90
|
+
g_content_type_get_icon
|
91
|
+
g_content_type_get_mime_type
|
92
|
+
g_content_type_guess
|
93
|
+
g_content_type_guess_for_tree
|
94
|
+
g_content_type_is_a
|
95
|
+
g_content_type_is_unknown
|
96
|
+
g_content_types_get_registered
|
97
|
+
g_converter_convert
|
98
|
+
g_converter_flags_get_type
|
99
|
+
g_converter_get_type
|
100
|
+
g_converter_input_stream_get_converter
|
101
|
+
g_converter_input_stream_get_type
|
102
|
+
g_converter_input_stream_new
|
103
|
+
g_converter_output_stream_get_converter
|
104
|
+
g_converter_output_stream_get_type
|
105
|
+
g_converter_output_stream_new
|
106
|
+
g_converter_reset
|
107
|
+
g_converter_result_get_type
|
108
|
+
g_data_input_stream_get_byte_order
|
109
|
+
g_data_input_stream_get_newline_type
|
110
|
+
g_data_input_stream_get_type
|
111
|
+
g_data_input_stream_new
|
112
|
+
g_data_input_stream_read_byte
|
113
|
+
g_data_input_stream_read_int16
|
114
|
+
g_data_input_stream_read_int32
|
115
|
+
g_data_input_stream_read_int64
|
116
|
+
g_data_input_stream_read_line
|
117
|
+
g_data_input_stream_read_line_async
|
118
|
+
g_data_input_stream_read_line_finish
|
119
|
+
g_data_input_stream_read_uint16
|
120
|
+
g_data_input_stream_read_uint32
|
121
|
+
g_data_input_stream_read_uint64
|
122
|
+
g_data_input_stream_read_until
|
123
|
+
g_data_input_stream_read_until_async
|
124
|
+
g_data_input_stream_read_until_finish
|
125
|
+
g_data_input_stream_set_byte_order
|
126
|
+
g_data_input_stream_set_newline_type
|
127
|
+
g_data_output_stream_get_byte_order
|
128
|
+
g_data_output_stream_get_type
|
129
|
+
g_data_output_stream_new
|
130
|
+
g_data_output_stream_put_byte
|
131
|
+
g_data_output_stream_put_int16
|
132
|
+
g_data_output_stream_put_int32
|
133
|
+
g_data_output_stream_put_int64
|
134
|
+
g_data_output_stream_put_string
|
135
|
+
g_data_output_stream_put_uint16
|
136
|
+
g_data_output_stream_put_uint32
|
137
|
+
g_data_output_stream_put_uint64
|
138
|
+
g_data_output_stream_set_byte_order
|
139
|
+
g_data_stream_byte_order_get_type
|
140
|
+
g_data_stream_newline_type_get_type
|
141
|
+
g_drive_can_eject
|
142
|
+
g_drive_can_poll_for_media
|
143
|
+
g_drive_can_start
|
144
|
+
g_drive_can_start_degraded
|
145
|
+
g_drive_can_stop
|
146
|
+
g_drive_eject
|
147
|
+
g_drive_eject_finish
|
148
|
+
g_drive_eject_with_operation
|
149
|
+
g_drive_eject_with_operation_finish
|
150
|
+
g_drive_enumerate_identifiers
|
151
|
+
g_drive_get_icon
|
152
|
+
g_drive_get_identifier
|
153
|
+
g_drive_get_name
|
154
|
+
g_drive_get_start_stop_type
|
155
|
+
g_drive_get_type
|
156
|
+
g_drive_get_volumes
|
157
|
+
g_drive_has_media
|
158
|
+
g_drive_has_volumes
|
159
|
+
g_drive_is_media_check_automatic
|
160
|
+
g_drive_is_media_removable
|
161
|
+
g_drive_poll_for_media
|
162
|
+
g_drive_poll_for_media_finish
|
163
|
+
g_drive_start
|
164
|
+
g_drive_start_finish
|
165
|
+
g_drive_start_flags_get_type
|
166
|
+
g_drive_start_stop_type_get_type
|
167
|
+
g_drive_stop
|
168
|
+
g_drive_stop_finish
|
169
|
+
g_emblem_get_icon
|
170
|
+
g_emblem_get_origin
|
171
|
+
g_emblem_get_type
|
172
|
+
g_emblem_new
|
173
|
+
g_emblem_new_with_origin
|
174
|
+
g_emblem_origin_get_type
|
175
|
+
g_emblemed_icon_add_emblem
|
176
|
+
g_emblemed_icon_get_emblems
|
177
|
+
g_emblemed_icon_get_icon
|
178
|
+
g_emblemed_icon_get_type
|
179
|
+
g_emblemed_icon_new
|
180
|
+
g_file_append_to
|
181
|
+
g_file_append_to_async
|
182
|
+
g_file_append_to_finish
|
183
|
+
g_file_attribute_info_flags_get_type
|
184
|
+
g_file_attribute_info_list_add
|
185
|
+
g_file_attribute_info_list_dup
|
186
|
+
g_file_attribute_info_list_get_type
|
187
|
+
g_file_attribute_info_list_lookup
|
188
|
+
g_file_attribute_info_list_new
|
189
|
+
g_file_attribute_info_list_ref
|
190
|
+
g_file_attribute_info_list_unref
|
191
|
+
g_file_attribute_matcher_enumerate_namespace
|
192
|
+
g_file_attribute_matcher_enumerate_next
|
193
|
+
g_file_attribute_matcher_matches
|
194
|
+
g_file_attribute_matcher_matches_only
|
195
|
+
g_file_attribute_matcher_new
|
196
|
+
g_file_attribute_matcher_ref
|
197
|
+
g_file_attribute_matcher_unref
|
198
|
+
g_file_attribute_status_get_type
|
199
|
+
g_file_attribute_type_get_type
|
200
|
+
g_file_copy
|
201
|
+
g_file_copy_async
|
202
|
+
g_file_copy_attributes
|
203
|
+
g_file_copy_finish
|
204
|
+
g_file_copy_flags_get_type
|
205
|
+
g_file_create
|
206
|
+
g_file_create_async
|
207
|
+
g_file_create_finish
|
208
|
+
g_file_create_flags_get_type
|
209
|
+
g_file_create_readwrite
|
210
|
+
g_file_create_readwrite_async
|
211
|
+
g_file_create_readwrite_finish
|
212
|
+
g_file_delete
|
213
|
+
g_file_descriptor_based_get_fd
|
214
|
+
g_file_descriptor_based_get_type
|
215
|
+
g_file_dup
|
216
|
+
g_file_eject_mountable
|
217
|
+
g_file_eject_mountable_finish
|
218
|
+
g_file_eject_mountable_with_operation
|
219
|
+
g_file_eject_mountable_with_operation_finish
|
220
|
+
g_file_enumerate_children
|
221
|
+
g_file_enumerate_children_async
|
222
|
+
g_file_enumerate_children_finish
|
223
|
+
g_file_enumerator_close
|
224
|
+
g_file_enumerator_close_async
|
225
|
+
g_file_enumerator_close_finish
|
226
|
+
g_file_enumerator_get_container
|
227
|
+
g_file_enumerator_get_type
|
228
|
+
g_file_enumerator_has_pending
|
229
|
+
g_file_enumerator_is_closed
|
230
|
+
g_file_enumerator_next_file
|
231
|
+
g_file_enumerator_next_files_async
|
232
|
+
g_file_enumerator_next_files_finish
|
233
|
+
g_file_enumerator_set_pending
|
234
|
+
g_file_equal
|
235
|
+
g_file_find_enclosing_mount
|
236
|
+
g_file_find_enclosing_mount_async
|
237
|
+
g_file_find_enclosing_mount_finish
|
238
|
+
g_file_get_basename
|
239
|
+
g_file_get_child
|
240
|
+
g_file_get_child_for_display_name
|
241
|
+
g_file_get_parent
|
242
|
+
g_file_get_parse_name
|
243
|
+
g_file_get_path
|
244
|
+
g_file_get_relative_path
|
245
|
+
g_file_get_type
|
246
|
+
g_file_get_uri
|
247
|
+
g_file_get_uri_scheme
|
248
|
+
g_file_has_parent
|
249
|
+
g_file_has_prefix
|
250
|
+
g_file_has_uri_scheme
|
251
|
+
g_file_hash
|
252
|
+
g_file_icon_get_file
|
253
|
+
g_file_icon_get_type
|
254
|
+
g_file_icon_new
|
255
|
+
g_file_info_clear_status
|
256
|
+
g_file_info_copy_into
|
257
|
+
g_file_info_dup
|
258
|
+
g_file_info_get_attribute_as_string
|
259
|
+
g_file_info_get_attribute_boolean
|
260
|
+
g_file_info_get_attribute_byte_string
|
261
|
+
g_file_info_get_attribute_data
|
262
|
+
g_file_info_get_attribute_int32
|
263
|
+
g_file_info_get_attribute_int64
|
264
|
+
g_file_info_get_attribute_object
|
265
|
+
g_file_info_get_attribute_status
|
266
|
+
g_file_info_get_attribute_string
|
267
|
+
g_file_info_get_attribute_stringv
|
268
|
+
g_file_info_get_attribute_type
|
269
|
+
g_file_info_get_attribute_uint32
|
270
|
+
g_file_info_get_attribute_uint64
|
271
|
+
g_file_info_get_content_type
|
272
|
+
g_file_info_get_display_name
|
273
|
+
g_file_info_get_edit_name
|
274
|
+
g_file_info_get_etag
|
275
|
+
g_file_info_get_file_type
|
276
|
+
g_file_info_get_icon
|
277
|
+
g_file_info_get_is_backup
|
278
|
+
g_file_info_get_is_hidden
|
279
|
+
g_file_info_get_is_symlink
|
280
|
+
g_file_info_get_modification_time
|
281
|
+
g_file_info_get_name
|
282
|
+
g_file_info_get_size
|
283
|
+
g_file_info_get_sort_order
|
284
|
+
g_file_info_get_symlink_target
|
285
|
+
g_file_info_get_type
|
286
|
+
g_file_info_has_attribute
|
287
|
+
g_file_info_has_namespace
|
288
|
+
g_file_info_list_attributes
|
289
|
+
g_file_info_new
|
290
|
+
g_file_info_remove_attribute
|
291
|
+
g_file_info_set_attribute
|
292
|
+
g_file_info_set_attribute_boolean
|
293
|
+
g_file_info_set_attribute_byte_string
|
294
|
+
g_file_info_set_attribute_int32
|
295
|
+
g_file_info_set_attribute_int64
|
296
|
+
g_file_info_set_attribute_mask
|
297
|
+
g_file_info_set_attribute_object
|
298
|
+
g_file_info_set_attribute_status
|
299
|
+
g_file_info_set_attribute_string
|
300
|
+
g_file_info_set_attribute_stringv
|
301
|
+
g_file_info_set_attribute_uint32
|
302
|
+
g_file_info_set_attribute_uint64
|
303
|
+
g_file_info_set_content_type
|
304
|
+
g_file_info_set_display_name
|
305
|
+
g_file_info_set_edit_name
|
306
|
+
g_file_info_set_file_type
|
307
|
+
g_file_info_set_icon
|
308
|
+
g_file_info_set_is_hidden
|
309
|
+
g_file_info_set_is_symlink
|
310
|
+
g_file_info_set_modification_time
|
311
|
+
g_file_info_set_name
|
312
|
+
g_file_info_set_size
|
313
|
+
g_file_info_set_sort_order
|
314
|
+
g_file_info_set_symlink_target
|
315
|
+
g_file_info_unset_attribute_mask
|
316
|
+
g_file_input_stream_get_type
|
317
|
+
g_file_input_stream_query_info
|
318
|
+
g_file_input_stream_query_info_async
|
319
|
+
g_file_input_stream_query_info_finish
|
320
|
+
g_file_io_stream_get_etag
|
321
|
+
g_file_io_stream_get_type
|
322
|
+
g_file_io_stream_query_info
|
323
|
+
g_file_io_stream_query_info_async
|
324
|
+
g_file_io_stream_query_info_finish
|
325
|
+
g_file_is_native
|
326
|
+
g_file_load_contents
|
327
|
+
g_file_load_contents_async
|
328
|
+
g_file_load_contents_finish
|
329
|
+
g_file_load_partial_contents_async
|
330
|
+
g_file_load_partial_contents_finish
|
331
|
+
g_file_make_directory
|
332
|
+
g_file_make_directory_with_parents
|
333
|
+
g_file_make_symbolic_link
|
334
|
+
g_file_monitor
|
335
|
+
g_file_monitor_cancel
|
336
|
+
g_file_monitor_directory
|
337
|
+
g_file_monitor_emit_event
|
338
|
+
g_file_monitor_event_get_type
|
339
|
+
g_file_monitor_file
|
340
|
+
g_file_monitor_flags_get_type
|
341
|
+
g_file_monitor_get_type
|
342
|
+
g_file_monitor_is_cancelled
|
343
|
+
g_file_monitor_set_rate_limit
|
344
|
+
g_file_mount_enclosing_volume
|
345
|
+
g_file_mount_enclosing_volume_finish
|
346
|
+
g_file_mount_mountable
|
347
|
+
g_file_mount_mountable_finish
|
348
|
+
g_file_move
|
349
|
+
g_file_new_for_commandline_arg
|
350
|
+
g_file_new_for_path
|
351
|
+
g_file_new_for_uri
|
352
|
+
g_file_open_readwrite
|
353
|
+
g_file_open_readwrite_async
|
354
|
+
g_file_open_readwrite_finish
|
355
|
+
g_file_output_stream_get_etag
|
356
|
+
g_file_output_stream_get_type
|
357
|
+
g_file_output_stream_query_info
|
358
|
+
g_file_output_stream_query_info_async
|
359
|
+
g_file_output_stream_query_info_finish
|
360
|
+
g_file_parse_name
|
361
|
+
g_file_poll_mountable
|
362
|
+
g_file_poll_mountable_finish
|
363
|
+
g_file_query_default_handler
|
364
|
+
g_file_query_exists
|
365
|
+
g_file_query_file_type
|
366
|
+
g_file_query_filesystem_info
|
367
|
+
g_file_query_filesystem_info_async
|
368
|
+
g_file_query_filesystem_info_finish
|
369
|
+
g_file_query_info
|
370
|
+
g_file_query_info_async
|
371
|
+
g_file_query_info_finish
|
372
|
+
g_file_query_info_flags_get_type
|
373
|
+
g_file_query_settable_attributes
|
374
|
+
g_file_query_writable_namespaces
|
375
|
+
g_file_read
|
376
|
+
g_file_read_async
|
377
|
+
g_file_read_finish
|
378
|
+
g_file_replace
|
379
|
+
g_file_replace_async
|
380
|
+
g_file_replace_contents
|
381
|
+
g_file_replace_contents_async
|
382
|
+
g_file_replace_contents_finish
|
383
|
+
g_file_replace_finish
|
384
|
+
g_file_replace_readwrite
|
385
|
+
g_file_replace_readwrite_async
|
386
|
+
g_file_replace_readwrite_finish
|
387
|
+
g_file_resolve_relative_path
|
388
|
+
g_file_set_attribute
|
389
|
+
g_file_set_attribute_byte_string
|
390
|
+
g_file_set_attribute_int32
|
391
|
+
g_file_set_attribute_int64
|
392
|
+
g_file_set_attribute_string
|
393
|
+
g_file_set_attribute_uint32
|
394
|
+
g_file_set_attribute_uint64
|
395
|
+
g_file_set_attributes_async
|
396
|
+
g_file_set_attributes_finish
|
397
|
+
g_file_set_attributes_from_info
|
398
|
+
g_file_set_display_name
|
399
|
+
g_file_set_display_name_async
|
400
|
+
g_file_set_display_name_finish
|
401
|
+
g_file_start_mountable
|
402
|
+
g_file_start_mountable_finish
|
403
|
+
g_file_stop_mountable
|
404
|
+
g_file_stop_mountable_finish
|
405
|
+
g_file_supports_thread_contexts
|
406
|
+
g_file_trash
|
407
|
+
g_file_type_get_type
|
408
|
+
g_file_unmount_mountable
|
409
|
+
g_file_unmount_mountable_finish
|
410
|
+
g_file_unmount_mountable_with_operation
|
411
|
+
g_file_unmount_mountable_with_operation_finish
|
412
|
+
g_filename_completer_get_completion_suffix
|
413
|
+
g_filename_completer_get_completions
|
414
|
+
g_filename_completer_get_type
|
415
|
+
g_filename_completer_new
|
416
|
+
g_filename_completer_set_dirs_only
|
417
|
+
g_filesystem_preview_type_get_type
|
418
|
+
g_filter_input_stream_get_base_stream
|
419
|
+
g_filter_input_stream_get_close_base_stream
|
420
|
+
g_filter_input_stream_get_type
|
421
|
+
g_filter_input_stream_set_close_base_stream
|
422
|
+
g_filter_output_stream_get_base_stream
|
423
|
+
g_filter_output_stream_get_close_base_stream
|
424
|
+
g_filter_output_stream_get_type
|
425
|
+
g_filter_output_stream_set_close_base_stream
|
426
|
+
g_icon_equal
|
427
|
+
g_icon_get_type
|
428
|
+
g_icon_hash
|
429
|
+
g_icon_new_for_string
|
430
|
+
g_icon_to_string
|
431
|
+
g_inet_address_get_family
|
432
|
+
g_inet_address_get_is_any
|
433
|
+
g_inet_address_get_is_link_local
|
434
|
+
g_inet_address_get_is_loopback
|
435
|
+
g_inet_address_get_is_mc_global
|
436
|
+
g_inet_address_get_is_mc_link_local
|
437
|
+
g_inet_address_get_is_mc_node_local
|
438
|
+
g_inet_address_get_is_mc_org_local
|
439
|
+
g_inet_address_get_is_mc_site_local
|
440
|
+
g_inet_address_get_is_multicast
|
441
|
+
g_inet_address_get_is_site_local
|
442
|
+
g_inet_address_get_native_size
|
443
|
+
g_inet_address_get_type
|
444
|
+
g_inet_address_new_any
|
445
|
+
g_inet_address_new_from_bytes
|
446
|
+
g_inet_address_new_from_string
|
447
|
+
g_inet_address_new_loopback
|
448
|
+
g_inet_address_to_bytes
|
449
|
+
g_inet_address_to_string
|
450
|
+
g_inet_socket_address_get_address
|
451
|
+
g_inet_socket_address_get_port
|
452
|
+
g_inet_socket_address_get_type
|
453
|
+
g_inet_socket_address_new
|
454
|
+
g_initable_get_type
|
455
|
+
g_initable_init
|
456
|
+
g_initable_new
|
457
|
+
g_initable_new_valist
|
458
|
+
g_initable_newv
|
459
|
+
g_input_stream_clear_pending
|
460
|
+
g_input_stream_close
|
461
|
+
g_input_stream_close_async
|
462
|
+
g_input_stream_close_finish
|
463
|
+
g_input_stream_get_type
|
464
|
+
g_input_stream_has_pending
|
465
|
+
g_input_stream_is_closed
|
466
|
+
g_input_stream_read
|
467
|
+
g_input_stream_read_all
|
468
|
+
g_input_stream_read_async
|
469
|
+
g_input_stream_read_finish
|
470
|
+
g_input_stream_set_pending
|
471
|
+
g_input_stream_skip
|
472
|
+
g_input_stream_skip_async
|
473
|
+
g_input_stream_skip_finish
|
474
|
+
g_io_error_enum_get_type
|
475
|
+
g_io_error_from_errno
|
476
|
+
g_io_error_quark
|
477
|
+
g_io_extension_get_name
|
478
|
+
g_io_extension_get_priority
|
479
|
+
g_io_extension_get_type
|
480
|
+
g_io_extension_point_get_extension_by_name
|
481
|
+
g_io_extension_point_get_extensions
|
482
|
+
g_io_extension_point_get_required_type
|
483
|
+
g_io_extension_point_implement
|
484
|
+
g_io_extension_point_lookup
|
485
|
+
g_io_extension_point_register
|
486
|
+
g_io_extension_point_set_required_type
|
487
|
+
g_io_extension_ref_class
|
488
|
+
g_io_module_get_type
|
489
|
+
g_io_module_new
|
490
|
+
g_io_modules_load_all_in_directory
|
491
|
+
g_io_modules_scan_all_in_directory
|
492
|
+
g_io_scheduler_cancel_all_jobs
|
493
|
+
g_io_scheduler_job_send_to_mainloop
|
494
|
+
g_io_scheduler_job_send_to_mainloop_async
|
495
|
+
g_io_scheduler_push_job
|
496
|
+
g_io_stream_clear_pending
|
497
|
+
g_io_stream_close
|
498
|
+
g_io_stream_close_async
|
499
|
+
g_io_stream_close_finish
|
500
|
+
g_io_stream_get_input_stream
|
501
|
+
g_io_stream_get_output_stream
|
502
|
+
g_io_stream_get_type
|
503
|
+
g_io_stream_has_pending
|
504
|
+
g_io_stream_is_closed
|
505
|
+
g_io_stream_set_pending
|
506
|
+
g_loadable_icon_get_type
|
507
|
+
g_loadable_icon_load
|
508
|
+
g_loadable_icon_load_async
|
509
|
+
g_loadable_icon_load_finish
|
510
|
+
g_memory_input_stream_add_data
|
511
|
+
g_memory_input_stream_get_type
|
512
|
+
g_memory_input_stream_new
|
513
|
+
g_memory_input_stream_new_from_data
|
514
|
+
g_memory_output_stream_get_data
|
515
|
+
g_memory_output_stream_get_data_size
|
516
|
+
g_memory_output_stream_get_size
|
517
|
+
g_memory_output_stream_get_type
|
518
|
+
g_memory_output_stream_new
|
519
|
+
g_mount_can_eject
|
520
|
+
g_mount_can_unmount
|
521
|
+
g_mount_eject
|
522
|
+
g_mount_eject_finish
|
523
|
+
g_mount_eject_with_operation
|
524
|
+
g_mount_eject_with_operation_finish
|
525
|
+
g_mount_get_default_location
|
526
|
+
g_mount_get_drive
|
527
|
+
g_mount_get_icon
|
528
|
+
g_mount_get_name
|
529
|
+
g_mount_get_root
|
530
|
+
g_mount_get_type
|
531
|
+
g_mount_get_uuid
|
532
|
+
g_mount_get_volume
|
533
|
+
g_mount_guess_content_type
|
534
|
+
g_mount_guess_content_type_finish
|
535
|
+
g_mount_guess_content_type_sync
|
536
|
+
g_mount_is_shadowed
|
537
|
+
g_mount_mount_flags_get_type
|
538
|
+
g_mount_operation_get_anonymous
|
539
|
+
g_mount_operation_get_choice
|
540
|
+
g_mount_operation_get_domain
|
541
|
+
g_mount_operation_get_password
|
542
|
+
g_mount_operation_get_password_save
|
543
|
+
g_mount_operation_get_type
|
544
|
+
g_mount_operation_get_username
|
545
|
+
g_mount_operation_new
|
546
|
+
g_mount_operation_reply
|
547
|
+
g_mount_operation_result_get_type
|
548
|
+
g_mount_operation_set_anonymous
|
549
|
+
g_mount_operation_set_choice
|
550
|
+
g_mount_operation_set_domain
|
551
|
+
g_mount_operation_set_password
|
552
|
+
g_mount_operation_set_password_save
|
553
|
+
g_mount_operation_set_username
|
554
|
+
g_mount_remount
|
555
|
+
g_mount_remount_finish
|
556
|
+
g_mount_shadow
|
557
|
+
g_mount_unmount
|
558
|
+
g_mount_unmount_finish
|
559
|
+
g_mount_unmount_flags_get_type
|
560
|
+
g_mount_unmount_with_operation
|
561
|
+
g_mount_unmount_with_operation_finish
|
562
|
+
g_mount_unshadow
|
563
|
+
g_native_volume_monitor_get_type
|
564
|
+
g_network_address_get_hostname
|
565
|
+
g_network_address_get_port
|
566
|
+
g_network_address_get_type
|
567
|
+
g_network_address_new
|
568
|
+
g_network_address_parse
|
569
|
+
g_network_service_get_domain
|
570
|
+
g_network_service_get_protocol
|
571
|
+
g_network_service_get_service
|
572
|
+
g_network_service_get_type
|
573
|
+
g_network_service_new
|
574
|
+
g_output_stream_clear_pending
|
575
|
+
g_output_stream_close
|
576
|
+
g_output_stream_close_async
|
577
|
+
g_output_stream_close_finish
|
578
|
+
g_output_stream_flush
|
579
|
+
g_output_stream_flush_async
|
580
|
+
g_output_stream_flush_finish
|
581
|
+
g_output_stream_get_type
|
582
|
+
g_output_stream_has_pending
|
583
|
+
g_output_stream_is_closed
|
584
|
+
g_output_stream_is_closing
|
585
|
+
g_output_stream_set_pending
|
586
|
+
g_output_stream_splice
|
587
|
+
g_output_stream_splice_async
|
588
|
+
g_output_stream_splice_finish
|
589
|
+
g_output_stream_splice_flags_get_type
|
590
|
+
g_output_stream_write
|
591
|
+
g_output_stream_write_all
|
592
|
+
g_output_stream_write_async
|
593
|
+
g_output_stream_write_finish
|
594
|
+
g_password_save_get_type
|
595
|
+
g_resolver_error_get_type
|
596
|
+
g_resolver_error_quark
|
597
|
+
g_resolver_free_addresses
|
598
|
+
g_resolver_free_targets
|
599
|
+
g_resolver_get_default
|
600
|
+
g_resolver_get_type
|
601
|
+
g_resolver_lookup_by_address
|
602
|
+
g_resolver_lookup_by_address_async
|
603
|
+
g_resolver_lookup_by_address_finish
|
604
|
+
g_resolver_lookup_by_name
|
605
|
+
g_resolver_lookup_by_name_async
|
606
|
+
g_resolver_lookup_by_name_finish
|
607
|
+
g_resolver_lookup_service
|
608
|
+
g_resolver_lookup_service_async
|
609
|
+
g_resolver_lookup_service_finish
|
610
|
+
g_resolver_set_default
|
611
|
+
g_seekable_can_seek
|
612
|
+
g_seekable_can_truncate
|
613
|
+
g_seekable_get_type
|
614
|
+
g_seekable_seek
|
615
|
+
g_seekable_tell
|
616
|
+
g_seekable_truncate
|
617
|
+
g_simple_async_report_error_in_idle
|
618
|
+
g_simple_async_report_gerror_in_idle
|
619
|
+
g_simple_async_result_complete
|
620
|
+
g_simple_async_result_complete_in_idle
|
621
|
+
g_simple_async_result_get_op_res_gboolean
|
622
|
+
g_simple_async_result_get_op_res_gpointer
|
623
|
+
g_simple_async_result_get_op_res_gssize
|
624
|
+
g_simple_async_result_get_source_tag
|
625
|
+
g_simple_async_result_get_type
|
626
|
+
g_simple_async_result_is_valid
|
627
|
+
g_simple_async_result_new
|
628
|
+
g_simple_async_result_new_error
|
629
|
+
g_simple_async_result_new_from_error
|
630
|
+
g_simple_async_result_propagate_error
|
631
|
+
g_simple_async_result_run_in_thread
|
632
|
+
g_simple_async_result_set_error
|
633
|
+
g_simple_async_result_set_error_va
|
634
|
+
g_simple_async_result_set_from_error
|
635
|
+
g_simple_async_result_set_handle_cancellation
|
636
|
+
g_simple_async_result_set_op_res_gboolean
|
637
|
+
g_simple_async_result_set_op_res_gpointer
|
638
|
+
g_simple_async_result_set_op_res_gssize
|
639
|
+
g_socket_accept
|
640
|
+
g_socket_address_enumerator_get_type
|
641
|
+
g_socket_address_enumerator_next
|
642
|
+
g_socket_address_enumerator_next_async
|
643
|
+
g_socket_address_enumerator_next_finish
|
644
|
+
g_socket_address_get_family
|
645
|
+
g_socket_address_get_native_size
|
646
|
+
g_socket_address_get_type
|
647
|
+
g_socket_address_new_from_native
|
648
|
+
g_socket_address_to_native
|
649
|
+
g_socket_bind
|
650
|
+
g_socket_check_connect_result
|
651
|
+
g_socket_client_connect
|
652
|
+
g_socket_client_connect_async
|
653
|
+
g_socket_client_connect_finish
|
654
|
+
g_socket_client_connect_to_host
|
655
|
+
g_socket_client_connect_to_host_async
|
656
|
+
g_socket_client_connect_to_host_finish
|
657
|
+
g_socket_client_connect_to_service
|
658
|
+
g_socket_client_connect_to_service_async
|
659
|
+
g_socket_client_connect_to_service_finish
|
660
|
+
g_socket_client_get_family
|
661
|
+
g_socket_client_get_local_address
|
662
|
+
g_socket_client_get_protocol
|
663
|
+
g_socket_client_get_socket_type
|
664
|
+
g_socket_client_get_type
|
665
|
+
g_socket_client_new
|
666
|
+
g_socket_client_set_family
|
667
|
+
g_socket_client_set_local_address
|
668
|
+
g_socket_client_set_protocol
|
669
|
+
g_socket_client_set_socket_type
|
670
|
+
g_socket_close
|
671
|
+
g_socket_condition_check
|
672
|
+
g_socket_condition_wait
|
673
|
+
g_socket_connect
|
674
|
+
g_socket_connectable_enumerate
|
675
|
+
g_socket_connectable_get_type
|
676
|
+
g_socket_connection_factory_create_connection
|
677
|
+
g_socket_connection_factory_lookup_type
|
678
|
+
g_socket_connection_factory_register_type
|
679
|
+
g_socket_connection_get_local_address
|
680
|
+
g_socket_connection_get_remote_address
|
681
|
+
g_socket_connection_get_socket
|
682
|
+
g_socket_connection_get_type
|
683
|
+
g_socket_control_message_deserialize
|
684
|
+
g_socket_control_message_get_level
|
685
|
+
g_socket_control_message_get_msg_type
|
686
|
+
g_socket_control_message_get_size
|
687
|
+
g_socket_control_message_get_type
|
688
|
+
g_socket_control_message_serialize
|
689
|
+
g_socket_create_source
|
690
|
+
g_socket_family_get_type
|
691
|
+
g_socket_get_blocking
|
692
|
+
g_socket_get_family
|
693
|
+
g_socket_get_fd
|
694
|
+
g_socket_get_keepalive
|
695
|
+
g_socket_get_listen_backlog
|
696
|
+
g_socket_get_local_address
|
697
|
+
g_socket_get_protocol
|
698
|
+
g_socket_get_remote_address
|
699
|
+
g_socket_get_socket_type
|
700
|
+
g_socket_get_type
|
701
|
+
g_socket_is_closed
|
702
|
+
g_socket_is_connected
|
703
|
+
g_socket_listen
|
704
|
+
g_socket_listener_accept
|
705
|
+
g_socket_listener_accept_async
|
706
|
+
g_socket_listener_accept_finish
|
707
|
+
g_socket_listener_accept_socket
|
708
|
+
g_socket_listener_accept_socket_async
|
709
|
+
g_socket_listener_accept_socket_finish
|
710
|
+
g_socket_listener_add_address
|
711
|
+
g_socket_listener_add_any_inet_port
|
712
|
+
g_socket_listener_add_inet_port
|
713
|
+
g_socket_listener_add_socket
|
714
|
+
g_socket_listener_close
|
715
|
+
g_socket_listener_get_type
|
716
|
+
g_socket_listener_new
|
717
|
+
g_socket_listener_set_backlog
|
718
|
+
g_socket_msg_flags_get_type
|
719
|
+
g_socket_new
|
720
|
+
g_socket_new_from_fd
|
721
|
+
g_socket_protocol_get_type
|
722
|
+
g_socket_receive
|
723
|
+
g_socket_receive_from
|
724
|
+
g_socket_receive_message
|
725
|
+
g_socket_send
|
726
|
+
g_socket_send_message
|
727
|
+
g_socket_send_to
|
728
|
+
g_socket_service_get_type
|
729
|
+
g_socket_service_is_active
|
730
|
+
g_socket_service_new
|
731
|
+
g_socket_service_start
|
732
|
+
g_socket_service_stop
|
733
|
+
g_socket_set_blocking
|
734
|
+
g_socket_set_keepalive
|
735
|
+
g_socket_set_listen_backlog
|
736
|
+
g_socket_shutdown
|
737
|
+
g_socket_speaks_ipv4
|
738
|
+
g_socket_type_get_type
|
739
|
+
g_srv_target_copy
|
740
|
+
g_srv_target_free
|
741
|
+
g_srv_target_get_hostname
|
742
|
+
g_srv_target_get_port
|
743
|
+
g_srv_target_get_priority
|
744
|
+
g_srv_target_get_type
|
745
|
+
g_srv_target_get_weight
|
746
|
+
g_srv_target_list_sort
|
747
|
+
g_srv_target_new
|
748
|
+
g_tcp_connection_get_graceful_disconnect
|
749
|
+
g_tcp_connection_get_type
|
750
|
+
g_tcp_connection_set_graceful_disconnect
|
751
|
+
g_themed_icon_append_name
|
752
|
+
g_themed_icon_get_names
|
753
|
+
g_themed_icon_get_type
|
754
|
+
g_themed_icon_new
|
755
|
+
g_themed_icon_new_from_names
|
756
|
+
g_themed_icon_new_with_default_fallbacks
|
757
|
+
g_themed_icon_prepend_name
|
758
|
+
g_threaded_resolver_get_type
|
759
|
+
g_threaded_socket_service_get_type
|
760
|
+
g_threaded_socket_service_new
|
761
|
+
g_vfs_get_default
|
762
|
+
g_vfs_get_file_for_path
|
763
|
+
g_vfs_get_file_for_uri
|
764
|
+
g_vfs_get_local
|
765
|
+
g_vfs_get_supported_uri_schemes
|
766
|
+
g_vfs_get_type
|
767
|
+
g_vfs_is_active
|
768
|
+
g_vfs_parse_name
|
769
|
+
g_volume_can_eject
|
770
|
+
g_volume_can_mount
|
771
|
+
g_volume_eject
|
772
|
+
g_volume_eject_finish
|
773
|
+
g_volume_eject_with_operation
|
774
|
+
g_volume_eject_with_operation_finish
|
775
|
+
g_volume_enumerate_identifiers
|
776
|
+
g_volume_get_activation_root
|
777
|
+
g_volume_get_drive
|
778
|
+
g_volume_get_icon
|
779
|
+
g_volume_get_identifier
|
780
|
+
g_volume_get_mount
|
781
|
+
g_volume_get_name
|
782
|
+
g_volume_get_type
|
783
|
+
g_volume_get_uuid
|
784
|
+
g_volume_monitor_adopt_orphan_mount
|
785
|
+
g_volume_monitor_get
|
786
|
+
g_volume_monitor_get_connected_drives
|
787
|
+
g_volume_monitor_get_mount_for_uuid
|
788
|
+
g_volume_monitor_get_mounts
|
789
|
+
g_volume_monitor_get_type
|
790
|
+
g_volume_monitor_get_volume_for_uuid
|
791
|
+
g_volume_monitor_get_volumes
|
792
|
+
g_volume_mount
|
793
|
+
g_volume_mount_finish
|
794
|
+
g_volume_should_automount
|
795
|
+
g_win32_resolver_get_type
|
796
|
+
g_zlib_compressor_format_get_type
|
797
|
+
g_zlib_compressor_get_type
|
798
|
+
g_zlib_compressor_new
|
799
|
+
g_zlib_decompressor_get_type
|
800
|
+
g_zlib_decompressor_new
|