atk 0.90.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (849) hide show
  1. data/ChangeLog +241 -0
  2. data/README +30 -0
  3. data/Rakefile +74 -0
  4. data/ext/atk/Makefile +160 -0
  5. data/ext/atk/atk.def +2 -0
  6. data/ext/atk/depend +8 -0
  7. data/ext/atk/extconf.rb +60 -0
  8. data/ext/atk/makeinits.rb +39 -0
  9. data/ext/atk/rbatk.c +27 -0
  10. data/ext/atk/rbatk.h +36 -0
  11. data/ext/atk/rbatkaction.c +81 -0
  12. data/ext/atk/rbatkcomponent.c +184 -0
  13. data/ext/atk/rbatkdocument.c +95 -0
  14. data/ext/atk/rbatkeditabletext.c +102 -0
  15. data/ext/atk/rbatkgobjectaccessible.c +37 -0
  16. data/ext/atk/rbatkhyperlink.c +92 -0
  17. data/ext/atk/rbatkhypertext.c +44 -0
  18. data/ext/atk/rbatkimage.c +62 -0
  19. data/ext/atk/rbatkimplementor.c +27 -0
  20. data/ext/atk/rbatkinits.c +55 -0
  21. data/ext/atk/rbatknoopobject.c +30 -0
  22. data/ext/atk/rbatknoopobjectfactory.c +30 -0
  23. data/ext/atk/rbatkobject.c +178 -0
  24. data/ext/atk/rbatkobjectfactory.c +44 -0
  25. data/ext/atk/rbatkregistry.c +55 -0
  26. data/ext/atk/rbatkrelation.c +104 -0
  27. data/ext/atk/rbatkrelationset.c +94 -0
  28. data/ext/atk/rbatkselection.c +82 -0
  29. data/ext/atk/rbatkstate.c +41 -0
  30. data/ext/atk/rbatkstateset.c +143 -0
  31. data/ext/atk/rbatkstreamablecontent.c +50 -0
  32. data/ext/atk/rbatktable.c +292 -0
  33. data/ext/atk/rbatktext.c +364 -0
  34. data/ext/atk/rbatktextrange.c +91 -0
  35. data/ext/atk/rbatktextrectangle.c +156 -0
  36. data/ext/atk/rbatkutil.c +125 -0
  37. data/ext/atk/rbatkvalue.c +74 -0
  38. data/ext/atk/rbatkversion.h +24 -0
  39. data/extconf.rb +49 -0
  40. data/lib/1.8/atk.so +0 -0
  41. data/lib/1.9/atk.so +0 -0
  42. data/lib/atk.rb +12 -0
  43. data/vendor/local/bin/envsubst.exe +0 -0
  44. data/vendor/local/bin/gettext.exe +0 -0
  45. data/vendor/local/bin/gettext.sh +123 -0
  46. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  47. data/vendor/local/bin/glib-gettextize +188 -0
  48. data/vendor/local/bin/glib-mkenums +511 -0
  49. data/vendor/local/bin/gobject-query.exe +0 -0
  50. data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
  51. data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
  52. data/vendor/local/bin/intl.dll +0 -0
  53. data/vendor/local/bin/libasprintf-0.dll +0 -0
  54. data/vendor/local/bin/libatk-1.0-0.dll +0 -0
  55. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  56. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  57. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  58. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  59. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  60. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  61. data/vendor/local/bin/ngettext.exe +0 -0
  62. data/vendor/local/include/atk-1.0/atk/atk-enum-types.h +45 -0
  63. data/vendor/local/include/atk-1.0/atk/atk.h +56 -0
  64. data/vendor/local/include/atk-1.0/atk/atkaction.h +111 -0
  65. data/vendor/local/include/atk-1.0/atk/atkcomponent.h +171 -0
  66. data/vendor/local/include/atk-1.0/atk/atkdocument.h +83 -0
  67. data/vendor/local/include/atk-1.0/atk/atkeditabletext.h +104 -0
  68. data/vendor/local/include/atk-1.0/atk/atkgobjectaccessible.h +65 -0
  69. data/vendor/local/include/atk-1.0/atk/atkhyperlink.h +106 -0
  70. data/vendor/local/include/atk-1.0/atk/atkhyperlinkimpl.h +75 -0
  71. data/vendor/local/include/atk-1.0/atk/atkhypertext.h +78 -0
  72. data/vendor/local/include/atk-1.0/atk/atkimage.h +87 -0
  73. data/vendor/local/include/atk-1.0/atk/atkmisc.h +89 -0
  74. data/vendor/local/include/atk-1.0/atk/atknoopobject.h +55 -0
  75. data/vendor/local/include/atk-1.0/atk/atknoopobjectfactory.h +57 -0
  76. data/vendor/local/include/atk-1.0/atk/atkobject.h +649 -0
  77. data/vendor/local/include/atk-1.0/atk/atkobjectfactory.h +67 -0
  78. data/vendor/local/include/atk-1.0/atk/atkplug.h +61 -0
  79. data/vendor/local/include/atk-1.0/atk/atkregistry.h +69 -0
  80. data/vendor/local/include/atk-1.0/atk/atkrelation.h +89 -0
  81. data/vendor/local/include/atk-1.0/atk/atkrelationset.h +78 -0
  82. data/vendor/local/include/atk-1.0/atk/atkrelationtype.h +83 -0
  83. data/vendor/local/include/atk-1.0/atk/atkselection.h +95 -0
  84. data/vendor/local/include/atk-1.0/atk/atksocket.h +65 -0
  85. data/vendor/local/include/atk-1.0/atk/atkstate.h +178 -0
  86. data/vendor/local/include/atk-1.0/atk/atkstateset.h +80 -0
  87. data/vendor/local/include/atk-1.0/atk/atkstreamablecontent.h +105 -0
  88. data/vendor/local/include/atk-1.0/atk/atktable.h +217 -0
  89. data/vendor/local/include/atk-1.0/atk/atktext.h +365 -0
  90. data/vendor/local/include/atk-1.0/atk/atkutil.h +313 -0
  91. data/vendor/local/include/atk-1.0/atk/atkvalue.h +93 -0
  92. data/vendor/local/include/autosprintf.h +66 -0
  93. data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
  94. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
  95. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
  96. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
  97. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
  98. data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
  99. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
  100. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
  101. data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
  102. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  103. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  104. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
  105. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
  106. data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
  107. data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
  108. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
  109. data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
  110. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
  111. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
  112. data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
  113. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
  114. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
  115. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
  116. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
  117. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
  118. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
  119. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
  120. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
  121. data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
  122. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
  123. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
  124. data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
  125. data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
  126. data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
  127. data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
  128. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
  129. data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
  130. data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
  131. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
  132. data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
  133. data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
  134. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
  135. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
  136. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
  137. data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
  138. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
  139. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
  140. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
  141. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
  142. data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
  143. data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
  144. data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
  145. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
  146. data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
  147. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
  148. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
  149. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
  150. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
  151. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
  152. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
  153. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
  154. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
  155. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
  156. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
  157. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
  158. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  159. data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
  160. data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
  161. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
  162. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
  163. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
  164. data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
  165. data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
  166. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
  167. data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
  168. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
  169. data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
  170. data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
  171. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
  172. data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
  173. data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
  174. data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
  175. data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
  176. data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
  177. data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
  178. data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
  179. data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
  180. data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
  181. data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
  182. data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
  183. data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
  184. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
  185. data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
  186. data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
  187. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
  188. data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
  189. data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
  190. data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
  191. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
  192. data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
  193. data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
  194. data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
  195. data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
  196. data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
  197. data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
  198. data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
  199. data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
  200. data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
  201. data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
  202. data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
  203. data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
  204. data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
  205. data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
  206. data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
  207. data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
  208. data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
  209. data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
  210. data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
  211. data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
  212. data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
  213. data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
  214. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
  215. data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
  216. data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
  217. data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
  218. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
  219. data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
  220. data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
  221. data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
  222. data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
  223. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
  224. data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
  225. data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
  226. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
  227. data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
  228. data/vendor/local/include/glib-2.0/glib-object.h +41 -0
  229. data/vendor/local/include/glib-2.0/glib.h +97 -0
  230. data/vendor/local/include/glib-2.0/gmodule.h +101 -0
  231. data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
  232. data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
  233. data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
  234. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
  235. data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
  236. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
  237. data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
  238. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
  239. data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
  240. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
  241. data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
  242. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
  243. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  244. data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
  245. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
  246. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
  247. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
  248. data/vendor/local/include/libintl.h +464 -0
  249. data/vendor/local/lib/GNU.Gettext.dll +0 -0
  250. data/vendor/local/lib/atk-1.0.def +237 -0
  251. data/vendor/local/lib/atk-1.0.lib +0 -0
  252. data/vendor/local/lib/gio-2.0.def +800 -0
  253. data/vendor/local/lib/gio-2.0.lib +0 -0
  254. data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
  255. data/vendor/local/lib/glib-2.0.def +1381 -0
  256. data/vendor/local/lib/glib-2.0.lib +0 -0
  257. data/vendor/local/lib/gmodule-2.0.def +11 -0
  258. data/vendor/local/lib/gmodule-2.0.lib +0 -0
  259. data/vendor/local/lib/gobject-2.0.def +349 -0
  260. data/vendor/local/lib/gobject-2.0.lib +0 -0
  261. data/vendor/local/lib/gthread-2.0.def +3 -0
  262. data/vendor/local/lib/gthread-2.0.lib +0 -0
  263. data/vendor/local/lib/intl.lib +0 -0
  264. data/vendor/local/lib/libasprintf.dll.a +0 -0
  265. data/vendor/local/lib/libatk-1.0.dll.a +0 -0
  266. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  267. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  268. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  269. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  270. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  271. data/vendor/local/lib/libintl.def +31 -0
  272. data/vendor/local/lib/libintl.dll.a +0 -0
  273. data/vendor/local/lib/pkgconfig/atk.pc +11 -0
  274. data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
  275. data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
  276. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  277. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  278. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
  279. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  280. data/vendor/local/manifest/atk-dev_1.30.0-2_win32.mft +37 -0
  281. data/vendor/local/manifest/atk_1.30.0-2_win32.mft +93 -0
  282. data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
  283. data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
  284. data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
  285. data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
  286. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  287. data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
  288. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
  289. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
  290. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  291. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  292. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  293. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  294. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  295. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  296. data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
  297. data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
  298. data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
  299. data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
  300. data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
  301. data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
  302. data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
  303. data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
  304. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  305. data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
  306. data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
  307. data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
  308. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
  309. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
  310. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
  311. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
  312. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
  313. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
  314. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
  315. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
  316. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
  317. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
  318. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
  319. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
  320. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
  321. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
  322. data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
  323. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
  324. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
  325. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
  326. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
  327. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
  328. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
  329. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
  330. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
  331. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
  332. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
  333. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
  334. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
  335. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
  336. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
  337. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
  338. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
  339. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
  340. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
  341. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
  342. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
  343. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
  344. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
  345. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
  346. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
  347. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
  348. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
  349. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
  350. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
  351. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
  352. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
  353. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
  354. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
  355. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
  356. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
  357. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
  358. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
  359. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
  360. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
  361. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
  362. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
  363. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
  364. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
  365. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
  366. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
  367. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
  368. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
  369. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
  370. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
  371. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
  372. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
  373. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
  374. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
  375. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
  376. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
  377. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
  378. data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
  379. data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
  380. data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
  381. data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
  382. data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
  383. data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
  384. data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
  385. data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
  386. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  387. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
  388. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  389. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  390. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  391. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  392. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
  393. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
  394. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
  395. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
  396. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
  397. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
  398. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
  399. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
  400. data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
  401. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
  402. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
  403. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
  404. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
  405. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  406. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
  407. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  408. data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
  409. data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
  410. data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
  411. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  412. data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
  413. data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
  414. data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
  415. data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
  416. data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
  417. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  418. data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
  419. data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
  420. data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
  421. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  422. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  423. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  424. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
  425. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
  426. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
  427. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
  428. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
  429. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
  430. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
  431. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
  432. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
  433. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
  434. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
  435. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
  436. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
  437. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
  438. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  439. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
  440. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
  441. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
  442. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
  443. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
  444. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
  445. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
  446. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
  447. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
  448. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
  449. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
  450. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
  451. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
  452. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
  453. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
  454. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
  455. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
  456. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
  457. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
  458. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
  459. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
  460. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
  461. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
  462. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
  463. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
  464. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
  465. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
  466. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
  467. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
  468. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
  469. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
  470. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
  471. data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
  472. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
  473. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
  474. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
  475. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
  476. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
  477. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
  478. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
  479. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
  480. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
  481. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
  482. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
  483. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
  484. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
  485. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
  486. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
  487. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
  488. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
  489. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
  490. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
  491. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
  492. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
  493. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
  494. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
  495. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
  496. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
  497. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
  498. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
  499. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
  500. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
  501. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
  502. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
  503. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
  504. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
  505. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
  506. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
  507. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  508. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
  509. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
  510. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
  511. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
  512. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
  513. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
  514. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
  515. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
  516. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
  517. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
  518. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
  519. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
  520. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
  521. data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
  522. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
  523. data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
  524. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
  525. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  526. data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
  527. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
  528. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  530. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
  532. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  533. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  534. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
  535. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
  536. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
  537. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
  538. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
  539. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
  540. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
  541. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
  542. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
  543. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
  544. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
  545. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
  546. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
  547. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
  548. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  549. data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
  550. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
  551. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  552. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  553. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  554. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
  555. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
  556. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  557. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
  558. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
  559. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
  560. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
  561. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
  562. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
  563. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
  564. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
  565. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
  566. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
  567. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
  568. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  569. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
  570. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
  571. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
  572. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
  573. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
  574. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
  575. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
  576. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  577. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  578. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
  579. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
  580. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
  581. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
  582. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
  583. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
  584. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
  585. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
  586. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
  587. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  588. data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
  589. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
  590. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  591. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  592. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  593. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
  594. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  595. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  596. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
  597. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  598. data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
  599. data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
  600. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  601. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  602. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  603. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
  604. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  605. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  606. data/vendor/local/share/locale/af/LC_MESSAGES/atk10.mo +0 -0
  607. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  608. data/vendor/local/share/locale/am/LC_MESSAGES/atk10.mo +0 -0
  609. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  610. data/vendor/local/share/locale/ar/LC_MESSAGES/atk10.mo +0 -0
  611. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  612. data/vendor/local/share/locale/as/LC_MESSAGES/atk10.mo +0 -0
  613. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  614. data/vendor/local/share/locale/ast/LC_MESSAGES/atk10.mo +0 -0
  615. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  616. data/vendor/local/share/locale/az/LC_MESSAGES/atk10.mo +0 -0
  617. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  618. data/vendor/local/share/locale/be/LC_MESSAGES/atk10.mo +0 -0
  619. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  620. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  621. data/vendor/local/share/locale/be@latin/LC_MESSAGES/atk10.mo +0 -0
  622. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  623. data/vendor/local/share/locale/bg/LC_MESSAGES/atk10.mo +0 -0
  624. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  625. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  626. data/vendor/local/share/locale/bn/LC_MESSAGES/atk10.mo +0 -0
  627. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  628. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/atk10.mo +0 -0
  629. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  630. data/vendor/local/share/locale/bs/LC_MESSAGES/atk10.mo +0 -0
  631. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  632. data/vendor/local/share/locale/ca/LC_MESSAGES/atk10.mo +0 -0
  633. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  634. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  635. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +0 -0
  636. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  637. data/vendor/local/share/locale/cs/LC_MESSAGES/atk10.mo +0 -0
  638. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  639. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  640. data/vendor/local/share/locale/cy/LC_MESSAGES/atk10.mo +0 -0
  641. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  642. data/vendor/local/share/locale/da/LC_MESSAGES/atk10.mo +0 -0
  643. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  644. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  645. data/vendor/local/share/locale/de/LC_MESSAGES/atk10.mo +0 -0
  646. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  647. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  648. data/vendor/local/share/locale/dz/LC_MESSAGES/atk10.mo +0 -0
  649. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  650. data/vendor/local/share/locale/el/LC_MESSAGES/atk10.mo +0 -0
  651. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  652. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  653. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  654. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  655. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/atk10.mo +0 -0
  656. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  657. data/vendor/local/share/locale/en_CA/LC_MESSAGES/atk10.mo +0 -0
  658. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  659. data/vendor/local/share/locale/en_GB/LC_MESSAGES/atk10.mo +0 -0
  660. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  661. data/vendor/local/share/locale/eo/LC_MESSAGES/atk10.mo +0 -0
  662. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  663. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  664. data/vendor/local/share/locale/es/LC_MESSAGES/atk10.mo +0 -0
  665. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  666. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  667. data/vendor/local/share/locale/et/LC_MESSAGES/atk10.mo +0 -0
  668. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  669. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  670. data/vendor/local/share/locale/eu/LC_MESSAGES/atk10.mo +0 -0
  671. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  672. data/vendor/local/share/locale/fa/LC_MESSAGES/atk10.mo +0 -0
  673. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  674. data/vendor/local/share/locale/fi/LC_MESSAGES/atk10.mo +0 -0
  675. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  676. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  677. data/vendor/local/share/locale/fr/LC_MESSAGES/atk10.mo +0 -0
  678. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  679. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  680. data/vendor/local/share/locale/ga/LC_MESSAGES/atk10.mo +0 -0
  681. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  682. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  683. data/vendor/local/share/locale/gl/LC_MESSAGES/atk10.mo +0 -0
  684. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  685. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  686. data/vendor/local/share/locale/gu/LC_MESSAGES/atk10.mo +0 -0
  687. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  688. data/vendor/local/share/locale/he/LC_MESSAGES/atk10.mo +0 -0
  689. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  690. data/vendor/local/share/locale/hi/LC_MESSAGES/atk10.mo +0 -0
  691. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  692. data/vendor/local/share/locale/hr/LC_MESSAGES/atk10.mo +0 -0
  693. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  694. data/vendor/local/share/locale/hu/LC_MESSAGES/atk10.mo +0 -0
  695. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  696. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  697. data/vendor/local/share/locale/id/LC_MESSAGES/atk10.mo +0 -0
  698. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  699. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  700. data/vendor/local/share/locale/is/LC_MESSAGES/atk10.mo +0 -0
  701. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  702. data/vendor/local/share/locale/it/LC_MESSAGES/atk10.mo +0 -0
  703. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  704. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  705. data/vendor/local/share/locale/ja/LC_MESSAGES/atk10.mo +0 -0
  706. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  707. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  708. data/vendor/local/share/locale/ka/LC_MESSAGES/atk10.mo +0 -0
  709. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  710. data/vendor/local/share/locale/kn/LC_MESSAGES/atk10.mo +0 -0
  711. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  712. data/vendor/local/share/locale/ko/LC_MESSAGES/atk10.mo +0 -0
  713. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  714. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  715. data/vendor/local/share/locale/ku/LC_MESSAGES/atk10.mo +0 -0
  716. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  717. data/vendor/local/share/locale/li/LC_MESSAGES/atk10.mo +0 -0
  718. data/vendor/local/share/locale/locale.alias +77 -0
  719. data/vendor/local/share/locale/lt/LC_MESSAGES/atk10.mo +0 -0
  720. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  721. data/vendor/local/share/locale/lv/LC_MESSAGES/atk10.mo +0 -0
  722. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  723. data/vendor/local/share/locale/mai/LC_MESSAGES/atk10.mo +0 -0
  724. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  725. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  726. data/vendor/local/share/locale/mk/LC_MESSAGES/atk10.mo +0 -0
  727. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  728. data/vendor/local/share/locale/ml/LC_MESSAGES/atk10.mo +0 -0
  729. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  730. data/vendor/local/share/locale/mn/LC_MESSAGES/atk10.mo +0 -0
  731. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  732. data/vendor/local/share/locale/mr/LC_MESSAGES/atk10.mo +0 -0
  733. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  734. data/vendor/local/share/locale/ms/LC_MESSAGES/atk10.mo +0 -0
  735. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  736. data/vendor/local/share/locale/nb/LC_MESSAGES/atk10.mo +0 -0
  737. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  738. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  739. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  740. data/vendor/local/share/locale/ne/LC_MESSAGES/atk10.mo +0 -0
  741. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  742. data/vendor/local/share/locale/nl/LC_MESSAGES/atk10.mo +0 -0
  743. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  744. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  745. data/vendor/local/share/locale/nn/LC_MESSAGES/atk10.mo +0 -0
  746. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  747. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  748. data/vendor/local/share/locale/oc/LC_MESSAGES/atk10.mo +0 -0
  749. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  750. data/vendor/local/share/locale/or/LC_MESSAGES/atk10.mo +0 -0
  751. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  752. data/vendor/local/share/locale/pa/LC_MESSAGES/atk10.mo +0 -0
  753. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  754. data/vendor/local/share/locale/pl/LC_MESSAGES/atk10.mo +0 -0
  755. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  756. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  757. data/vendor/local/share/locale/ps/LC_MESSAGES/atk10.mo +0 -0
  758. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  759. data/vendor/local/share/locale/pt/LC_MESSAGES/atk10.mo +0 -0
  760. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  761. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  762. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/atk10.mo +0 -0
  763. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  764. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  765. data/vendor/local/share/locale/ro/LC_MESSAGES/atk10.mo +0 -0
  766. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  767. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  768. data/vendor/local/share/locale/ru/LC_MESSAGES/atk10.mo +0 -0
  769. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  770. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  771. data/vendor/local/share/locale/rw/LC_MESSAGES/atk10.mo +0 -0
  772. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  773. data/vendor/local/share/locale/si/LC_MESSAGES/atk10.mo +0 -0
  774. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  775. data/vendor/local/share/locale/sk/LC_MESSAGES/atk10.mo +0 -0
  776. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  777. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  778. data/vendor/local/share/locale/sl/LC_MESSAGES/atk10.mo +0 -0
  779. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  780. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  781. data/vendor/local/share/locale/sq/LC_MESSAGES/atk10.mo +0 -0
  782. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  783. data/vendor/local/share/locale/sr/LC_MESSAGES/atk10.mo +0 -0
  784. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  785. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  786. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/atk10.mo +0 -0
  787. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  788. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/atk10.mo +0 -0
  789. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  790. data/vendor/local/share/locale/sv/LC_MESSAGES/atk10.mo +0 -0
  791. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  792. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  793. data/vendor/local/share/locale/ta/LC_MESSAGES/atk10.mo +0 -0
  794. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  795. data/vendor/local/share/locale/te/LC_MESSAGES/atk10.mo +0 -0
  796. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  797. data/vendor/local/share/locale/th/LC_MESSAGES/atk10.mo +0 -0
  798. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  799. data/vendor/local/share/locale/tk/LC_MESSAGES/atk10.mo +0 -0
  800. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  801. data/vendor/local/share/locale/tr/LC_MESSAGES/atk10.mo +0 -0
  802. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  803. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  804. data/vendor/local/share/locale/tt/LC_MESSAGES/atk10.mo +0 -0
  805. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  806. data/vendor/local/share/locale/ug/LC_MESSAGES/atk10.mo +0 -0
  807. data/vendor/local/share/locale/uk/LC_MESSAGES/atk10.mo +0 -0
  808. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  809. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  810. data/vendor/local/share/locale/vi/LC_MESSAGES/atk10.mo +0 -0
  811. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  812. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  813. data/vendor/local/share/locale/wa/LC_MESSAGES/atk10.mo +0 -0
  814. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  815. data/vendor/local/share/locale/xh/LC_MESSAGES/atk10.mo +0 -0
  816. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  817. data/vendor/local/share/locale/yi/LC_MESSAGES/atk10.mo +0 -0
  818. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  819. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/atk10.mo +0 -0
  820. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  821. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  822. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/atk10.mo +0 -0
  823. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  824. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  825. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/atk10.mo +0 -0
  826. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  827. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  828. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  829. data/vendor/local/share/man/man1/gettext.1 +69 -0
  830. data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
  831. data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
  832. data/vendor/local/share/man/man1/gobject-query.1 +83 -0
  833. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  834. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  835. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  836. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  837. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  838. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  839. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  840. data/vendor/local/share/man/man3/gettext.3 +99 -0
  841. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  842. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  843. data/vendor/local/src/tml/packaging/atk_1.30.0-2_win32.log +739 -0
  844. data/vendor/local/src/tml/packaging/atk_1.30.0-2_win32.sh +51 -0
  845. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
  846. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
  847. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
  848. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
  849. metadata +929 -0
@@ -0,0 +1,1795 @@
1
+ <ANCHOR id="GFile" href="gio/GFile.html">
2
+ <ANCHOR id="GFile.synopsis" href="gio/GFile.html#GFile.synopsis">
3
+ <ANCHOR id="GFile.object-hierarchy" href="gio/GFile.html#GFile.object-hierarchy">
4
+ <ANCHOR id="GFile.prerequisites" href="gio/GFile.html#GFile.prerequisites">
5
+ <ANCHOR id="GFile.description" href="gio/GFile.html#GFile.description">
6
+ <ANCHOR id="GFile.details" href="gio/GFile.html#GFile.details">
7
+ <ANCHOR id="GFile-struct" href="gio/GFile.html#GFile-struct">
8
+ <ANCHOR id="GFileIface" href="gio/GFile.html#GFileIface">
9
+ <ANCHOR id="GFileQueryInfoFlags" href="gio/GFile.html#GFileQueryInfoFlags">
10
+ <ANCHOR id="G-FILE-QUERY-INFO-NONE:CAPS" href="gio/GFile.html#G-FILE-QUERY-INFO-NONE:CAPS">
11
+ <ANCHOR id="G-FILE-QUERY-INFO-NOFOLLOW-SYMLINKS:CAPS" href="gio/GFile.html#G-FILE-QUERY-INFO-NOFOLLOW-SYMLINKS:CAPS">
12
+ <ANCHOR id="GFileCreateFlags" href="gio/GFile.html#GFileCreateFlags">
13
+ <ANCHOR id="G-FILE-CREATE-NONE:CAPS" href="gio/GFile.html#G-FILE-CREATE-NONE:CAPS">
14
+ <ANCHOR id="G-FILE-CREATE-PRIVATE:CAPS" href="gio/GFile.html#G-FILE-CREATE-PRIVATE:CAPS">
15
+ <ANCHOR id="G-FILE-CREATE-REPLACE-DESTINATION:CAPS" href="gio/GFile.html#G-FILE-CREATE-REPLACE-DESTINATION:CAPS">
16
+ <ANCHOR id="GFileCopyFlags" href="gio/GFile.html#GFileCopyFlags">
17
+ <ANCHOR id="G-FILE-COPY-NONE:CAPS" href="gio/GFile.html#G-FILE-COPY-NONE:CAPS">
18
+ <ANCHOR id="G-FILE-COPY-OVERWRITE:CAPS" href="gio/GFile.html#G-FILE-COPY-OVERWRITE:CAPS">
19
+ <ANCHOR id="G-FILE-COPY-BACKUP:CAPS" href="gio/GFile.html#G-FILE-COPY-BACKUP:CAPS">
20
+ <ANCHOR id="G-FILE-COPY-NOFOLLOW-SYMLINKS:CAPS" href="gio/GFile.html#G-FILE-COPY-NOFOLLOW-SYMLINKS:CAPS">
21
+ <ANCHOR id="G-FILE-COPY-ALL-METADATA:CAPS" href="gio/GFile.html#G-FILE-COPY-ALL-METADATA:CAPS">
22
+ <ANCHOR id="G-FILE-COPY-NO-FALLBACK-FOR-MOVE:CAPS" href="gio/GFile.html#G-FILE-COPY-NO-FALLBACK-FOR-MOVE:CAPS">
23
+ <ANCHOR id="G-FILE-COPY-TARGET-DEFAULT-PERMS:CAPS" href="gio/GFile.html#G-FILE-COPY-TARGET-DEFAULT-PERMS:CAPS">
24
+ <ANCHOR id="GFileMonitorFlags" href="gio/GFile.html#GFileMonitorFlags">
25
+ <ANCHOR id="G-FILE-MONITOR-NONE:CAPS" href="gio/GFile.html#G-FILE-MONITOR-NONE:CAPS">
26
+ <ANCHOR id="G-FILE-MONITOR-WATCH-MOUNTS:CAPS" href="gio/GFile.html#G-FILE-MONITOR-WATCH-MOUNTS:CAPS">
27
+ <ANCHOR id="G-FILE-MONITOR-SEND-MOVED:CAPS" href="gio/GFile.html#G-FILE-MONITOR-SEND-MOVED:CAPS">
28
+ <ANCHOR id="GFilesystemPreviewType" href="gio/GFile.html#GFilesystemPreviewType">
29
+ <ANCHOR id="G-FILESYSTEM-PREVIEW-TYPE-IF-ALWAYS:CAPS" href="gio/GFile.html#G-FILESYSTEM-PREVIEW-TYPE-IF-ALWAYS:CAPS">
30
+ <ANCHOR id="G-FILESYSTEM-PREVIEW-TYPE-IF-LOCAL:CAPS" href="gio/GFile.html#G-FILESYSTEM-PREVIEW-TYPE-IF-LOCAL:CAPS">
31
+ <ANCHOR id="G-FILESYSTEM-PREVIEW-TYPE-NEVER:CAPS" href="gio/GFile.html#G-FILESYSTEM-PREVIEW-TYPE-NEVER:CAPS">
32
+ <ANCHOR id="GFileProgressCallback" href="gio/GFile.html#GFileProgressCallback">
33
+ <ANCHOR id="GFileReadMoreCallback" href="gio/GFile.html#GFileReadMoreCallback">
34
+ <ANCHOR id="g-file-new-for-path" href="gio/GFile.html#g-file-new-for-path">
35
+ <ANCHOR id="g-file-new-for-uri" href="gio/GFile.html#g-file-new-for-uri">
36
+ <ANCHOR id="g-file-new-for-commandline-arg" href="gio/GFile.html#g-file-new-for-commandline-arg">
37
+ <ANCHOR id="g-file-parse-name" href="gio/GFile.html#g-file-parse-name">
38
+ <ANCHOR id="g-file-dup" href="gio/GFile.html#g-file-dup">
39
+ <ANCHOR id="g-file-hash" href="gio/GFile.html#g-file-hash">
40
+ <ANCHOR id="g-file-equal" href="gio/GFile.html#g-file-equal">
41
+ <ANCHOR id="g-file-get-basename" href="gio/GFile.html#g-file-get-basename">
42
+ <ANCHOR id="g-file-get-path" href="gio/GFile.html#g-file-get-path">
43
+ <ANCHOR id="g-file-get-uri" href="gio/GFile.html#g-file-get-uri">
44
+ <ANCHOR id="g-file-get-parse-name" href="gio/GFile.html#g-file-get-parse-name">
45
+ <ANCHOR id="g-file-get-parent" href="gio/GFile.html#g-file-get-parent">
46
+ <ANCHOR id="g-file-has-parent" href="gio/GFile.html#g-file-has-parent">
47
+ <ANCHOR id="g-file-get-child" href="gio/GFile.html#g-file-get-child">
48
+ <ANCHOR id="g-file-get-child-for-display-name" href="gio/GFile.html#g-file-get-child-for-display-name">
49
+ <ANCHOR id="g-file-has-prefix" href="gio/GFile.html#g-file-has-prefix">
50
+ <ANCHOR id="g-file-get-relative-path" href="gio/GFile.html#g-file-get-relative-path">
51
+ <ANCHOR id="g-file-resolve-relative-path" href="gio/GFile.html#g-file-resolve-relative-path">
52
+ <ANCHOR id="g-file-is-native" href="gio/GFile.html#g-file-is-native">
53
+ <ANCHOR id="g-file-has-uri-scheme" href="gio/GFile.html#g-file-has-uri-scheme">
54
+ <ANCHOR id="g-file-get-uri-scheme" href="gio/GFile.html#g-file-get-uri-scheme">
55
+ <ANCHOR id="g-file-read" href="gio/GFile.html#g-file-read">
56
+ <ANCHOR id="g-file-read-async" href="gio/GFile.html#g-file-read-async">
57
+ <ANCHOR id="g-file-read-finish" href="gio/GFile.html#g-file-read-finish">
58
+ <ANCHOR id="g-file-append-to" href="gio/GFile.html#g-file-append-to">
59
+ <ANCHOR id="g-file-create" href="gio/GFile.html#g-file-create">
60
+ <ANCHOR id="g-file-replace" href="gio/GFile.html#g-file-replace">
61
+ <ANCHOR id="g-file-append-to-async" href="gio/GFile.html#g-file-append-to-async">
62
+ <ANCHOR id="g-file-append-to-finish" href="gio/GFile.html#g-file-append-to-finish">
63
+ <ANCHOR id="g-file-create-async" href="gio/GFile.html#g-file-create-async">
64
+ <ANCHOR id="g-file-create-finish" href="gio/GFile.html#g-file-create-finish">
65
+ <ANCHOR id="g-file-replace-async" href="gio/GFile.html#g-file-replace-async">
66
+ <ANCHOR id="g-file-replace-finish" href="gio/GFile.html#g-file-replace-finish">
67
+ <ANCHOR id="g-file-query-info" href="gio/GFile.html#g-file-query-info">
68
+ <ANCHOR id="g-file-query-info-async" href="gio/GFile.html#g-file-query-info-async">
69
+ <ANCHOR id="g-file-query-info-finish" href="gio/GFile.html#g-file-query-info-finish">
70
+ <ANCHOR id="g-file-query-exists" href="gio/GFile.html#g-file-query-exists">
71
+ <ANCHOR id="g-file-query-file-type" href="gio/GFile.html#g-file-query-file-type">
72
+ <ANCHOR id="g-file-query-filesystem-info" href="gio/GFile.html#g-file-query-filesystem-info">
73
+ <ANCHOR id="g-file-query-filesystem-info-async" href="gio/GFile.html#g-file-query-filesystem-info-async">
74
+ <ANCHOR id="g-file-query-filesystem-info-finish" href="gio/GFile.html#g-file-query-filesystem-info-finish">
75
+ <ANCHOR id="g-file-query-default-handler" href="gio/GFile.html#g-file-query-default-handler">
76
+ <ANCHOR id="g-file-find-enclosing-mount" href="gio/GFile.html#g-file-find-enclosing-mount">
77
+ <ANCHOR id="g-file-find-enclosing-mount-async" href="gio/GFile.html#g-file-find-enclosing-mount-async">
78
+ <ANCHOR id="g-file-find-enclosing-mount-finish" href="gio/GFile.html#g-file-find-enclosing-mount-finish">
79
+ <ANCHOR id="g-file-enumerate-children" href="gio/GFile.html#g-file-enumerate-children">
80
+ <ANCHOR id="g-file-enumerate-children-async" href="gio/GFile.html#g-file-enumerate-children-async">
81
+ <ANCHOR id="g-file-enumerate-children-finish" href="gio/GFile.html#g-file-enumerate-children-finish">
82
+ <ANCHOR id="g-file-set-display-name" href="gio/GFile.html#g-file-set-display-name">
83
+ <ANCHOR id="g-file-set-display-name-async" href="gio/GFile.html#g-file-set-display-name-async">
84
+ <ANCHOR id="g-file-set-display-name-finish" href="gio/GFile.html#g-file-set-display-name-finish">
85
+ <ANCHOR id="g-file-delete" href="gio/GFile.html#g-file-delete">
86
+ <ANCHOR id="g-file-trash" href="gio/GFile.html#g-file-trash">
87
+ <ANCHOR id="g-file-copy" href="gio/GFile.html#g-file-copy">
88
+ <ANCHOR id="g-file-copy-async" href="gio/GFile.html#g-file-copy-async">
89
+ <ANCHOR id="g-file-copy-finish" href="gio/GFile.html#g-file-copy-finish">
90
+ <ANCHOR id="g-file-move" href="gio/GFile.html#g-file-move">
91
+ <ANCHOR id="g-file-make-directory" href="gio/GFile.html#g-file-make-directory">
92
+ <ANCHOR id="g-file-make-directory-with-parents" href="gio/GFile.html#g-file-make-directory-with-parents">
93
+ <ANCHOR id="g-file-make-symbolic-link" href="gio/GFile.html#g-file-make-symbolic-link">
94
+ <ANCHOR id="g-file-query-settable-attributes" href="gio/GFile.html#g-file-query-settable-attributes">
95
+ <ANCHOR id="g-file-query-writable-namespaces" href="gio/GFile.html#g-file-query-writable-namespaces">
96
+ <ANCHOR id="g-file-set-attribute" href="gio/GFile.html#g-file-set-attribute">
97
+ <ANCHOR id="g-file-set-attributes-from-info" href="gio/GFile.html#g-file-set-attributes-from-info">
98
+ <ANCHOR id="g-file-set-attributes-async" href="gio/GFile.html#g-file-set-attributes-async">
99
+ <ANCHOR id="g-file-set-attributes-finish" href="gio/GFile.html#g-file-set-attributes-finish">
100
+ <ANCHOR id="g-file-set-attribute-string" href="gio/GFile.html#g-file-set-attribute-string">
101
+ <ANCHOR id="g-file-set-attribute-byte-string" href="gio/GFile.html#g-file-set-attribute-byte-string">
102
+ <ANCHOR id="g-file-set-attribute-uint32" href="gio/GFile.html#g-file-set-attribute-uint32">
103
+ <ANCHOR id="g-file-set-attribute-int32" href="gio/GFile.html#g-file-set-attribute-int32">
104
+ <ANCHOR id="g-file-set-attribute-uint64" href="gio/GFile.html#g-file-set-attribute-uint64">
105
+ <ANCHOR id="g-file-set-attribute-int64" href="gio/GFile.html#g-file-set-attribute-int64">
106
+ <ANCHOR id="g-file-mount-mountable" href="gio/GFile.html#g-file-mount-mountable">
107
+ <ANCHOR id="g-file-mount-mountable-finish" href="gio/GFile.html#g-file-mount-mountable-finish">
108
+ <ANCHOR id="g-file-unmount-mountable" href="gio/GFile.html#g-file-unmount-mountable">
109
+ <ANCHOR id="g-file-unmount-mountable-finish" href="gio/GFile.html#g-file-unmount-mountable-finish">
110
+ <ANCHOR id="g-file-unmount-mountable-with-operation" href="gio/GFile.html#g-file-unmount-mountable-with-operation">
111
+ <ANCHOR id="g-file-unmount-mountable-with-operation-finish" href="gio/GFile.html#g-file-unmount-mountable-with-operation-finish">
112
+ <ANCHOR id="g-file-eject-mountable" href="gio/GFile.html#g-file-eject-mountable">
113
+ <ANCHOR id="g-file-eject-mountable-finish" href="gio/GFile.html#g-file-eject-mountable-finish">
114
+ <ANCHOR id="g-file-eject-mountable-with-operation" href="gio/GFile.html#g-file-eject-mountable-with-operation">
115
+ <ANCHOR id="g-file-eject-mountable-with-operation-finish" href="gio/GFile.html#g-file-eject-mountable-with-operation-finish">
116
+ <ANCHOR id="g-file-start-mountable" href="gio/GFile.html#g-file-start-mountable">
117
+ <ANCHOR id="g-file-start-mountable-finish" href="gio/GFile.html#g-file-start-mountable-finish">
118
+ <ANCHOR id="g-file-stop-mountable" href="gio/GFile.html#g-file-stop-mountable">
119
+ <ANCHOR id="g-file-stop-mountable-finish" href="gio/GFile.html#g-file-stop-mountable-finish">
120
+ <ANCHOR id="g-file-poll-mountable" href="gio/GFile.html#g-file-poll-mountable">
121
+ <ANCHOR id="g-file-poll-mountable-finish" href="gio/GFile.html#g-file-poll-mountable-finish">
122
+ <ANCHOR id="g-file-mount-enclosing-volume" href="gio/GFile.html#g-file-mount-enclosing-volume">
123
+ <ANCHOR id="g-file-mount-enclosing-volume-finish" href="gio/GFile.html#g-file-mount-enclosing-volume-finish">
124
+ <ANCHOR id="g-file-monitor-directory" href="gio/GFile.html#g-file-monitor-directory">
125
+ <ANCHOR id="g-file-monitor-file" href="gio/GFile.html#g-file-monitor-file">
126
+ <ANCHOR id="g-file-monitor" href="gio/GFile.html#g-file-monitor">
127
+ <ANCHOR id="g-file-load-contents" href="gio/GFile.html#g-file-load-contents">
128
+ <ANCHOR id="g-file-load-contents-async" href="gio/GFile.html#g-file-load-contents-async">
129
+ <ANCHOR id="g-file-load-contents-finish" href="gio/GFile.html#g-file-load-contents-finish">
130
+ <ANCHOR id="g-file-load-partial-contents-async" href="gio/GFile.html#g-file-load-partial-contents-async">
131
+ <ANCHOR id="g-file-load-partial-contents-finish" href="gio/GFile.html#g-file-load-partial-contents-finish">
132
+ <ANCHOR id="g-file-replace-contents" href="gio/GFile.html#g-file-replace-contents">
133
+ <ANCHOR id="g-file-replace-contents-async" href="gio/GFile.html#g-file-replace-contents-async">
134
+ <ANCHOR id="g-file-replace-contents-finish" href="gio/GFile.html#g-file-replace-contents-finish">
135
+ <ANCHOR id="g-file-copy-attributes" href="gio/GFile.html#g-file-copy-attributes">
136
+ <ANCHOR id="g-file-create-readwrite" href="gio/GFile.html#g-file-create-readwrite">
137
+ <ANCHOR id="g-file-create-readwrite-async" href="gio/GFile.html#g-file-create-readwrite-async">
138
+ <ANCHOR id="g-file-create-readwrite-finish" href="gio/GFile.html#g-file-create-readwrite-finish">
139
+ <ANCHOR id="g-file-open-readwrite" href="gio/GFile.html#g-file-open-readwrite">
140
+ <ANCHOR id="g-file-open-readwrite-async" href="gio/GFile.html#g-file-open-readwrite-async">
141
+ <ANCHOR id="g-file-open-readwrite-finish" href="gio/GFile.html#g-file-open-readwrite-finish">
142
+ <ANCHOR id="g-file-replace-readwrite" href="gio/GFile.html#g-file-replace-readwrite">
143
+ <ANCHOR id="g-file-replace-readwrite-async" href="gio/GFile.html#g-file-replace-readwrite-async">
144
+ <ANCHOR id="g-file-replace-readwrite-finish" href="gio/GFile.html#g-file-replace-readwrite-finish">
145
+ <ANCHOR id="g-file-supports-thread-contexts" href="gio/GFile.html#g-file-supports-thread-contexts">
146
+ <ANCHOR id="GFile.see-also" href="gio/GFile.html#GFile.see-also">
147
+ <ANCHOR id="gio-GFileAttribute" href="gio/gio-GFileAttribute.html">
148
+ <ANCHOR id="gio-GFileAttribute.synopsis" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.synopsis">
149
+ <ANCHOR id="gio-GFileAttribute.description" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.description">
150
+ <ANCHOR id="gio-GFileAttribute.details" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.details">
151
+ <ANCHOR id="GFileAttributeType" href="gio/gio-GFileAttribute.html#GFileAttributeType">
152
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-INVALID:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INVALID:CAPS">
153
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-STRING:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS">
154
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS">
155
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS">
156
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS">
157
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-INT32:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INT32:CAPS">
158
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS">
159
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-INT64:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INT64:CAPS">
160
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS">
161
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-STRINGV:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRINGV:CAPS">
162
+ <ANCHOR id="GFileAttributeInfoFlags" href="gio/gio-GFileAttribute.html#GFileAttributeInfoFlags">
163
+ <ANCHOR id="G-FILE-ATTRIBUTE-INFO-NONE:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-INFO-NONE:CAPS">
164
+ <ANCHOR id="G-FILE-ATTRIBUTE-INFO-COPY-WITH-FILE:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-INFO-COPY-WITH-FILE:CAPS">
165
+ <ANCHOR id="G-FILE-ATTRIBUTE-INFO-COPY-WHEN-MOVED:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-INFO-COPY-WHEN-MOVED:CAPS">
166
+ <ANCHOR id="GFileAttributeStatus" href="gio/gio-GFileAttribute.html#GFileAttributeStatus">
167
+ <ANCHOR id="G-FILE-ATTRIBUTE-STATUS-UNSET:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-UNSET:CAPS">
168
+ <ANCHOR id="G-FILE-ATTRIBUTE-STATUS-SET:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-SET:CAPS">
169
+ <ANCHOR id="G-FILE-ATTRIBUTE-STATUS-ERROR-SETTING:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-ERROR-SETTING:CAPS">
170
+ <ANCHOR id="GFileAttributeInfo" href="gio/gio-GFileAttribute.html#GFileAttributeInfo">
171
+ <ANCHOR id="GFileAttributeInfoList" href="gio/gio-GFileAttribute.html#GFileAttributeInfoList">
172
+ <ANCHOR id="g-file-attribute-info-list-new" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-new">
173
+ <ANCHOR id="g-file-attribute-info-list-ref" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-ref">
174
+ <ANCHOR id="g-file-attribute-info-list-unref" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-unref">
175
+ <ANCHOR id="g-file-attribute-info-list-dup" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-dup">
176
+ <ANCHOR id="g-file-attribute-info-list-lookup" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-lookup">
177
+ <ANCHOR id="g-file-attribute-info-list-add" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-add">
178
+ <ANCHOR id="gio-GFileAttribute.see-also" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.see-also">
179
+ <ANCHOR id="GFileInfo" href="gio/GFileInfo.html">
180
+ <ANCHOR id="GFileInfo.synopsis" href="gio/GFileInfo.html#GFileInfo.synopsis">
181
+ <ANCHOR id="GFileInfo.object-hierarchy" href="gio/GFileInfo.html#GFileInfo.object-hierarchy">
182
+ <ANCHOR id="GFileInfo.description" href="gio/GFileInfo.html#GFileInfo.description">
183
+ <ANCHOR id="GFileInfo.details" href="gio/GFileInfo.html#GFileInfo.details">
184
+ <ANCHOR id="GFileAttributeMatcher" href="gio/GFileInfo.html#GFileAttributeMatcher">
185
+ <ANCHOR id="GFileType" href="gio/GFileInfo.html#GFileType">
186
+ <ANCHOR id="G-FILE-TYPE-UNKNOWN:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-UNKNOWN:CAPS">
187
+ <ANCHOR id="G-FILE-TYPE-REGULAR:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-REGULAR:CAPS">
188
+ <ANCHOR id="G-FILE-TYPE-DIRECTORY:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-DIRECTORY:CAPS">
189
+ <ANCHOR id="G-FILE-TYPE-SYMBOLIC-LINK:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-SYMBOLIC-LINK:CAPS">
190
+ <ANCHOR id="G-FILE-TYPE-SPECIAL:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-SPECIAL:CAPS">
191
+ <ANCHOR id="G-FILE-TYPE-SHORTCUT:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-SHORTCUT:CAPS">
192
+ <ANCHOR id="G-FILE-TYPE-MOUNTABLE:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-MOUNTABLE:CAPS">
193
+ <ANCHOR id="GFileInfo-struct" href="gio/GFileInfo.html#GFileInfo-struct">
194
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS">
195
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS">
196
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS">
197
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS">
198
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS">
199
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS">
200
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS">
201
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS">
202
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS">
203
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS">
204
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS">
205
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS">
206
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS">
207
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS">
208
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS">
209
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS">
210
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS">
211
+ <ANCHOR id="G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS">
212
+ <ANCHOR id="G-FILE-ATTRIBUTE-ID-FILE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILE:CAPS">
213
+ <ANCHOR id="G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS">
214
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS">
215
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS">
216
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS">
217
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS">
218
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS">
219
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS">
220
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS">
221
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS">
222
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS">
223
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS">
224
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS">
225
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS">
226
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS">
227
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS">
228
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS">
229
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS">
230
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS">
231
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS">
232
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS">
233
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS">
234
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS">
235
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS">
236
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS">
237
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS">
238
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CREATED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED:CAPS">
239
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS">
240
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS">
241
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-INODE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-INODE:CAPS">
242
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-MODE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-MODE:CAPS">
243
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS">
244
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-UID:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-UID:CAPS">
245
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-GID:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-GID:CAPS">
246
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS">
247
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS">
248
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS">
249
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS">
250
+ <ANCHOR id="G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS">
251
+ <ANCHOR id="G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS">
252
+ <ANCHOR id="G-FILE-ATTRIBUTE-OWNER-USER:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER:CAPS">
253
+ <ANCHOR id="G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS">
254
+ <ANCHOR id="G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS">
255
+ <ANCHOR id="G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS">
256
+ <ANCHOR id="G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS">
257
+ <ANCHOR id="G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS">
258
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS">
259
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS">
260
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS">
261
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS">
262
+ <ANCHOR id="G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS">
263
+ <ANCHOR id="G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS">
264
+ <ANCHOR id="G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS">
265
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS">
266
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS">
267
+ <ANCHOR id="g-file-info-new" href="gio/GFileInfo.html#g-file-info-new">
268
+ <ANCHOR id="g-file-info-dup" href="gio/GFileInfo.html#g-file-info-dup">
269
+ <ANCHOR id="g-file-info-copy-into" href="gio/GFileInfo.html#g-file-info-copy-into">
270
+ <ANCHOR id="g-file-info-has-attribute" href="gio/GFileInfo.html#g-file-info-has-attribute">
271
+ <ANCHOR id="g-file-info-has-namespace" href="gio/GFileInfo.html#g-file-info-has-namespace">
272
+ <ANCHOR id="g-file-info-list-attributes" href="gio/GFileInfo.html#g-file-info-list-attributes">
273
+ <ANCHOR id="g-file-info-get-attribute-type" href="gio/GFileInfo.html#g-file-info-get-attribute-type">
274
+ <ANCHOR id="g-file-info-remove-attribute" href="gio/GFileInfo.html#g-file-info-remove-attribute">
275
+ <ANCHOR id="g-file-info-get-attribute-as-string" href="gio/GFileInfo.html#g-file-info-get-attribute-as-string">
276
+ <ANCHOR id="g-file-info-get-attribute-data" href="gio/GFileInfo.html#g-file-info-get-attribute-data">
277
+ <ANCHOR id="g-file-info-get-attribute-status" href="gio/GFileInfo.html#g-file-info-get-attribute-status">
278
+ <ANCHOR id="g-file-info-get-attribute-string" href="gio/GFileInfo.html#g-file-info-get-attribute-string">
279
+ <ANCHOR id="g-file-info-get-attribute-stringv" href="gio/GFileInfo.html#g-file-info-get-attribute-stringv">
280
+ <ANCHOR id="g-file-info-get-attribute-byte-string" href="gio/GFileInfo.html#g-file-info-get-attribute-byte-string">
281
+ <ANCHOR id="g-file-info-get-attribute-boolean" href="gio/GFileInfo.html#g-file-info-get-attribute-boolean">
282
+ <ANCHOR id="g-file-info-get-attribute-uint32" href="gio/GFileInfo.html#g-file-info-get-attribute-uint32">
283
+ <ANCHOR id="g-file-info-get-attribute-int32" href="gio/GFileInfo.html#g-file-info-get-attribute-int32">
284
+ <ANCHOR id="g-file-info-get-attribute-uint64" href="gio/GFileInfo.html#g-file-info-get-attribute-uint64">
285
+ <ANCHOR id="g-file-info-get-attribute-int64" href="gio/GFileInfo.html#g-file-info-get-attribute-int64">
286
+ <ANCHOR id="g-file-info-get-attribute-object" href="gio/GFileInfo.html#g-file-info-get-attribute-object">
287
+ <ANCHOR id="g-file-info-set-attribute" href="gio/GFileInfo.html#g-file-info-set-attribute">
288
+ <ANCHOR id="g-file-info-set-attribute-status" href="gio/GFileInfo.html#g-file-info-set-attribute-status">
289
+ <ANCHOR id="g-file-info-set-attribute-string" href="gio/GFileInfo.html#g-file-info-set-attribute-string">
290
+ <ANCHOR id="g-file-info-set-attribute-stringv" href="gio/GFileInfo.html#g-file-info-set-attribute-stringv">
291
+ <ANCHOR id="g-file-info-set-attribute-byte-string" href="gio/GFileInfo.html#g-file-info-set-attribute-byte-string">
292
+ <ANCHOR id="g-file-info-set-attribute-boolean" href="gio/GFileInfo.html#g-file-info-set-attribute-boolean">
293
+ <ANCHOR id="g-file-info-set-attribute-uint32" href="gio/GFileInfo.html#g-file-info-set-attribute-uint32">
294
+ <ANCHOR id="g-file-info-set-attribute-int32" href="gio/GFileInfo.html#g-file-info-set-attribute-int32">
295
+ <ANCHOR id="g-file-info-set-attribute-uint64" href="gio/GFileInfo.html#g-file-info-set-attribute-uint64">
296
+ <ANCHOR id="g-file-info-set-attribute-int64" href="gio/GFileInfo.html#g-file-info-set-attribute-int64">
297
+ <ANCHOR id="g-file-info-set-attribute-object" href="gio/GFileInfo.html#g-file-info-set-attribute-object">
298
+ <ANCHOR id="g-file-info-clear-status" href="gio/GFileInfo.html#g-file-info-clear-status">
299
+ <ANCHOR id="g-file-info-get-file-type" href="gio/GFileInfo.html#g-file-info-get-file-type">
300
+ <ANCHOR id="g-file-info-get-is-hidden" href="gio/GFileInfo.html#g-file-info-get-is-hidden">
301
+ <ANCHOR id="g-file-info-get-is-backup" href="gio/GFileInfo.html#g-file-info-get-is-backup">
302
+ <ANCHOR id="g-file-info-get-is-symlink" href="gio/GFileInfo.html#g-file-info-get-is-symlink">
303
+ <ANCHOR id="g-file-info-get-name" href="gio/GFileInfo.html#g-file-info-get-name">
304
+ <ANCHOR id="g-file-info-get-display-name" href="gio/GFileInfo.html#g-file-info-get-display-name">
305
+ <ANCHOR id="g-file-info-get-edit-name" href="gio/GFileInfo.html#g-file-info-get-edit-name">
306
+ <ANCHOR id="g-file-info-get-icon" href="gio/GFileInfo.html#g-file-info-get-icon">
307
+ <ANCHOR id="g-file-info-get-content-type" href="gio/GFileInfo.html#g-file-info-get-content-type">
308
+ <ANCHOR id="g-file-info-get-size" href="gio/GFileInfo.html#g-file-info-get-size">
309
+ <ANCHOR id="g-file-info-get-modification-time" href="gio/GFileInfo.html#g-file-info-get-modification-time">
310
+ <ANCHOR id="g-file-info-get-symlink-target" href="gio/GFileInfo.html#g-file-info-get-symlink-target">
311
+ <ANCHOR id="g-file-info-get-etag" href="gio/GFileInfo.html#g-file-info-get-etag">
312
+ <ANCHOR id="g-file-info-get-sort-order" href="gio/GFileInfo.html#g-file-info-get-sort-order">
313
+ <ANCHOR id="g-file-info-set-attribute-mask" href="gio/GFileInfo.html#g-file-info-set-attribute-mask">
314
+ <ANCHOR id="g-file-info-unset-attribute-mask" href="gio/GFileInfo.html#g-file-info-unset-attribute-mask">
315
+ <ANCHOR id="g-file-info-set-file-type" href="gio/GFileInfo.html#g-file-info-set-file-type">
316
+ <ANCHOR id="g-file-info-set-is-hidden" href="gio/GFileInfo.html#g-file-info-set-is-hidden">
317
+ <ANCHOR id="g-file-info-set-is-symlink" href="gio/GFileInfo.html#g-file-info-set-is-symlink">
318
+ <ANCHOR id="g-file-info-set-name" href="gio/GFileInfo.html#g-file-info-set-name">
319
+ <ANCHOR id="g-file-info-set-display-name" href="gio/GFileInfo.html#g-file-info-set-display-name">
320
+ <ANCHOR id="g-file-info-set-edit-name" href="gio/GFileInfo.html#g-file-info-set-edit-name">
321
+ <ANCHOR id="g-file-info-set-icon" href="gio/GFileInfo.html#g-file-info-set-icon">
322
+ <ANCHOR id="g-file-info-set-content-type" href="gio/GFileInfo.html#g-file-info-set-content-type">
323
+ <ANCHOR id="g-file-info-set-size" href="gio/GFileInfo.html#g-file-info-set-size">
324
+ <ANCHOR id="g-file-info-set-modification-time" href="gio/GFileInfo.html#g-file-info-set-modification-time">
325
+ <ANCHOR id="g-file-info-set-symlink-target" href="gio/GFileInfo.html#g-file-info-set-symlink-target">
326
+ <ANCHOR id="g-file-info-set-sort-order" href="gio/GFileInfo.html#g-file-info-set-sort-order">
327
+ <ANCHOR id="g-file-attribute-matcher-new" href="gio/GFileInfo.html#g-file-attribute-matcher-new">
328
+ <ANCHOR id="g-file-attribute-matcher-ref" href="gio/GFileInfo.html#g-file-attribute-matcher-ref">
329
+ <ANCHOR id="g-file-attribute-matcher-unref" href="gio/GFileInfo.html#g-file-attribute-matcher-unref">
330
+ <ANCHOR id="g-file-attribute-matcher-matches" href="gio/GFileInfo.html#g-file-attribute-matcher-matches">
331
+ <ANCHOR id="g-file-attribute-matcher-matches-only" href="gio/GFileInfo.html#g-file-attribute-matcher-matches-only">
332
+ <ANCHOR id="g-file-attribute-matcher-enumerate-namespace" href="gio/GFileInfo.html#g-file-attribute-matcher-enumerate-namespace">
333
+ <ANCHOR id="g-file-attribute-matcher-enumerate-next" href="gio/GFileInfo.html#g-file-attribute-matcher-enumerate-next">
334
+ <ANCHOR id="GFileInfo.see-also" href="gio/GFileInfo.html#GFileInfo.see-also">
335
+ <ANCHOR id="GFileEnumerator" href="gio/GFileEnumerator.html">
336
+ <ANCHOR id="GFileEnumerator.synopsis" href="gio/GFileEnumerator.html#GFileEnumerator.synopsis">
337
+ <ANCHOR id="GFileEnumerator.object-hierarchy" href="gio/GFileEnumerator.html#GFileEnumerator.object-hierarchy">
338
+ <ANCHOR id="GFileEnumerator.properties" href="gio/GFileEnumerator.html#GFileEnumerator.properties">
339
+ <ANCHOR id="GFileEnumerator.description" href="gio/GFileEnumerator.html#GFileEnumerator.description">
340
+ <ANCHOR id="GFileEnumerator.details" href="gio/GFileEnumerator.html#GFileEnumerator.details">
341
+ <ANCHOR id="GFileEnumerator-struct" href="gio/GFileEnumerator.html#GFileEnumerator-struct">
342
+ <ANCHOR id="g-file-enumerator-next-file" href="gio/GFileEnumerator.html#g-file-enumerator-next-file">
343
+ <ANCHOR id="g-file-enumerator-close" href="gio/GFileEnumerator.html#g-file-enumerator-close">
344
+ <ANCHOR id="g-file-enumerator-next-files-async" href="gio/GFileEnumerator.html#g-file-enumerator-next-files-async">
345
+ <ANCHOR id="g-file-enumerator-next-files-finish" href="gio/GFileEnumerator.html#g-file-enumerator-next-files-finish">
346
+ <ANCHOR id="g-file-enumerator-close-async" href="gio/GFileEnumerator.html#g-file-enumerator-close-async">
347
+ <ANCHOR id="g-file-enumerator-close-finish" href="gio/GFileEnumerator.html#g-file-enumerator-close-finish">
348
+ <ANCHOR id="g-file-enumerator-is-closed" href="gio/GFileEnumerator.html#g-file-enumerator-is-closed">
349
+ <ANCHOR id="g-file-enumerator-has-pending" href="gio/GFileEnumerator.html#g-file-enumerator-has-pending">
350
+ <ANCHOR id="g-file-enumerator-set-pending" href="gio/GFileEnumerator.html#g-file-enumerator-set-pending">
351
+ <ANCHOR id="g-file-enumerator-get-container" href="gio/GFileEnumerator.html#g-file-enumerator-get-container">
352
+ <ANCHOR id="GFileEnumerator.property-details" href="gio/GFileEnumerator.html#GFileEnumerator.property-details">
353
+ <ANCHOR id="GFileEnumerator--container" href="gio/GFileEnumerator.html#GFileEnumerator--container">
354
+ <ANCHOR id="gio-GIOError" href="gio/gio-GIOError.html">
355
+ <ANCHOR id="gio-GIOError.synopsis" href="gio/gio-GIOError.html#gio-GIOError.synopsis">
356
+ <ANCHOR id="gio-GIOError.description" href="gio/gio-GIOError.html#gio-GIOError.description">
357
+ <ANCHOR id="gio-GIOError.details" href="gio/gio-GIOError.html#gio-GIOError.details">
358
+ <ANCHOR id="G-IO-ERROR:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR:CAPS">
359
+ <ANCHOR id="GIOErrorEnum" href="gio/gio-GIOError.html#GIOErrorEnum">
360
+ <ANCHOR id="G-IO-ERROR-FAILED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-FAILED:CAPS">
361
+ <ANCHOR id="G-IO-ERROR-NOT-FOUND:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-FOUND:CAPS">
362
+ <ANCHOR id="G-IO-ERROR-EXISTS:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-EXISTS:CAPS">
363
+ <ANCHOR id="G-IO-ERROR-IS-DIRECTORY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-IS-DIRECTORY:CAPS">
364
+ <ANCHOR id="G-IO-ERROR-NOT-DIRECTORY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-DIRECTORY:CAPS">
365
+ <ANCHOR id="G-IO-ERROR-NOT-EMPTY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-EMPTY:CAPS">
366
+ <ANCHOR id="G-IO-ERROR-NOT-REGULAR-FILE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-REGULAR-FILE:CAPS">
367
+ <ANCHOR id="G-IO-ERROR-NOT-SYMBOLIC-LINK:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-SYMBOLIC-LINK:CAPS">
368
+ <ANCHOR id="G-IO-ERROR-NOT-MOUNTABLE-FILE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-MOUNTABLE-FILE:CAPS">
369
+ <ANCHOR id="G-IO-ERROR-FILENAME-TOO-LONG:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-FILENAME-TOO-LONG:CAPS">
370
+ <ANCHOR id="G-IO-ERROR-INVALID-FILENAME:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-INVALID-FILENAME:CAPS">
371
+ <ANCHOR id="G-IO-ERROR-TOO-MANY-LINKS:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-TOO-MANY-LINKS:CAPS">
372
+ <ANCHOR id="G-IO-ERROR-NO-SPACE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NO-SPACE:CAPS">
373
+ <ANCHOR id="G-IO-ERROR-INVALID-ARGUMENT:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-INVALID-ARGUMENT:CAPS">
374
+ <ANCHOR id="G-IO-ERROR-PERMISSION-DENIED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PERMISSION-DENIED:CAPS">
375
+ <ANCHOR id="G-IO-ERROR-NOT-SUPPORTED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-SUPPORTED:CAPS">
376
+ <ANCHOR id="G-IO-ERROR-NOT-MOUNTED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-MOUNTED:CAPS">
377
+ <ANCHOR id="G-IO-ERROR-ALREADY-MOUNTED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-ALREADY-MOUNTED:CAPS">
378
+ <ANCHOR id="G-IO-ERROR-CLOSED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-CLOSED:CAPS">
379
+ <ANCHOR id="G-IO-ERROR-CANCELLED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-CANCELLED:CAPS">
380
+ <ANCHOR id="G-IO-ERROR-PENDING:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PENDING:CAPS">
381
+ <ANCHOR id="G-IO-ERROR-READ-ONLY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-READ-ONLY:CAPS">
382
+ <ANCHOR id="G-IO-ERROR-CANT-CREATE-BACKUP:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-CANT-CREATE-BACKUP:CAPS">
383
+ <ANCHOR id="G-IO-ERROR-WRONG-ETAG:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WRONG-ETAG:CAPS">
384
+ <ANCHOR id="G-IO-ERROR-TIMED-OUT:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-TIMED-OUT:CAPS">
385
+ <ANCHOR id="G-IO-ERROR-WOULD-RECURSE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WOULD-RECURSE:CAPS">
386
+ <ANCHOR id="G-IO-ERROR-BUSY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-BUSY:CAPS">
387
+ <ANCHOR id="G-IO-ERROR-WOULD-BLOCK:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WOULD-BLOCK:CAPS">
388
+ <ANCHOR id="G-IO-ERROR-HOST-NOT-FOUND:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-HOST-NOT-FOUND:CAPS">
389
+ <ANCHOR id="G-IO-ERROR-WOULD-MERGE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WOULD-MERGE:CAPS">
390
+ <ANCHOR id="G-IO-ERROR-FAILED-HANDLED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-FAILED-HANDLED:CAPS">
391
+ <ANCHOR id="G-IO-ERROR-TOO-MANY-OPEN-FILES:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-TOO-MANY-OPEN-FILES:CAPS">
392
+ <ANCHOR id="G-IO-ERROR-NOT-INITIALIZED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-INITIALIZED:CAPS">
393
+ <ANCHOR id="G-IO-ERROR-ADDRESS-IN-USE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-ADDRESS-IN-USE:CAPS">
394
+ <ANCHOR id="G-IO-ERROR-PARTIAL-INPUT:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PARTIAL-INPUT:CAPS">
395
+ <ANCHOR id="G-IO-ERROR-INVALID-DATA:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-INVALID-DATA:CAPS">
396
+ <ANCHOR id="g-io-error-from-errno" href="gio/gio-GIOError.html#g-io-error-from-errno">
397
+ <ANCHOR id="GMountOperation" href="gio/GMountOperation.html">
398
+ <ANCHOR id="GMountOperation.synopsis" href="gio/GMountOperation.html#GMountOperation.synopsis">
399
+ <ANCHOR id="GMountOperation.object-hierarchy" href="gio/GMountOperation.html#GMountOperation.object-hierarchy">
400
+ <ANCHOR id="GMountOperation.properties" href="gio/GMountOperation.html#GMountOperation.properties">
401
+ <ANCHOR id="GMountOperation.signals" href="gio/GMountOperation.html#GMountOperation.signals">
402
+ <ANCHOR id="GMountOperation.description" href="gio/GMountOperation.html#GMountOperation.description">
403
+ <ANCHOR id="GMountOperation.details" href="gio/GMountOperation.html#GMountOperation.details">
404
+ <ANCHOR id="GAskPasswordFlags" href="gio/GMountOperation.html#GAskPasswordFlags">
405
+ <ANCHOR id="G-ASK-PASSWORD-NEED-PASSWORD:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-NEED-PASSWORD:CAPS">
406
+ <ANCHOR id="G-ASK-PASSWORD-NEED-USERNAME:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-NEED-USERNAME:CAPS">
407
+ <ANCHOR id="G-ASK-PASSWORD-NEED-DOMAIN:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-NEED-DOMAIN:CAPS">
408
+ <ANCHOR id="G-ASK-PASSWORD-SAVING-SUPPORTED:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-SAVING-SUPPORTED:CAPS">
409
+ <ANCHOR id="G-ASK-PASSWORD-ANONYMOUS-SUPPORTED:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-ANONYMOUS-SUPPORTED:CAPS">
410
+ <ANCHOR id="GPasswordSave" href="gio/GMountOperation.html#GPasswordSave">
411
+ <ANCHOR id="G-PASSWORD-SAVE-NEVER:CAPS" href="gio/GMountOperation.html#G-PASSWORD-SAVE-NEVER:CAPS">
412
+ <ANCHOR id="G-PASSWORD-SAVE-FOR-SESSION:CAPS" href="gio/GMountOperation.html#G-PASSWORD-SAVE-FOR-SESSION:CAPS">
413
+ <ANCHOR id="G-PASSWORD-SAVE-PERMANENTLY:CAPS" href="gio/GMountOperation.html#G-PASSWORD-SAVE-PERMANENTLY:CAPS">
414
+ <ANCHOR id="GMountOperation-struct" href="gio/GMountOperation.html#GMountOperation-struct">
415
+ <ANCHOR id="GMountOperationResult" href="gio/GMountOperation.html#GMountOperationResult">
416
+ <ANCHOR id="G-MOUNT-OPERATION-HANDLED:CAPS" href="gio/GMountOperation.html#G-MOUNT-OPERATION-HANDLED:CAPS">
417
+ <ANCHOR id="G-MOUNT-OPERATION-ABORTED:CAPS" href="gio/GMountOperation.html#G-MOUNT-OPERATION-ABORTED:CAPS">
418
+ <ANCHOR id="G-MOUNT-OPERATION-UNHANDLED:CAPS" href="gio/GMountOperation.html#G-MOUNT-OPERATION-UNHANDLED:CAPS">
419
+ <ANCHOR id="g-mount-operation-new" href="gio/GMountOperation.html#g-mount-operation-new">
420
+ <ANCHOR id="g-mount-operation-get-username" href="gio/GMountOperation.html#g-mount-operation-get-username">
421
+ <ANCHOR id="g-mount-operation-set-username" href="gio/GMountOperation.html#g-mount-operation-set-username">
422
+ <ANCHOR id="g-mount-operation-get-password" href="gio/GMountOperation.html#g-mount-operation-get-password">
423
+ <ANCHOR id="g-mount-operation-set-password" href="gio/GMountOperation.html#g-mount-operation-set-password">
424
+ <ANCHOR id="g-mount-operation-get-anonymous" href="gio/GMountOperation.html#g-mount-operation-get-anonymous">
425
+ <ANCHOR id="g-mount-operation-set-anonymous" href="gio/GMountOperation.html#g-mount-operation-set-anonymous">
426
+ <ANCHOR id="g-mount-operation-get-domain" href="gio/GMountOperation.html#g-mount-operation-get-domain">
427
+ <ANCHOR id="g-mount-operation-set-domain" href="gio/GMountOperation.html#g-mount-operation-set-domain">
428
+ <ANCHOR id="g-mount-operation-get-password-save" href="gio/GMountOperation.html#g-mount-operation-get-password-save">
429
+ <ANCHOR id="g-mount-operation-set-password-save" href="gio/GMountOperation.html#g-mount-operation-set-password-save">
430
+ <ANCHOR id="g-mount-operation-get-choice" href="gio/GMountOperation.html#g-mount-operation-get-choice">
431
+ <ANCHOR id="g-mount-operation-set-choice" href="gio/GMountOperation.html#g-mount-operation-set-choice">
432
+ <ANCHOR id="g-mount-operation-reply" href="gio/GMountOperation.html#g-mount-operation-reply">
433
+ <ANCHOR id="GMountOperation.property-details" href="gio/GMountOperation.html#GMountOperation.property-details">
434
+ <ANCHOR id="GMountOperation--anonymous" href="gio/GMountOperation.html#GMountOperation--anonymous">
435
+ <ANCHOR id="GMountOperation--choice" href="gio/GMountOperation.html#GMountOperation--choice">
436
+ <ANCHOR id="GMountOperation--domain" href="gio/GMountOperation.html#GMountOperation--domain">
437
+ <ANCHOR id="GMountOperation--password" href="gio/GMountOperation.html#GMountOperation--password">
438
+ <ANCHOR id="GMountOperation--password-save" href="gio/GMountOperation.html#GMountOperation--password-save">
439
+ <ANCHOR id="GMountOperation--username" href="gio/GMountOperation.html#GMountOperation--username">
440
+ <ANCHOR id="GMountOperation.signal-details" href="gio/GMountOperation.html#GMountOperation.signal-details">
441
+ <ANCHOR id="GMountOperation-aborted" href="gio/GMountOperation.html#GMountOperation-aborted">
442
+ <ANCHOR id="GMountOperation-ask-password" href="gio/GMountOperation.html#GMountOperation-ask-password">
443
+ <ANCHOR id="GMountOperation-ask-question" href="gio/GMountOperation.html#GMountOperation-ask-question">
444
+ <ANCHOR id="GMountOperation-reply" href="gio/GMountOperation.html#GMountOperation-reply">
445
+ <ANCHOR id="GMountOperation-show-processes" href="gio/GMountOperation.html#GMountOperation-show-processes">
446
+ <ANCHOR id="GFileMonitor" href="gio/GFileMonitor.html">
447
+ <ANCHOR id="GFileMonitor.synopsis" href="gio/GFileMonitor.html#GFileMonitor.synopsis">
448
+ <ANCHOR id="GFileMonitor.object-hierarchy" href="gio/GFileMonitor.html#GFileMonitor.object-hierarchy">
449
+ <ANCHOR id="GFileMonitor.properties" href="gio/GFileMonitor.html#GFileMonitor.properties">
450
+ <ANCHOR id="GFileMonitor.signals" href="gio/GFileMonitor.html#GFileMonitor.signals">
451
+ <ANCHOR id="GFileMonitor.description" href="gio/GFileMonitor.html#GFileMonitor.description">
452
+ <ANCHOR id="GFileMonitor.details" href="gio/GFileMonitor.html#GFileMonitor.details">
453
+ <ANCHOR id="GFileMonitorEvent" href="gio/GFileMonitor.html#GFileMonitorEvent">
454
+ <ANCHOR id="G-FILE-MONITOR-EVENT-CHANGED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-CHANGED:CAPS">
455
+ <ANCHOR id="G-FILE-MONITOR-EVENT-CHANGES-DONE-HINT:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-CHANGES-DONE-HINT:CAPS">
456
+ <ANCHOR id="G-FILE-MONITOR-EVENT-DELETED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-DELETED:CAPS">
457
+ <ANCHOR id="G-FILE-MONITOR-EVENT-CREATED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-CREATED:CAPS">
458
+ <ANCHOR id="G-FILE-MONITOR-EVENT-ATTRIBUTE-CHANGED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-ATTRIBUTE-CHANGED:CAPS">
459
+ <ANCHOR id="G-FILE-MONITOR-EVENT-PRE-UNMOUNT:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-PRE-UNMOUNT:CAPS">
460
+ <ANCHOR id="G-FILE-MONITOR-EVENT-UNMOUNTED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-UNMOUNTED:CAPS">
461
+ <ANCHOR id="G-FILE-MONITOR-EVENT-MOVED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-MOVED:CAPS">
462
+ <ANCHOR id="GFileMonitor-struct" href="gio/GFileMonitor.html#GFileMonitor-struct">
463
+ <ANCHOR id="g-file-monitor-cancel" href="gio/GFileMonitor.html#g-file-monitor-cancel">
464
+ <ANCHOR id="g-file-monitor-is-cancelled" href="gio/GFileMonitor.html#g-file-monitor-is-cancelled">
465
+ <ANCHOR id="g-file-monitor-set-rate-limit" href="gio/GFileMonitor.html#g-file-monitor-set-rate-limit">
466
+ <ANCHOR id="g-file-monitor-emit-event" href="gio/GFileMonitor.html#g-file-monitor-emit-event">
467
+ <ANCHOR id="GFileMonitor.property-details" href="gio/GFileMonitor.html#GFileMonitor.property-details">
468
+ <ANCHOR id="GFileMonitor--cancelled" href="gio/GFileMonitor.html#GFileMonitor--cancelled">
469
+ <ANCHOR id="GFileMonitor--rate-limit" href="gio/GFileMonitor.html#GFileMonitor--rate-limit">
470
+ <ANCHOR id="GFileMonitor.signal-details" href="gio/GFileMonitor.html#GFileMonitor.signal-details">
471
+ <ANCHOR id="GFileMonitor-changed" href="gio/GFileMonitor.html#GFileMonitor-changed">
472
+ <ANCHOR id="GCancellable" href="gio/GCancellable.html">
473
+ <ANCHOR id="GCancellable.synopsis" href="gio/GCancellable.html#GCancellable.synopsis">
474
+ <ANCHOR id="GCancellable.object-hierarchy" href="gio/GCancellable.html#GCancellable.object-hierarchy">
475
+ <ANCHOR id="GCancellable.signals" href="gio/GCancellable.html#GCancellable.signals">
476
+ <ANCHOR id="GCancellable.description" href="gio/GCancellable.html#GCancellable.description">
477
+ <ANCHOR id="GCancellable.details" href="gio/GCancellable.html#GCancellable.details">
478
+ <ANCHOR id="GCancellable-struct" href="gio/GCancellable.html#GCancellable-struct">
479
+ <ANCHOR id="g-cancellable-new" href="gio/GCancellable.html#g-cancellable-new">
480
+ <ANCHOR id="g-cancellable-is-cancelled" href="gio/GCancellable.html#g-cancellable-is-cancelled">
481
+ <ANCHOR id="g-cancellable-set-error-if-cancelled" href="gio/GCancellable.html#g-cancellable-set-error-if-cancelled">
482
+ <ANCHOR id="g-cancellable-get-fd" href="gio/GCancellable.html#g-cancellable-get-fd">
483
+ <ANCHOR id="g-cancellable-make-pollfd" href="gio/GCancellable.html#g-cancellable-make-pollfd">
484
+ <ANCHOR id="g-cancellable-release-fd" href="gio/GCancellable.html#g-cancellable-release-fd">
485
+ <ANCHOR id="g-cancellable-get-current" href="gio/GCancellable.html#g-cancellable-get-current">
486
+ <ANCHOR id="g-cancellable-pop-current" href="gio/GCancellable.html#g-cancellable-pop-current">
487
+ <ANCHOR id="g-cancellable-push-current" href="gio/GCancellable.html#g-cancellable-push-current">
488
+ <ANCHOR id="g-cancellable-reset" href="gio/GCancellable.html#g-cancellable-reset">
489
+ <ANCHOR id="g-cancellable-connect" href="gio/GCancellable.html#g-cancellable-connect">
490
+ <ANCHOR id="g-cancellable-disconnect" href="gio/GCancellable.html#g-cancellable-disconnect">
491
+ <ANCHOR id="g-cancellable-cancel" href="gio/GCancellable.html#g-cancellable-cancel">
492
+ <ANCHOR id="GCancellable.signal-details" href="gio/GCancellable.html#GCancellable.signal-details">
493
+ <ANCHOR id="GCancellable-cancelled" href="gio/GCancellable.html#GCancellable-cancelled">
494
+ <ANCHOR id="GAsyncResult" href="gio/GAsyncResult.html">
495
+ <ANCHOR id="GAsyncResult.synopsis" href="gio/GAsyncResult.html#GAsyncResult.synopsis">
496
+ <ANCHOR id="GAsyncResult.object-hierarchy" href="gio/GAsyncResult.html#GAsyncResult.object-hierarchy">
497
+ <ANCHOR id="GAsyncResult.prerequisites" href="gio/GAsyncResult.html#GAsyncResult.prerequisites">
498
+ <ANCHOR id="GAsyncResult.implementations" href="gio/GAsyncResult.html#GAsyncResult.implementations">
499
+ <ANCHOR id="GAsyncResult.description" href="gio/GAsyncResult.html#GAsyncResult.description">
500
+ <ANCHOR id="GAsyncResult.details" href="gio/GAsyncResult.html#GAsyncResult.details">
501
+ <ANCHOR id="GAsyncResult-struct" href="gio/GAsyncResult.html#GAsyncResult-struct">
502
+ <ANCHOR id="GAsyncResultIface" href="gio/GAsyncResult.html#GAsyncResultIface">
503
+ <ANCHOR id="GAsyncReadyCallback" href="gio/GAsyncResult.html#GAsyncReadyCallback">
504
+ <ANCHOR id="g-async-result-get-user-data" href="gio/GAsyncResult.html#g-async-result-get-user-data">
505
+ <ANCHOR id="g-async-result-get-source-object" href="gio/GAsyncResult.html#g-async-result-get-source-object">
506
+ <ANCHOR id="GAsyncResult.see-also" href="gio/GAsyncResult.html#GAsyncResult.see-also">
507
+ <ANCHOR id="gio-GIOScheduler" href="gio/gio-GIOScheduler.html">
508
+ <ANCHOR id="gio-GIOScheduler.synopsis" href="gio/gio-GIOScheduler.html#gio-GIOScheduler.synopsis">
509
+ <ANCHOR id="gio-GIOScheduler.description" href="gio/gio-GIOScheduler.html#gio-GIOScheduler.description">
510
+ <ANCHOR id="gio-GIOScheduler.details" href="gio/gio-GIOScheduler.html#gio-GIOScheduler.details">
511
+ <ANCHOR id="GIOSchedulerJob" href="gio/gio-GIOScheduler.html#GIOSchedulerJob">
512
+ <ANCHOR id="GIOSchedulerJobFunc" href="gio/gio-GIOScheduler.html#GIOSchedulerJobFunc">
513
+ <ANCHOR id="g-io-scheduler-push-job" href="gio/gio-GIOScheduler.html#g-io-scheduler-push-job">
514
+ <ANCHOR id="g-io-scheduler-cancel-all-jobs" href="gio/gio-GIOScheduler.html#g-io-scheduler-cancel-all-jobs">
515
+ <ANCHOR id="g-io-scheduler-job-send-to-mainloop" href="gio/gio-GIOScheduler.html#g-io-scheduler-job-send-to-mainloop">
516
+ <ANCHOR id="g-io-scheduler-job-send-to-mainloop-async" href="gio/gio-GIOScheduler.html#g-io-scheduler-job-send-to-mainloop-async">
517
+ <ANCHOR id="GSimpleAsyncResult" href="gio/GSimpleAsyncResult.html">
518
+ <ANCHOR id="GSimpleAsyncResult.synopsis" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.synopsis">
519
+ <ANCHOR id="GSimpleAsyncResult.object-hierarchy" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.object-hierarchy">
520
+ <ANCHOR id="GSimpleAsyncResult.implemented-interfaces" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.implemented-interfaces">
521
+ <ANCHOR id="GSimpleAsyncResult.description" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.description">
522
+ <ANCHOR id="GSimpleAsyncResult.details" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.details">
523
+ <ANCHOR id="GSimpleAsyncResult-struct" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult-struct">
524
+ <ANCHOR id="GSimpleAsyncThreadFunc" href="gio/GSimpleAsyncResult.html#GSimpleAsyncThreadFunc">
525
+ <ANCHOR id="g-simple-async-result-new" href="gio/GSimpleAsyncResult.html#g-simple-async-result-new">
526
+ <ANCHOR id="g-simple-async-result-new-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-new-error">
527
+ <ANCHOR id="g-simple-async-result-new-from-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-new-from-error">
528
+ <ANCHOR id="g-simple-async-result-set-op-res-gpointer" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-op-res-gpointer">
529
+ <ANCHOR id="g-simple-async-result-get-op-res-gpointer" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-op-res-gpointer">
530
+ <ANCHOR id="g-simple-async-result-set-op-res-gssize" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-op-res-gssize">
531
+ <ANCHOR id="g-simple-async-result-get-op-res-gssize" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-op-res-gssize">
532
+ <ANCHOR id="g-simple-async-result-set-op-res-gboolean" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-op-res-gboolean">
533
+ <ANCHOR id="g-simple-async-result-get-op-res-gboolean" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-op-res-gboolean">
534
+ <ANCHOR id="g-simple-async-result-get-source-tag" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-source-tag">
535
+ <ANCHOR id="g-simple-async-result-is-valid" href="gio/GSimpleAsyncResult.html#g-simple-async-result-is-valid">
536
+ <ANCHOR id="g-simple-async-result-set-handle-cancellation" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-handle-cancellation">
537
+ <ANCHOR id="g-simple-async-result-complete" href="gio/GSimpleAsyncResult.html#g-simple-async-result-complete">
538
+ <ANCHOR id="g-simple-async-result-complete-in-idle" href="gio/GSimpleAsyncResult.html#g-simple-async-result-complete-in-idle">
539
+ <ANCHOR id="g-simple-async-result-run-in-thread" href="gio/GSimpleAsyncResult.html#g-simple-async-result-run-in-thread">
540
+ <ANCHOR id="g-simple-async-result-set-from-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-from-error">
541
+ <ANCHOR id="g-simple-async-result-propagate-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-propagate-error">
542
+ <ANCHOR id="g-simple-async-result-set-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-error">
543
+ <ANCHOR id="g-simple-async-result-set-error-va" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-error-va">
544
+ <ANCHOR id="g-simple-async-report-error-in-idle" href="gio/GSimpleAsyncResult.html#g-simple-async-report-error-in-idle">
545
+ <ANCHOR id="g-simple-async-report-gerror-in-idle" href="gio/GSimpleAsyncResult.html#g-simple-async-report-gerror-in-idle">
546
+ <ANCHOR id="GSimpleAsyncResult.see-also" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.see-also">
547
+ <ANCHOR id="GConverter" href="gio/GConverter.html">
548
+ <ANCHOR id="GConverter.synopsis" href="gio/GConverter.html#GConverter.synopsis">
549
+ <ANCHOR id="GConverter.object-hierarchy" href="gio/GConverter.html#GConverter.object-hierarchy">
550
+ <ANCHOR id="GConverter.prerequisites" href="gio/GConverter.html#GConverter.prerequisites">
551
+ <ANCHOR id="GConverter.implementations" href="gio/GConverter.html#GConverter.implementations">
552
+ <ANCHOR id="GConverter.description" href="gio/GConverter.html#GConverter.description">
553
+ <ANCHOR id="GConverter.details" href="gio/GConverter.html#GConverter.details">
554
+ <ANCHOR id="GConverter-struct" href="gio/GConverter.html#GConverter-struct">
555
+ <ANCHOR id="GConverterIface" href="gio/GConverter.html#GConverterIface">
556
+ <ANCHOR id="GConverterResult" href="gio/GConverter.html#GConverterResult">
557
+ <ANCHOR id="G-CONVERTER-ERROR:CAPS" href="gio/GConverter.html#G-CONVERTER-ERROR:CAPS">
558
+ <ANCHOR id="G-CONVERTER-CONVERTED:CAPS" href="gio/GConverter.html#G-CONVERTER-CONVERTED:CAPS">
559
+ <ANCHOR id="G-CONVERTER-FINISHED:CAPS" href="gio/GConverter.html#G-CONVERTER-FINISHED:CAPS">
560
+ <ANCHOR id="G-CONVERTER-FLUSHED:CAPS" href="gio/GConverter.html#G-CONVERTER-FLUSHED:CAPS">
561
+ <ANCHOR id="g-converter-convert" href="gio/GConverter.html#g-converter-convert">
562
+ <ANCHOR id="g-converter-reset" href="gio/GConverter.html#g-converter-reset">
563
+ <ANCHOR id="GConverter.see-also" href="gio/GConverter.html#GConverter.see-also">
564
+ <ANCHOR id="GCharsetConverter" href="gio/GCharsetConverter.html">
565
+ <ANCHOR id="GCharsetConverter.synopsis" href="gio/GCharsetConverter.html#GCharsetConverter.synopsis">
566
+ <ANCHOR id="GCharsetConverter.object-hierarchy" href="gio/GCharsetConverter.html#GCharsetConverter.object-hierarchy">
567
+ <ANCHOR id="GCharsetConverter.implemented-interfaces" href="gio/GCharsetConverter.html#GCharsetConverter.implemented-interfaces">
568
+ <ANCHOR id="GCharsetConverter.properties" href="gio/GCharsetConverter.html#GCharsetConverter.properties">
569
+ <ANCHOR id="GCharsetConverter.description" href="gio/GCharsetConverter.html#GCharsetConverter.description">
570
+ <ANCHOR id="GCharsetConverter.details" href="gio/GCharsetConverter.html#GCharsetConverter.details">
571
+ <ANCHOR id="GCharsetConverter-struct" href="gio/GCharsetConverter.html#GCharsetConverter-struct">
572
+ <ANCHOR id="g-charset-converter-new" href="gio/GCharsetConverter.html#g-charset-converter-new">
573
+ <ANCHOR id="g-charset-converter-set-use-fallback" href="gio/GCharsetConverter.html#g-charset-converter-set-use-fallback">
574
+ <ANCHOR id="g-charset-converter-get-use-fallback" href="gio/GCharsetConverter.html#g-charset-converter-get-use-fallback">
575
+ <ANCHOR id="g-charset-converter-get-num-fallbacks" href="gio/GCharsetConverter.html#g-charset-converter-get-num-fallbacks">
576
+ <ANCHOR id="GCharsetConverter.property-details" href="gio/GCharsetConverter.html#GCharsetConverter.property-details">
577
+ <ANCHOR id="GCharsetConverter--from-charset" href="gio/GCharsetConverter.html#GCharsetConverter--from-charset">
578
+ <ANCHOR id="GCharsetConverter--to-charset" href="gio/GCharsetConverter.html#GCharsetConverter--to-charset">
579
+ <ANCHOR id="GCharsetConverter--use-fallback" href="gio/GCharsetConverter.html#GCharsetConverter--use-fallback">
580
+ <ANCHOR id="GZlibCompressor" href="gio/GZlibCompressor.html">
581
+ <ANCHOR id="GZlibCompressor.synopsis" href="gio/GZlibCompressor.html#GZlibCompressor.synopsis">
582
+ <ANCHOR id="GZlibCompressor.object-hierarchy" href="gio/GZlibCompressor.html#GZlibCompressor.object-hierarchy">
583
+ <ANCHOR id="GZlibCompressor.implemented-interfaces" href="gio/GZlibCompressor.html#GZlibCompressor.implemented-interfaces">
584
+ <ANCHOR id="GZlibCompressor.properties" href="gio/GZlibCompressor.html#GZlibCompressor.properties">
585
+ <ANCHOR id="GZlibCompressor.description" href="gio/GZlibCompressor.html#GZlibCompressor.description">
586
+ <ANCHOR id="GZlibCompressor.details" href="gio/GZlibCompressor.html#GZlibCompressor.details">
587
+ <ANCHOR id="GZlibCompressor-struct" href="gio/GZlibCompressor.html#GZlibCompressor-struct">
588
+ <ANCHOR id="GZlibCompressorFormat" href="gio/GZlibCompressor.html#GZlibCompressorFormat">
589
+ <ANCHOR id="G-ZLIB-COMPRESSOR-FORMAT-ZLIB:CAPS" href="gio/GZlibCompressor.html#G-ZLIB-COMPRESSOR-FORMAT-ZLIB:CAPS">
590
+ <ANCHOR id="G-ZLIB-COMPRESSOR-FORMAT-GZIP:CAPS" href="gio/GZlibCompressor.html#G-ZLIB-COMPRESSOR-FORMAT-GZIP:CAPS">
591
+ <ANCHOR id="G-ZLIB-COMPRESSOR-FORMAT-RAW:CAPS" href="gio/GZlibCompressor.html#G-ZLIB-COMPRESSOR-FORMAT-RAW:CAPS">
592
+ <ANCHOR id="g-zlib-compressor-new" href="gio/GZlibCompressor.html#g-zlib-compressor-new">
593
+ <ANCHOR id="GZlibCompressor.property-details" href="gio/GZlibCompressor.html#GZlibCompressor.property-details">
594
+ <ANCHOR id="GZlibCompressor--format" href="gio/GZlibCompressor.html#GZlibCompressor--format">
595
+ <ANCHOR id="GZlibCompressor--level" href="gio/GZlibCompressor.html#GZlibCompressor--level">
596
+ <ANCHOR id="GZlibDecompressor" href="gio/GZlibDecompressor.html">
597
+ <ANCHOR id="GZlibDecompressor.synopsis" href="gio/GZlibDecompressor.html#GZlibDecompressor.synopsis">
598
+ <ANCHOR id="GZlibDecompressor.object-hierarchy" href="gio/GZlibDecompressor.html#GZlibDecompressor.object-hierarchy">
599
+ <ANCHOR id="GZlibDecompressor.implemented-interfaces" href="gio/GZlibDecompressor.html#GZlibDecompressor.implemented-interfaces">
600
+ <ANCHOR id="GZlibDecompressor.properties" href="gio/GZlibDecompressor.html#GZlibDecompressor.properties">
601
+ <ANCHOR id="GZlibDecompressor.description" href="gio/GZlibDecompressor.html#GZlibDecompressor.description">
602
+ <ANCHOR id="GZlibDecompressor.details" href="gio/GZlibDecompressor.html#GZlibDecompressor.details">
603
+ <ANCHOR id="GZlibDecompressor-struct" href="gio/GZlibDecompressor.html#GZlibDecompressor-struct">
604
+ <ANCHOR id="g-zlib-decompressor-new" href="gio/GZlibDecompressor.html#g-zlib-decompressor-new">
605
+ <ANCHOR id="GZlibDecompressor.property-details" href="gio/GZlibDecompressor.html#GZlibDecompressor.property-details">
606
+ <ANCHOR id="GZlibDecompressor--format" href="gio/GZlibDecompressor.html#GZlibDecompressor--format">
607
+ <ANCHOR id="GSeekable" href="gio/GSeekable.html">
608
+ <ANCHOR id="GSeekable.synopsis" href="gio/GSeekable.html#GSeekable.synopsis">
609
+ <ANCHOR id="GSeekable.object-hierarchy" href="gio/GSeekable.html#GSeekable.object-hierarchy">
610
+ <ANCHOR id="GSeekable.prerequisites" href="gio/GSeekable.html#GSeekable.prerequisites">
611
+ <ANCHOR id="GSeekable.implementations" href="gio/GSeekable.html#GSeekable.implementations">
612
+ <ANCHOR id="GSeekable.description" href="gio/GSeekable.html#GSeekable.description">
613
+ <ANCHOR id="GSeekable.details" href="gio/GSeekable.html#GSeekable.details">
614
+ <ANCHOR id="GSeekable-struct" href="gio/GSeekable.html#GSeekable-struct">
615
+ <ANCHOR id="GSeekableIface" href="gio/GSeekable.html#GSeekableIface">
616
+ <ANCHOR id="g-seekable-tell" href="gio/GSeekable.html#g-seekable-tell">
617
+ <ANCHOR id="g-seekable-can-seek" href="gio/GSeekable.html#g-seekable-can-seek">
618
+ <ANCHOR id="g-seekable-seek" href="gio/GSeekable.html#g-seekable-seek">
619
+ <ANCHOR id="g-seekable-can-truncate" href="gio/GSeekable.html#g-seekable-can-truncate">
620
+ <ANCHOR id="g-seekable-truncate" href="gio/GSeekable.html#g-seekable-truncate">
621
+ <ANCHOR id="GSeekable.see-also" href="gio/GSeekable.html#GSeekable.see-also">
622
+ <ANCHOR id="GInputStream" href="gio/GInputStream.html">
623
+ <ANCHOR id="GInputStream.synopsis" href="gio/GInputStream.html#GInputStream.synopsis">
624
+ <ANCHOR id="GInputStream.object-hierarchy" href="gio/GInputStream.html#GInputStream.object-hierarchy">
625
+ <ANCHOR id="GInputStream.description" href="gio/GInputStream.html#GInputStream.description">
626
+ <ANCHOR id="GInputStream.details" href="gio/GInputStream.html#GInputStream.details">
627
+ <ANCHOR id="GInputStream-struct" href="gio/GInputStream.html#GInputStream-struct">
628
+ <ANCHOR id="g-input-stream-read" href="gio/GInputStream.html#g-input-stream-read">
629
+ <ANCHOR id="g-input-stream-read-all" href="gio/GInputStream.html#g-input-stream-read-all">
630
+ <ANCHOR id="g-input-stream-skip" href="gio/GInputStream.html#g-input-stream-skip">
631
+ <ANCHOR id="g-input-stream-close" href="gio/GInputStream.html#g-input-stream-close">
632
+ <ANCHOR id="g-input-stream-read-async" href="gio/GInputStream.html#g-input-stream-read-async">
633
+ <ANCHOR id="g-input-stream-read-finish" href="gio/GInputStream.html#g-input-stream-read-finish">
634
+ <ANCHOR id="g-input-stream-skip-async" href="gio/GInputStream.html#g-input-stream-skip-async">
635
+ <ANCHOR id="g-input-stream-skip-finish" href="gio/GInputStream.html#g-input-stream-skip-finish">
636
+ <ANCHOR id="g-input-stream-close-async" href="gio/GInputStream.html#g-input-stream-close-async">
637
+ <ANCHOR id="g-input-stream-close-finish" href="gio/GInputStream.html#g-input-stream-close-finish">
638
+ <ANCHOR id="g-input-stream-is-closed" href="gio/GInputStream.html#g-input-stream-is-closed">
639
+ <ANCHOR id="g-input-stream-has-pending" href="gio/GInputStream.html#g-input-stream-has-pending">
640
+ <ANCHOR id="g-input-stream-set-pending" href="gio/GInputStream.html#g-input-stream-set-pending">
641
+ <ANCHOR id="g-input-stream-clear-pending" href="gio/GInputStream.html#g-input-stream-clear-pending">
642
+ <ANCHOR id="GOutputStream" href="gio/GOutputStream.html">
643
+ <ANCHOR id="GOutputStream.synopsis" href="gio/GOutputStream.html#GOutputStream.synopsis">
644
+ <ANCHOR id="GOutputStream.object-hierarchy" href="gio/GOutputStream.html#GOutputStream.object-hierarchy">
645
+ <ANCHOR id="GOutputStream.description" href="gio/GOutputStream.html#GOutputStream.description">
646
+ <ANCHOR id="GOutputStream.details" href="gio/GOutputStream.html#GOutputStream.details">
647
+ <ANCHOR id="GOutputStreamSpliceFlags" href="gio/GOutputStream.html#GOutputStreamSpliceFlags">
648
+ <ANCHOR id="G-OUTPUT-STREAM-SPLICE-NONE:CAPS" href="gio/GOutputStream.html#G-OUTPUT-STREAM-SPLICE-NONE:CAPS">
649
+ <ANCHOR id="G-OUTPUT-STREAM-SPLICE-CLOSE-SOURCE:CAPS" href="gio/GOutputStream.html#G-OUTPUT-STREAM-SPLICE-CLOSE-SOURCE:CAPS">
650
+ <ANCHOR id="G-OUTPUT-STREAM-SPLICE-CLOSE-TARGET:CAPS" href="gio/GOutputStream.html#G-OUTPUT-STREAM-SPLICE-CLOSE-TARGET:CAPS">
651
+ <ANCHOR id="GOutputStream-struct" href="gio/GOutputStream.html#GOutputStream-struct">
652
+ <ANCHOR id="g-output-stream-write" href="gio/GOutputStream.html#g-output-stream-write">
653
+ <ANCHOR id="g-output-stream-write-all" href="gio/GOutputStream.html#g-output-stream-write-all">
654
+ <ANCHOR id="g-output-stream-splice" href="gio/GOutputStream.html#g-output-stream-splice">
655
+ <ANCHOR id="g-output-stream-flush" href="gio/GOutputStream.html#g-output-stream-flush">
656
+ <ANCHOR id="g-output-stream-close" href="gio/GOutputStream.html#g-output-stream-close">
657
+ <ANCHOR id="g-output-stream-write-async" href="gio/GOutputStream.html#g-output-stream-write-async">
658
+ <ANCHOR id="g-output-stream-write-finish" href="gio/GOutputStream.html#g-output-stream-write-finish">
659
+ <ANCHOR id="g-output-stream-splice-async" href="gio/GOutputStream.html#g-output-stream-splice-async">
660
+ <ANCHOR id="g-output-stream-splice-finish" href="gio/GOutputStream.html#g-output-stream-splice-finish">
661
+ <ANCHOR id="g-output-stream-flush-async" href="gio/GOutputStream.html#g-output-stream-flush-async">
662
+ <ANCHOR id="g-output-stream-flush-finish" href="gio/GOutputStream.html#g-output-stream-flush-finish">
663
+ <ANCHOR id="g-output-stream-close-async" href="gio/GOutputStream.html#g-output-stream-close-async">
664
+ <ANCHOR id="g-output-stream-close-finish" href="gio/GOutputStream.html#g-output-stream-close-finish">
665
+ <ANCHOR id="g-output-stream-is-closing" href="gio/GOutputStream.html#g-output-stream-is-closing">
666
+ <ANCHOR id="g-output-stream-is-closed" href="gio/GOutputStream.html#g-output-stream-is-closed">
667
+ <ANCHOR id="g-output-stream-has-pending" href="gio/GOutputStream.html#g-output-stream-has-pending">
668
+ <ANCHOR id="g-output-stream-set-pending" href="gio/GOutputStream.html#g-output-stream-set-pending">
669
+ <ANCHOR id="g-output-stream-clear-pending" href="gio/GOutputStream.html#g-output-stream-clear-pending">
670
+ <ANCHOR id="GIOStream" href="gio/GIOStream.html">
671
+ <ANCHOR id="GIOStream.synopsis" href="gio/GIOStream.html#GIOStream.synopsis">
672
+ <ANCHOR id="GIOStream.object-hierarchy" href="gio/GIOStream.html#GIOStream.object-hierarchy">
673
+ <ANCHOR id="GIOStream.properties" href="gio/GIOStream.html#GIOStream.properties">
674
+ <ANCHOR id="GIOStream.description" href="gio/GIOStream.html#GIOStream.description">
675
+ <ANCHOR id="GIOStream.details" href="gio/GIOStream.html#GIOStream.details">
676
+ <ANCHOR id="GIOStream-struct" href="gio/GIOStream.html#GIOStream-struct">
677
+ <ANCHOR id="g-io-stream-get-input-stream" href="gio/GIOStream.html#g-io-stream-get-input-stream">
678
+ <ANCHOR id="g-io-stream-get-output-stream" href="gio/GIOStream.html#g-io-stream-get-output-stream">
679
+ <ANCHOR id="g-io-stream-close" href="gio/GIOStream.html#g-io-stream-close">
680
+ <ANCHOR id="g-io-stream-close-async" href="gio/GIOStream.html#g-io-stream-close-async">
681
+ <ANCHOR id="g-io-stream-close-finish" href="gio/GIOStream.html#g-io-stream-close-finish">
682
+ <ANCHOR id="g-io-stream-is-closed" href="gio/GIOStream.html#g-io-stream-is-closed">
683
+ <ANCHOR id="g-io-stream-has-pending" href="gio/GIOStream.html#g-io-stream-has-pending">
684
+ <ANCHOR id="g-io-stream-set-pending" href="gio/GIOStream.html#g-io-stream-set-pending">
685
+ <ANCHOR id="g-io-stream-clear-pending" href="gio/GIOStream.html#g-io-stream-clear-pending">
686
+ <ANCHOR id="GIOStream.property-details" href="gio/GIOStream.html#GIOStream.property-details">
687
+ <ANCHOR id="GIOStream--closed" href="gio/GIOStream.html#GIOStream--closed">
688
+ <ANCHOR id="GIOStream--input-stream" href="gio/GIOStream.html#GIOStream--input-stream">
689
+ <ANCHOR id="GIOStream--output-stream" href="gio/GIOStream.html#GIOStream--output-stream">
690
+ <ANCHOR id="GIOStream.see-also" href="gio/GIOStream.html#GIOStream.see-also">
691
+ <ANCHOR id="GFileInputStream" href="gio/GFileInputStream.html">
692
+ <ANCHOR id="GFileInputStream.synopsis" href="gio/GFileInputStream.html#GFileInputStream.synopsis">
693
+ <ANCHOR id="GFileInputStream.object-hierarchy" href="gio/GFileInputStream.html#GFileInputStream.object-hierarchy">
694
+ <ANCHOR id="GFileInputStream.implemented-interfaces" href="gio/GFileInputStream.html#GFileInputStream.implemented-interfaces">
695
+ <ANCHOR id="GFileInputStream.description" href="gio/GFileInputStream.html#GFileInputStream.description">
696
+ <ANCHOR id="GFileInputStream.details" href="gio/GFileInputStream.html#GFileInputStream.details">
697
+ <ANCHOR id="GFileInputStream-struct" href="gio/GFileInputStream.html#GFileInputStream-struct">
698
+ <ANCHOR id="g-file-input-stream-query-info" href="gio/GFileInputStream.html#g-file-input-stream-query-info">
699
+ <ANCHOR id="g-file-input-stream-query-info-async" href="gio/GFileInputStream.html#g-file-input-stream-query-info-async">
700
+ <ANCHOR id="g-file-input-stream-query-info-finish" href="gio/GFileInputStream.html#g-file-input-stream-query-info-finish">
701
+ <ANCHOR id="GFileInputStream.see-also" href="gio/GFileInputStream.html#GFileInputStream.see-also">
702
+ <ANCHOR id="GFileOutputStream" href="gio/GFileOutputStream.html">
703
+ <ANCHOR id="GFileOutputStream.synopsis" href="gio/GFileOutputStream.html#GFileOutputStream.synopsis">
704
+ <ANCHOR id="GFileOutputStream.object-hierarchy" href="gio/GFileOutputStream.html#GFileOutputStream.object-hierarchy">
705
+ <ANCHOR id="GFileOutputStream.implemented-interfaces" href="gio/GFileOutputStream.html#GFileOutputStream.implemented-interfaces">
706
+ <ANCHOR id="GFileOutputStream.description" href="gio/GFileOutputStream.html#GFileOutputStream.description">
707
+ <ANCHOR id="GFileOutputStream.details" href="gio/GFileOutputStream.html#GFileOutputStream.details">
708
+ <ANCHOR id="GFileOutputStream-struct" href="gio/GFileOutputStream.html#GFileOutputStream-struct">
709
+ <ANCHOR id="g-file-output-stream-query-info" href="gio/GFileOutputStream.html#g-file-output-stream-query-info">
710
+ <ANCHOR id="g-file-output-stream-query-info-async" href="gio/GFileOutputStream.html#g-file-output-stream-query-info-async">
711
+ <ANCHOR id="g-file-output-stream-query-info-finish" href="gio/GFileOutputStream.html#g-file-output-stream-query-info-finish">
712
+ <ANCHOR id="g-file-output-stream-get-etag" href="gio/GFileOutputStream.html#g-file-output-stream-get-etag">
713
+ <ANCHOR id="GFileOutputStream.see-also" href="gio/GFileOutputStream.html#GFileOutputStream.see-also">
714
+ <ANCHOR id="GFileIOStream" href="gio/GFileIOStream.html">
715
+ <ANCHOR id="GFileIOStream.synopsis" href="gio/GFileIOStream.html#GFileIOStream.synopsis">
716
+ <ANCHOR id="GFileIOStream.object-hierarchy" href="gio/GFileIOStream.html#GFileIOStream.object-hierarchy">
717
+ <ANCHOR id="GFileIOStream.implemented-interfaces" href="gio/GFileIOStream.html#GFileIOStream.implemented-interfaces">
718
+ <ANCHOR id="GFileIOStream.description" href="gio/GFileIOStream.html#GFileIOStream.description">
719
+ <ANCHOR id="GFileIOStream.details" href="gio/GFileIOStream.html#GFileIOStream.details">
720
+ <ANCHOR id="GFileIOStream-struct" href="gio/GFileIOStream.html#GFileIOStream-struct">
721
+ <ANCHOR id="g-file-io-stream-get-etag" href="gio/GFileIOStream.html#g-file-io-stream-get-etag">
722
+ <ANCHOR id="g-file-io-stream-query-info" href="gio/GFileIOStream.html#g-file-io-stream-query-info">
723
+ <ANCHOR id="g-file-io-stream-query-info-async" href="gio/GFileIOStream.html#g-file-io-stream-query-info-async">
724
+ <ANCHOR id="g-file-io-stream-query-info-finish" href="gio/GFileIOStream.html#g-file-io-stream-query-info-finish">
725
+ <ANCHOR id="GFileIOStream.see-also" href="gio/GFileIOStream.html#GFileIOStream.see-also">
726
+ <ANCHOR id="GFileDescriptorBased" href="gio/GFileDescriptorBased.html">
727
+ <ANCHOR id="GFileDescriptorBased.synopsis" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.synopsis">
728
+ <ANCHOR id="GFileDescriptorBased.object-hierarchy" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.object-hierarchy">
729
+ <ANCHOR id="GFileDescriptorBased.prerequisites" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.prerequisites">
730
+ <ANCHOR id="GFileDescriptorBased.description" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.description">
731
+ <ANCHOR id="GFileDescriptorBased.details" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.details">
732
+ <ANCHOR id="GFileDescriptorBased-struct" href="gio/GFileDescriptorBased.html#GFileDescriptorBased-struct">
733
+ <ANCHOR id="g-file-descriptor-based-get-fd" href="gio/GFileDescriptorBased.html#g-file-descriptor-based-get-fd">
734
+ <ANCHOR id="GFileDescriptorBased.see-also" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.see-also">
735
+ <ANCHOR id="GFilterInputStream" href="gio/GFilterInputStream.html">
736
+ <ANCHOR id="GFilterInputStream.synopsis" href="gio/GFilterInputStream.html#GFilterInputStream.synopsis">
737
+ <ANCHOR id="GFilterInputStream.object-hierarchy" href="gio/GFilterInputStream.html#GFilterInputStream.object-hierarchy">
738
+ <ANCHOR id="GFilterInputStream.properties" href="gio/GFilterInputStream.html#GFilterInputStream.properties">
739
+ <ANCHOR id="GFilterInputStream.description" href="gio/GFilterInputStream.html#GFilterInputStream.description">
740
+ <ANCHOR id="GFilterInputStream.details" href="gio/GFilterInputStream.html#GFilterInputStream.details">
741
+ <ANCHOR id="GFilterInputStream-struct" href="gio/GFilterInputStream.html#GFilterInputStream-struct">
742
+ <ANCHOR id="g-filter-input-stream-get-base-stream" href="gio/GFilterInputStream.html#g-filter-input-stream-get-base-stream">
743
+ <ANCHOR id="g-filter-input-stream-get-close-base-stream" href="gio/GFilterInputStream.html#g-filter-input-stream-get-close-base-stream">
744
+ <ANCHOR id="g-filter-input-stream-set-close-base-stream" href="gio/GFilterInputStream.html#g-filter-input-stream-set-close-base-stream">
745
+ <ANCHOR id="GFilterInputStream.property-details" href="gio/GFilterInputStream.html#GFilterInputStream.property-details">
746
+ <ANCHOR id="GFilterInputStream--base-stream" href="gio/GFilterInputStream.html#GFilterInputStream--base-stream">
747
+ <ANCHOR id="GFilterInputStream--close-base-stream" href="gio/GFilterInputStream.html#GFilterInputStream--close-base-stream">
748
+ <ANCHOR id="GFilterOutputStream" href="gio/GFilterOutputStream.html">
749
+ <ANCHOR id="GFilterOutputStream.synopsis" href="gio/GFilterOutputStream.html#GFilterOutputStream.synopsis">
750
+ <ANCHOR id="GFilterOutputStream.object-hierarchy" href="gio/GFilterOutputStream.html#GFilterOutputStream.object-hierarchy">
751
+ <ANCHOR id="GFilterOutputStream.properties" href="gio/GFilterOutputStream.html#GFilterOutputStream.properties">
752
+ <ANCHOR id="GFilterOutputStream.description" href="gio/GFilterOutputStream.html#GFilterOutputStream.description">
753
+ <ANCHOR id="GFilterOutputStream.details" href="gio/GFilterOutputStream.html#GFilterOutputStream.details">
754
+ <ANCHOR id="GFilterOutputStream-struct" href="gio/GFilterOutputStream.html#GFilterOutputStream-struct">
755
+ <ANCHOR id="g-filter-output-stream-get-base-stream" href="gio/GFilterOutputStream.html#g-filter-output-stream-get-base-stream">
756
+ <ANCHOR id="g-filter-output-stream-get-close-base-stream" href="gio/GFilterOutputStream.html#g-filter-output-stream-get-close-base-stream">
757
+ <ANCHOR id="g-filter-output-stream-set-close-base-stream" href="gio/GFilterOutputStream.html#g-filter-output-stream-set-close-base-stream">
758
+ <ANCHOR id="GFilterOutputStream.property-details" href="gio/GFilterOutputStream.html#GFilterOutputStream.property-details">
759
+ <ANCHOR id="GFilterOutputStream--base-stream" href="gio/GFilterOutputStream.html#GFilterOutputStream--base-stream">
760
+ <ANCHOR id="GFilterOutputStream--close-base-stream" href="gio/GFilterOutputStream.html#GFilterOutputStream--close-base-stream">
761
+ <ANCHOR id="GMemoryInputStream" href="gio/GMemoryInputStream.html">
762
+ <ANCHOR id="GMemoryInputStream.synopsis" href="gio/GMemoryInputStream.html#GMemoryInputStream.synopsis">
763
+ <ANCHOR id="GMemoryInputStream.object-hierarchy" href="gio/GMemoryInputStream.html#GMemoryInputStream.object-hierarchy">
764
+ <ANCHOR id="GMemoryInputStream.implemented-interfaces" href="gio/GMemoryInputStream.html#GMemoryInputStream.implemented-interfaces">
765
+ <ANCHOR id="GMemoryInputStream.description" href="gio/GMemoryInputStream.html#GMemoryInputStream.description">
766
+ <ANCHOR id="GMemoryInputStream.details" href="gio/GMemoryInputStream.html#GMemoryInputStream.details">
767
+ <ANCHOR id="GMemoryInputStream-struct" href="gio/GMemoryInputStream.html#GMemoryInputStream-struct">
768
+ <ANCHOR id="g-memory-input-stream-new" href="gio/GMemoryInputStream.html#g-memory-input-stream-new">
769
+ <ANCHOR id="g-memory-input-stream-new-from-data" href="gio/GMemoryInputStream.html#g-memory-input-stream-new-from-data">
770
+ <ANCHOR id="g-memory-input-stream-add-data" href="gio/GMemoryInputStream.html#g-memory-input-stream-add-data">
771
+ <ANCHOR id="GMemoryInputStream.see-also" href="gio/GMemoryInputStream.html#GMemoryInputStream.see-also">
772
+ <ANCHOR id="GMemoryOutputStream" href="gio/GMemoryOutputStream.html">
773
+ <ANCHOR id="GMemoryOutputStream.synopsis" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.synopsis">
774
+ <ANCHOR id="GMemoryOutputStream.object-hierarchy" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.object-hierarchy">
775
+ <ANCHOR id="GMemoryOutputStream.implemented-interfaces" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.implemented-interfaces">
776
+ <ANCHOR id="GMemoryOutputStream.properties" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.properties">
777
+ <ANCHOR id="GMemoryOutputStream.description" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.description">
778
+ <ANCHOR id="GMemoryOutputStream.details" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.details">
779
+ <ANCHOR id="GReallocFunc" href="gio/GMemoryOutputStream.html#GReallocFunc">
780
+ <ANCHOR id="GMemoryOutputStream-struct" href="gio/GMemoryOutputStream.html#GMemoryOutputStream-struct">
781
+ <ANCHOR id="g-memory-output-stream-new" href="gio/GMemoryOutputStream.html#g-memory-output-stream-new">
782
+ <ANCHOR id="g-memory-output-stream-get-data" href="gio/GMemoryOutputStream.html#g-memory-output-stream-get-data">
783
+ <ANCHOR id="g-memory-output-stream-get-size" href="gio/GMemoryOutputStream.html#g-memory-output-stream-get-size">
784
+ <ANCHOR id="g-memory-output-stream-get-data-size" href="gio/GMemoryOutputStream.html#g-memory-output-stream-get-data-size">
785
+ <ANCHOR id="GMemoryOutputStream.property-details" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.property-details">
786
+ <ANCHOR id="GMemoryOutputStream--data" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--data">
787
+ <ANCHOR id="GMemoryOutputStream--data-size" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--data-size">
788
+ <ANCHOR id="GMemoryOutputStream--destroy-function" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--destroy-function">
789
+ <ANCHOR id="GMemoryOutputStream--realloc-function" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--realloc-function">
790
+ <ANCHOR id="GMemoryOutputStream--size" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--size">
791
+ <ANCHOR id="GMemoryOutputStream.see-also" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.see-also">
792
+ <ANCHOR id="GBufferedInputStream" href="gio/GBufferedInputStream.html">
793
+ <ANCHOR id="GBufferedInputStream.synopsis" href="gio/GBufferedInputStream.html#GBufferedInputStream.synopsis">
794
+ <ANCHOR id="GBufferedInputStream.object-hierarchy" href="gio/GBufferedInputStream.html#GBufferedInputStream.object-hierarchy">
795
+ <ANCHOR id="GBufferedInputStream.properties" href="gio/GBufferedInputStream.html#GBufferedInputStream.properties">
796
+ <ANCHOR id="GBufferedInputStream.description" href="gio/GBufferedInputStream.html#GBufferedInputStream.description">
797
+ <ANCHOR id="GBufferedInputStream.details" href="gio/GBufferedInputStream.html#GBufferedInputStream.details">
798
+ <ANCHOR id="GBufferedInputStream-struct" href="gio/GBufferedInputStream.html#GBufferedInputStream-struct">
799
+ <ANCHOR id="g-buffered-input-stream-new" href="gio/GBufferedInputStream.html#g-buffered-input-stream-new">
800
+ <ANCHOR id="g-buffered-input-stream-new-sized" href="gio/GBufferedInputStream.html#g-buffered-input-stream-new-sized">
801
+ <ANCHOR id="g-buffered-input-stream-get-buffer-size" href="gio/GBufferedInputStream.html#g-buffered-input-stream-get-buffer-size">
802
+ <ANCHOR id="g-buffered-input-stream-set-buffer-size" href="gio/GBufferedInputStream.html#g-buffered-input-stream-set-buffer-size">
803
+ <ANCHOR id="g-buffered-input-stream-get-available" href="gio/GBufferedInputStream.html#g-buffered-input-stream-get-available">
804
+ <ANCHOR id="g-buffered-input-stream-peek-buffer" href="gio/GBufferedInputStream.html#g-buffered-input-stream-peek-buffer">
805
+ <ANCHOR id="g-buffered-input-stream-peek" href="gio/GBufferedInputStream.html#g-buffered-input-stream-peek">
806
+ <ANCHOR id="g-buffered-input-stream-fill" href="gio/GBufferedInputStream.html#g-buffered-input-stream-fill">
807
+ <ANCHOR id="g-buffered-input-stream-fill-async" href="gio/GBufferedInputStream.html#g-buffered-input-stream-fill-async">
808
+ <ANCHOR id="g-buffered-input-stream-fill-finish" href="gio/GBufferedInputStream.html#g-buffered-input-stream-fill-finish">
809
+ <ANCHOR id="g-buffered-input-stream-read-byte" href="gio/GBufferedInputStream.html#g-buffered-input-stream-read-byte">
810
+ <ANCHOR id="GBufferedInputStream.property-details" href="gio/GBufferedInputStream.html#GBufferedInputStream.property-details">
811
+ <ANCHOR id="GBufferedInputStream--buffer-size" href="gio/GBufferedInputStream.html#GBufferedInputStream--buffer-size">
812
+ <ANCHOR id="GBufferedInputStream.see-also" href="gio/GBufferedInputStream.html#GBufferedInputStream.see-also">
813
+ <ANCHOR id="GBufferedOutputStream" href="gio/GBufferedOutputStream.html">
814
+ <ANCHOR id="GBufferedOutputStream.synopsis" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.synopsis">
815
+ <ANCHOR id="GBufferedOutputStream.object-hierarchy" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.object-hierarchy">
816
+ <ANCHOR id="GBufferedOutputStream.properties" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.properties">
817
+ <ANCHOR id="GBufferedOutputStream.description" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.description">
818
+ <ANCHOR id="GBufferedOutputStream.details" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.details">
819
+ <ANCHOR id="GBufferedOutputStream-struct" href="gio/GBufferedOutputStream.html#GBufferedOutputStream-struct">
820
+ <ANCHOR id="g-buffered-output-stream-new" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-new">
821
+ <ANCHOR id="g-buffered-output-stream-new-sized" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-new-sized">
822
+ <ANCHOR id="g-buffered-output-stream-get-buffer-size" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-get-buffer-size">
823
+ <ANCHOR id="g-buffered-output-stream-set-buffer-size" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-set-buffer-size">
824
+ <ANCHOR id="g-buffered-output-stream-get-auto-grow" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-get-auto-grow">
825
+ <ANCHOR id="g-buffered-output-stream-set-auto-grow" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-set-auto-grow">
826
+ <ANCHOR id="GBufferedOutputStream.property-details" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.property-details">
827
+ <ANCHOR id="GBufferedOutputStream--auto-grow" href="gio/GBufferedOutputStream.html#GBufferedOutputStream--auto-grow">
828
+ <ANCHOR id="GBufferedOutputStream--buffer-size" href="gio/GBufferedOutputStream.html#GBufferedOutputStream--buffer-size">
829
+ <ANCHOR id="GBufferedOutputStream.see-also" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.see-also">
830
+ <ANCHOR id="GDataInputStream" href="gio/GDataInputStream.html">
831
+ <ANCHOR id="GDataInputStream.synopsis" href="gio/GDataInputStream.html#GDataInputStream.synopsis">
832
+ <ANCHOR id="GDataInputStream.object-hierarchy" href="gio/GDataInputStream.html#GDataInputStream.object-hierarchy">
833
+ <ANCHOR id="GDataInputStream.properties" href="gio/GDataInputStream.html#GDataInputStream.properties">
834
+ <ANCHOR id="GDataInputStream.description" href="gio/GDataInputStream.html#GDataInputStream.description">
835
+ <ANCHOR id="GDataInputStream.details" href="gio/GDataInputStream.html#GDataInputStream.details">
836
+ <ANCHOR id="GDataInputStream-struct" href="gio/GDataInputStream.html#GDataInputStream-struct">
837
+ <ANCHOR id="GDataStreamByteOrder" href="gio/GDataInputStream.html#GDataStreamByteOrder">
838
+ <ANCHOR id="G-DATA-STREAM-BYTE-ORDER-BIG-ENDIAN:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-BYTE-ORDER-BIG-ENDIAN:CAPS">
839
+ <ANCHOR id="G-DATA-STREAM-BYTE-ORDER-LITTLE-ENDIAN:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-BYTE-ORDER-LITTLE-ENDIAN:CAPS">
840
+ <ANCHOR id="G-DATA-STREAM-BYTE-ORDER-HOST-ENDIAN:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-BYTE-ORDER-HOST-ENDIAN:CAPS">
841
+ <ANCHOR id="GDataStreamNewlineType" href="gio/GDataInputStream.html#GDataStreamNewlineType">
842
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-LF:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-LF:CAPS">
843
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-CR:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-CR:CAPS">
844
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-CR-LF:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-CR-LF:CAPS">
845
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-ANY:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-ANY:CAPS">
846
+ <ANCHOR id="g-data-input-stream-new" href="gio/GDataInputStream.html#g-data-input-stream-new">
847
+ <ANCHOR id="g-data-input-stream-set-byte-order" href="gio/GDataInputStream.html#g-data-input-stream-set-byte-order">
848
+ <ANCHOR id="g-data-input-stream-get-byte-order" href="gio/GDataInputStream.html#g-data-input-stream-get-byte-order">
849
+ <ANCHOR id="g-data-input-stream-set-newline-type" href="gio/GDataInputStream.html#g-data-input-stream-set-newline-type">
850
+ <ANCHOR id="g-data-input-stream-get-newline-type" href="gio/GDataInputStream.html#g-data-input-stream-get-newline-type">
851
+ <ANCHOR id="g-data-input-stream-read-byte" href="gio/GDataInputStream.html#g-data-input-stream-read-byte">
852
+ <ANCHOR id="g-data-input-stream-read-int16" href="gio/GDataInputStream.html#g-data-input-stream-read-int16">
853
+ <ANCHOR id="g-data-input-stream-read-uint16" href="gio/GDataInputStream.html#g-data-input-stream-read-uint16">
854
+ <ANCHOR id="g-data-input-stream-read-int32" href="gio/GDataInputStream.html#g-data-input-stream-read-int32">
855
+ <ANCHOR id="g-data-input-stream-read-uint32" href="gio/GDataInputStream.html#g-data-input-stream-read-uint32">
856
+ <ANCHOR id="g-data-input-stream-read-int64" href="gio/GDataInputStream.html#g-data-input-stream-read-int64">
857
+ <ANCHOR id="g-data-input-stream-read-uint64" href="gio/GDataInputStream.html#g-data-input-stream-read-uint64">
858
+ <ANCHOR id="g-data-input-stream-read-line" href="gio/GDataInputStream.html#g-data-input-stream-read-line">
859
+ <ANCHOR id="g-data-input-stream-read-line-async" href="gio/GDataInputStream.html#g-data-input-stream-read-line-async">
860
+ <ANCHOR id="g-data-input-stream-read-line-finish" href="gio/GDataInputStream.html#g-data-input-stream-read-line-finish">
861
+ <ANCHOR id="g-data-input-stream-read-until" href="gio/GDataInputStream.html#g-data-input-stream-read-until">
862
+ <ANCHOR id="g-data-input-stream-read-until-async" href="gio/GDataInputStream.html#g-data-input-stream-read-until-async">
863
+ <ANCHOR id="g-data-input-stream-read-until-finish" href="gio/GDataInputStream.html#g-data-input-stream-read-until-finish">
864
+ <ANCHOR id="GDataInputStream.property-details" href="gio/GDataInputStream.html#GDataInputStream.property-details">
865
+ <ANCHOR id="GDataInputStream--byte-order" href="gio/GDataInputStream.html#GDataInputStream--byte-order">
866
+ <ANCHOR id="GDataInputStream--newline-type" href="gio/GDataInputStream.html#GDataInputStream--newline-type">
867
+ <ANCHOR id="GDataInputStream.see-also" href="gio/GDataInputStream.html#GDataInputStream.see-also">
868
+ <ANCHOR id="GDataOutputStream" href="gio/GDataOutputStream.html">
869
+ <ANCHOR id="GDataOutputStream.synopsis" href="gio/GDataOutputStream.html#GDataOutputStream.synopsis">
870
+ <ANCHOR id="GDataOutputStream.object-hierarchy" href="gio/GDataOutputStream.html#GDataOutputStream.object-hierarchy">
871
+ <ANCHOR id="GDataOutputStream.properties" href="gio/GDataOutputStream.html#GDataOutputStream.properties">
872
+ <ANCHOR id="GDataOutputStream.description" href="gio/GDataOutputStream.html#GDataOutputStream.description">
873
+ <ANCHOR id="GDataOutputStream.details" href="gio/GDataOutputStream.html#GDataOutputStream.details">
874
+ <ANCHOR id="GDataOutputStream-struct" href="gio/GDataOutputStream.html#GDataOutputStream-struct">
875
+ <ANCHOR id="g-data-output-stream-new" href="gio/GDataOutputStream.html#g-data-output-stream-new">
876
+ <ANCHOR id="g-data-output-stream-set-byte-order" href="gio/GDataOutputStream.html#g-data-output-stream-set-byte-order">
877
+ <ANCHOR id="g-data-output-stream-get-byte-order" href="gio/GDataOutputStream.html#g-data-output-stream-get-byte-order">
878
+ <ANCHOR id="g-data-output-stream-put-byte" href="gio/GDataOutputStream.html#g-data-output-stream-put-byte">
879
+ <ANCHOR id="g-data-output-stream-put-int16" href="gio/GDataOutputStream.html#g-data-output-stream-put-int16">
880
+ <ANCHOR id="g-data-output-stream-put-uint16" href="gio/GDataOutputStream.html#g-data-output-stream-put-uint16">
881
+ <ANCHOR id="g-data-output-stream-put-int32" href="gio/GDataOutputStream.html#g-data-output-stream-put-int32">
882
+ <ANCHOR id="g-data-output-stream-put-uint32" href="gio/GDataOutputStream.html#g-data-output-stream-put-uint32">
883
+ <ANCHOR id="g-data-output-stream-put-int64" href="gio/GDataOutputStream.html#g-data-output-stream-put-int64">
884
+ <ANCHOR id="g-data-output-stream-put-uint64" href="gio/GDataOutputStream.html#g-data-output-stream-put-uint64">
885
+ <ANCHOR id="g-data-output-stream-put-string" href="gio/GDataOutputStream.html#g-data-output-stream-put-string">
886
+ <ANCHOR id="GDataOutputStream.property-details" href="gio/GDataOutputStream.html#GDataOutputStream.property-details">
887
+ <ANCHOR id="GDataOutputStream--byte-order" href="gio/GDataOutputStream.html#GDataOutputStream--byte-order">
888
+ <ANCHOR id="GDataOutputStream.see-also" href="gio/GDataOutputStream.html#GDataOutputStream.see-also">
889
+ <ANCHOR id="GUnixInputStream" href="gio/GUnixInputStream.html">
890
+ <ANCHOR id="GUnixInputStream.synopsis" href="gio/GUnixInputStream.html#GUnixInputStream.synopsis">
891
+ <ANCHOR id="GUnixInputStream.object-hierarchy" href="gio/GUnixInputStream.html#GUnixInputStream.object-hierarchy">
892
+ <ANCHOR id="GUnixInputStream.properties" href="gio/GUnixInputStream.html#GUnixInputStream.properties">
893
+ <ANCHOR id="GUnixInputStream.description" href="gio/GUnixInputStream.html#GUnixInputStream.description">
894
+ <ANCHOR id="GUnixInputStream.details" href="gio/GUnixInputStream.html#GUnixInputStream.details">
895
+ <ANCHOR id="GUnixInputStream-struct" href="gio/GUnixInputStream.html#GUnixInputStream-struct">
896
+ <ANCHOR id="g-unix-input-stream-new" href="gio/GUnixInputStream.html#g-unix-input-stream-new">
897
+ <ANCHOR id="g-unix-input-stream-set-close-fd" href="gio/GUnixInputStream.html#g-unix-input-stream-set-close-fd">
898
+ <ANCHOR id="g-unix-input-stream-get-close-fd" href="gio/GUnixInputStream.html#g-unix-input-stream-get-close-fd">
899
+ <ANCHOR id="g-unix-input-stream-get-fd" href="gio/GUnixInputStream.html#g-unix-input-stream-get-fd">
900
+ <ANCHOR id="GUnixInputStream.property-details" href="gio/GUnixInputStream.html#GUnixInputStream.property-details">
901
+ <ANCHOR id="GUnixInputStream--close-fd" href="gio/GUnixInputStream.html#GUnixInputStream--close-fd">
902
+ <ANCHOR id="GUnixInputStream--fd" href="gio/GUnixInputStream.html#GUnixInputStream--fd">
903
+ <ANCHOR id="GUnixInputStream.see-also" href="gio/GUnixInputStream.html#GUnixInputStream.see-also">
904
+ <ANCHOR id="GUnixOutputStream" href="gio/GUnixOutputStream.html">
905
+ <ANCHOR id="GUnixOutputStream.synopsis" href="gio/GUnixOutputStream.html#GUnixOutputStream.synopsis">
906
+ <ANCHOR id="GUnixOutputStream.object-hierarchy" href="gio/GUnixOutputStream.html#GUnixOutputStream.object-hierarchy">
907
+ <ANCHOR id="GUnixOutputStream.properties" href="gio/GUnixOutputStream.html#GUnixOutputStream.properties">
908
+ <ANCHOR id="GUnixOutputStream.description" href="gio/GUnixOutputStream.html#GUnixOutputStream.description">
909
+ <ANCHOR id="GUnixOutputStream.details" href="gio/GUnixOutputStream.html#GUnixOutputStream.details">
910
+ <ANCHOR id="GUnixOutputStream-struct" href="gio/GUnixOutputStream.html#GUnixOutputStream-struct">
911
+ <ANCHOR id="g-unix-output-stream-new" href="gio/GUnixOutputStream.html#g-unix-output-stream-new">
912
+ <ANCHOR id="g-unix-output-stream-set-close-fd" href="gio/GUnixOutputStream.html#g-unix-output-stream-set-close-fd">
913
+ <ANCHOR id="g-unix-output-stream-get-close-fd" href="gio/GUnixOutputStream.html#g-unix-output-stream-get-close-fd">
914
+ <ANCHOR id="g-unix-output-stream-get-fd" href="gio/GUnixOutputStream.html#g-unix-output-stream-get-fd">
915
+ <ANCHOR id="GUnixOutputStream.property-details" href="gio/GUnixOutputStream.html#GUnixOutputStream.property-details">
916
+ <ANCHOR id="GUnixOutputStream--close-fd" href="gio/GUnixOutputStream.html#GUnixOutputStream--close-fd">
917
+ <ANCHOR id="GUnixOutputStream--fd" href="gio/GUnixOutputStream.html#GUnixOutputStream--fd">
918
+ <ANCHOR id="GUnixOutputStream.see-also" href="gio/GUnixOutputStream.html#GUnixOutputStream.see-also">
919
+ <ANCHOR id="gio-GConverterInputstream" href="gio/gio-GConverterInputstream.html">
920
+ <ANCHOR id="gio-GConverterInputstream.synopsis" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.synopsis">
921
+ <ANCHOR id="GConverterInputStream" href="gio/gio-GConverterInputstream.html#GConverterInputStream">
922
+ <ANCHOR id="gio-GConverterInputstream.object-hierarchy" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.object-hierarchy">
923
+ <ANCHOR id="gio-GConverterInputstream.properties" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.properties">
924
+ <ANCHOR id="gio-GConverterInputstream.description" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.description">
925
+ <ANCHOR id="gio-GConverterInputstream.details" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.details">
926
+ <ANCHOR id="GConverterInputStream-struct" href="gio/gio-GConverterInputstream.html#GConverterInputStream-struct">
927
+ <ANCHOR id="g-converter-input-stream-new" href="gio/gio-GConverterInputstream.html#g-converter-input-stream-new">
928
+ <ANCHOR id="g-converter-input-stream-get-converter" href="gio/gio-GConverterInputstream.html#g-converter-input-stream-get-converter">
929
+ <ANCHOR id="gio-GConverterInputstream.property-details" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.property-details">
930
+ <ANCHOR id="GConverterInputStream--converter" href="gio/gio-GConverterInputstream.html#GConverterInputStream--converter">
931
+ <ANCHOR id="gio-GConverterInputstream.see-also" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.see-also">
932
+ <ANCHOR id="gio-GConverterOutputstream" href="gio/gio-GConverterOutputstream.html">
933
+ <ANCHOR id="gio-GConverterOutputstream.synopsis" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.synopsis">
934
+ <ANCHOR id="GConverterOutputStream" href="gio/gio-GConverterOutputstream.html#GConverterOutputStream">
935
+ <ANCHOR id="gio-GConverterOutputstream.object-hierarchy" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.object-hierarchy">
936
+ <ANCHOR id="gio-GConverterOutputstream.properties" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.properties">
937
+ <ANCHOR id="gio-GConverterOutputstream.description" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.description">
938
+ <ANCHOR id="gio-GConverterOutputstream.details" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.details">
939
+ <ANCHOR id="GConverterOutputStream-struct" href="gio/gio-GConverterOutputstream.html#GConverterOutputStream-struct">
940
+ <ANCHOR id="g-converter-output-stream-new" href="gio/gio-GConverterOutputstream.html#g-converter-output-stream-new">
941
+ <ANCHOR id="g-converter-output-stream-get-converter" href="gio/gio-GConverterOutputstream.html#g-converter-output-stream-get-converter">
942
+ <ANCHOR id="gio-GConverterOutputstream.property-details" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.property-details">
943
+ <ANCHOR id="GConverterOutputStream--converter" href="gio/gio-GConverterOutputstream.html#GConverterOutputStream--converter">
944
+ <ANCHOR id="gio-GConverterOutputstream.see-also" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.see-also">
945
+ <ANCHOR id="gio-GContentType" href="gio/gio-GContentType.html">
946
+ <ANCHOR id="gio-GContentType.synopsis" href="gio/gio-GContentType.html#gio-GContentType.synopsis">
947
+ <ANCHOR id="gio-GContentType.description" href="gio/gio-GContentType.html#gio-GContentType.description">
948
+ <ANCHOR id="gio-GContentType.details" href="gio/gio-GContentType.html#gio-GContentType.details">
949
+ <ANCHOR id="g-content-type-equals" href="gio/gio-GContentType.html#g-content-type-equals">
950
+ <ANCHOR id="g-content-type-is-a" href="gio/gio-GContentType.html#g-content-type-is-a">
951
+ <ANCHOR id="g-content-type-is-unknown" href="gio/gio-GContentType.html#g-content-type-is-unknown">
952
+ <ANCHOR id="g-content-type-get-description" href="gio/gio-GContentType.html#g-content-type-get-description">
953
+ <ANCHOR id="g-content-type-get-mime-type" href="gio/gio-GContentType.html#g-content-type-get-mime-type">
954
+ <ANCHOR id="g-content-type-get-icon" href="gio/gio-GContentType.html#g-content-type-get-icon">
955
+ <ANCHOR id="g-content-type-can-be-executable" href="gio/gio-GContentType.html#g-content-type-can-be-executable">
956
+ <ANCHOR id="g-content-type-from-mime-type" href="gio/gio-GContentType.html#g-content-type-from-mime-type">
957
+ <ANCHOR id="g-content-type-guess" href="gio/gio-GContentType.html#g-content-type-guess">
958
+ <ANCHOR id="g-content-type-guess-for-tree" href="gio/gio-GContentType.html#g-content-type-guess-for-tree">
959
+ <ANCHOR id="g-content-types-get-registered" href="gio/gio-GContentType.html#g-content-types-get-registered">
960
+ <ANCHOR id="GAppInfo" href="gio/GAppInfo.html">
961
+ <ANCHOR id="GAppInfo.synopsis" href="gio/GAppInfo.html#GAppInfo.synopsis">
962
+ <ANCHOR id="GAppLaunchContext" href="gio/GAppInfo.html#GAppLaunchContext">
963
+ <ANCHOR id="GAppInfo.object-hierarchy" href="gio/GAppInfo.html#GAppInfo.object-hierarchy">
964
+ <ANCHOR id="GAppInfo.prerequisites" href="gio/GAppInfo.html#GAppInfo.prerequisites">
965
+ <ANCHOR id="GAppInfo.implementations" href="gio/GAppInfo.html#GAppInfo.implementations">
966
+ <ANCHOR id="GAppInfo.description" href="gio/GAppInfo.html#GAppInfo.description">
967
+ <ANCHOR id="GAppInfo.details" href="gio/GAppInfo.html#GAppInfo.details">
968
+ <ANCHOR id="GAppInfoCreateFlags" href="gio/GAppInfo.html#GAppInfoCreateFlags">
969
+ <ANCHOR id="G-APP-INFO-CREATE-NONE:CAPS" href="gio/GAppInfo.html#G-APP-INFO-CREATE-NONE:CAPS">
970
+ <ANCHOR id="G-APP-INFO-CREATE-NEEDS-TERMINAL:CAPS" href="gio/GAppInfo.html#G-APP-INFO-CREATE-NEEDS-TERMINAL:CAPS">
971
+ <ANCHOR id="G-APP-INFO-CREATE-SUPPORTS-URIS:CAPS" href="gio/GAppInfo.html#G-APP-INFO-CREATE-SUPPORTS-URIS:CAPS">
972
+ <ANCHOR id="GAppInfo-struct" href="gio/GAppInfo.html#GAppInfo-struct">
973
+ <ANCHOR id="GAppInfoIface" href="gio/GAppInfo.html#GAppInfoIface">
974
+ <ANCHOR id="GAppLaunchContext-struct" href="gio/GAppInfo.html#GAppLaunchContext-struct">
975
+ <ANCHOR id="g-app-info-create-from-commandline" href="gio/GAppInfo.html#g-app-info-create-from-commandline">
976
+ <ANCHOR id="g-app-info-dup" href="gio/GAppInfo.html#g-app-info-dup">
977
+ <ANCHOR id="g-app-info-equal" href="gio/GAppInfo.html#g-app-info-equal">
978
+ <ANCHOR id="g-app-info-get-id" href="gio/GAppInfo.html#g-app-info-get-id">
979
+ <ANCHOR id="g-app-info-get-name" href="gio/GAppInfo.html#g-app-info-get-name">
980
+ <ANCHOR id="g-app-info-get-display-name" href="gio/GAppInfo.html#g-app-info-get-display-name">
981
+ <ANCHOR id="g-app-info-get-description" href="gio/GAppInfo.html#g-app-info-get-description">
982
+ <ANCHOR id="g-app-info-get-executable" href="gio/GAppInfo.html#g-app-info-get-executable">
983
+ <ANCHOR id="g-app-info-get-commandline" href="gio/GAppInfo.html#g-app-info-get-commandline">
984
+ <ANCHOR id="g-app-info-get-icon" href="gio/GAppInfo.html#g-app-info-get-icon">
985
+ <ANCHOR id="g-app-info-launch" href="gio/GAppInfo.html#g-app-info-launch">
986
+ <ANCHOR id="g-app-info-supports-files" href="gio/GAppInfo.html#g-app-info-supports-files">
987
+ <ANCHOR id="g-app-info-supports-uris" href="gio/GAppInfo.html#g-app-info-supports-uris">
988
+ <ANCHOR id="g-app-info-launch-uris" href="gio/GAppInfo.html#g-app-info-launch-uris">
989
+ <ANCHOR id="g-app-info-should-show" href="gio/GAppInfo.html#g-app-info-should-show">
990
+ <ANCHOR id="g-app-info-can-delete" href="gio/GAppInfo.html#g-app-info-can-delete">
991
+ <ANCHOR id="g-app-info-delete" href="gio/GAppInfo.html#g-app-info-delete">
992
+ <ANCHOR id="g-app-info-reset-type-associations" href="gio/GAppInfo.html#g-app-info-reset-type-associations">
993
+ <ANCHOR id="g-app-info-set-as-default-for-type" href="gio/GAppInfo.html#g-app-info-set-as-default-for-type">
994
+ <ANCHOR id="g-app-info-set-as-default-for-extension" href="gio/GAppInfo.html#g-app-info-set-as-default-for-extension">
995
+ <ANCHOR id="g-app-info-add-supports-type" href="gio/GAppInfo.html#g-app-info-add-supports-type">
996
+ <ANCHOR id="g-app-info-can-remove-supports-type" href="gio/GAppInfo.html#g-app-info-can-remove-supports-type">
997
+ <ANCHOR id="g-app-info-remove-supports-type" href="gio/GAppInfo.html#g-app-info-remove-supports-type">
998
+ <ANCHOR id="g-app-info-get-all" href="gio/GAppInfo.html#g-app-info-get-all">
999
+ <ANCHOR id="g-app-info-get-all-for-type" href="gio/GAppInfo.html#g-app-info-get-all-for-type">
1000
+ <ANCHOR id="g-app-info-get-default-for-type" href="gio/GAppInfo.html#g-app-info-get-default-for-type">
1001
+ <ANCHOR id="g-app-info-get-default-for-uri-scheme" href="gio/GAppInfo.html#g-app-info-get-default-for-uri-scheme">
1002
+ <ANCHOR id="g-app-info-launch-default-for-uri" href="gio/GAppInfo.html#g-app-info-launch-default-for-uri">
1003
+ <ANCHOR id="g-app-launch-context-get-display" href="gio/GAppInfo.html#g-app-launch-context-get-display">
1004
+ <ANCHOR id="g-app-launch-context-get-startup-notify-id" href="gio/GAppInfo.html#g-app-launch-context-get-startup-notify-id">
1005
+ <ANCHOR id="g-app-launch-context-launch-failed" href="gio/GAppInfo.html#g-app-launch-context-launch-failed">
1006
+ <ANCHOR id="g-app-launch-context-new" href="gio/GAppInfo.html#g-app-launch-context-new">
1007
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo" href="gio/gio-Desktop-file-based-GAppInfo.html">
1008
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.synopsis" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.synopsis">
1009
+ <ANCHOR id="GDesktopAppInfo" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfo">
1010
+ <ANCHOR id="GDesktopAppInfoLookup" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfoLookup">
1011
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.object-hierarchy" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.object-hierarchy">
1012
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.prerequisites" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.prerequisites">
1013
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.implemented-interfaces" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.implemented-interfaces">
1014
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.description" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.description">
1015
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.details" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.details">
1016
+ <ANCHOR id="GDesktopAppInfo-struct" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfo-struct">
1017
+ <ANCHOR id="g-desktop-app-info-new-from-filename" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-new-from-filename">
1018
+ <ANCHOR id="g-desktop-app-info-new-from-keyfile" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-new-from-keyfile">
1019
+ <ANCHOR id="g-desktop-app-info-new" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-new">
1020
+ <ANCHOR id="g-desktop-app-info-get-filename" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-get-filename">
1021
+ <ANCHOR id="g-desktop-app-info-get-is-hidden" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-get-is-hidden">
1022
+ <ANCHOR id="g-desktop-app-info-set-desktop-env" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-set-desktop-env">
1023
+ <ANCHOR id="GDesktopAppInfoLookup-struct" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfoLookup-struct">
1024
+ <ANCHOR id="G-DESKTOP-APP-INFO-LOOKUP-EXTENSION-POINT-NAME:CAPS" href="gio/gio-Desktop-file-based-GAppInfo.html#G-DESKTOP-APP-INFO-LOOKUP-EXTENSION-POINT-NAME:CAPS">
1025
+ <ANCHOR id="g-desktop-app-info-lookup-get-default-for-uri-scheme" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-lookup-get-default-for-uri-scheme">
1026
+ <ANCHOR id="GVolumeMonitor" href="gio/GVolumeMonitor.html">
1027
+ <ANCHOR id="GVolumeMonitor.synopsis" href="gio/GVolumeMonitor.html#GVolumeMonitor.synopsis">
1028
+ <ANCHOR id="GVolumeMonitor.object-hierarchy" href="gio/GVolumeMonitor.html#GVolumeMonitor.object-hierarchy">
1029
+ <ANCHOR id="GVolumeMonitor.signals" href="gio/GVolumeMonitor.html#GVolumeMonitor.signals">
1030
+ <ANCHOR id="GVolumeMonitor.description" href="gio/GVolumeMonitor.html#GVolumeMonitor.description">
1031
+ <ANCHOR id="GVolumeMonitor.details" href="gio/GVolumeMonitor.html#GVolumeMonitor.details">
1032
+ <ANCHOR id="GVolumeMonitor-struct" href="gio/GVolumeMonitor.html#GVolumeMonitor-struct">
1033
+ <ANCHOR id="G-VOLUME-MONITOR-EXTENSION-POINT-NAME:CAPS" href="gio/GVolumeMonitor.html#G-VOLUME-MONITOR-EXTENSION-POINT-NAME:CAPS">
1034
+ <ANCHOR id="g-volume-monitor-get" href="gio/GVolumeMonitor.html#g-volume-monitor-get">
1035
+ <ANCHOR id="g-volume-monitor-get-connected-drives" href="gio/GVolumeMonitor.html#g-volume-monitor-get-connected-drives">
1036
+ <ANCHOR id="g-volume-monitor-get-volumes" href="gio/GVolumeMonitor.html#g-volume-monitor-get-volumes">
1037
+ <ANCHOR id="g-volume-monitor-get-mounts" href="gio/GVolumeMonitor.html#g-volume-monitor-get-mounts">
1038
+ <ANCHOR id="g-volume-monitor-adopt-orphan-mount" href="gio/GVolumeMonitor.html#g-volume-monitor-adopt-orphan-mount">
1039
+ <ANCHOR id="g-volume-monitor-get-mount-for-uuid" href="gio/GVolumeMonitor.html#g-volume-monitor-get-mount-for-uuid">
1040
+ <ANCHOR id="g-volume-monitor-get-volume-for-uuid" href="gio/GVolumeMonitor.html#g-volume-monitor-get-volume-for-uuid">
1041
+ <ANCHOR id="GVolumeMonitor.signal-details" href="gio/GVolumeMonitor.html#GVolumeMonitor.signal-details">
1042
+ <ANCHOR id="GVolumeMonitor-drive-changed" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-changed">
1043
+ <ANCHOR id="GVolumeMonitor-drive-connected" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-connected">
1044
+ <ANCHOR id="GVolumeMonitor-drive-disconnected" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-disconnected">
1045
+ <ANCHOR id="GVolumeMonitor-drive-eject-button" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-eject-button">
1046
+ <ANCHOR id="GVolumeMonitor-drive-stop-button" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-stop-button">
1047
+ <ANCHOR id="GVolumeMonitor-mount-added" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-added">
1048
+ <ANCHOR id="GVolumeMonitor-mount-changed" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-changed">
1049
+ <ANCHOR id="GVolumeMonitor-mount-pre-unmount" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-pre-unmount">
1050
+ <ANCHOR id="GVolumeMonitor-mount-removed" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-removed">
1051
+ <ANCHOR id="GVolumeMonitor-volume-added" href="gio/GVolumeMonitor.html#GVolumeMonitor-volume-added">
1052
+ <ANCHOR id="GVolumeMonitor-volume-changed" href="gio/GVolumeMonitor.html#GVolumeMonitor-volume-changed">
1053
+ <ANCHOR id="GVolumeMonitor-volume-removed" href="gio/GVolumeMonitor.html#GVolumeMonitor-volume-removed">
1054
+ <ANCHOR id="GVolumeMonitor.see-also" href="gio/GVolumeMonitor.html#GVolumeMonitor.see-also">
1055
+ <ANCHOR id="GVolume" href="gio/GVolume.html">
1056
+ <ANCHOR id="GVolume.synopsis" href="gio/GVolume.html#GVolume.synopsis">
1057
+ <ANCHOR id="GVolume.object-hierarchy" href="gio/GVolume.html#GVolume.object-hierarchy">
1058
+ <ANCHOR id="GVolume.prerequisites" href="gio/GVolume.html#GVolume.prerequisites">
1059
+ <ANCHOR id="GVolume.signals" href="gio/GVolume.html#GVolume.signals">
1060
+ <ANCHOR id="GVolume.description" href="gio/GVolume.html#GVolume.description">
1061
+ <ANCHOR id="GVolume.details" href="gio/GVolume.html#GVolume.details">
1062
+ <ANCHOR id="GVolume-struct" href="gio/GVolume.html#GVolume-struct">
1063
+ <ANCHOR id="GVolumeIface" href="gio/GVolume.html#GVolumeIface">
1064
+ <ANCHOR id="g-volume-get-name" href="gio/GVolume.html#g-volume-get-name">
1065
+ <ANCHOR id="g-volume-get-uuid" href="gio/GVolume.html#g-volume-get-uuid">
1066
+ <ANCHOR id="g-volume-get-icon" href="gio/GVolume.html#g-volume-get-icon">
1067
+ <ANCHOR id="g-volume-get-drive" href="gio/GVolume.html#g-volume-get-drive">
1068
+ <ANCHOR id="g-volume-get-mount" href="gio/GVolume.html#g-volume-get-mount">
1069
+ <ANCHOR id="g-volume-can-mount" href="gio/GVolume.html#g-volume-can-mount">
1070
+ <ANCHOR id="g-volume-should-automount" href="gio/GVolume.html#g-volume-should-automount">
1071
+ <ANCHOR id="g-volume-get-activation-root" href="gio/GVolume.html#g-volume-get-activation-root">
1072
+ <ANCHOR id="g-volume-mount" href="gio/GVolume.html#g-volume-mount">
1073
+ <ANCHOR id="g-volume-mount-finish" href="gio/GVolume.html#g-volume-mount-finish">
1074
+ <ANCHOR id="g-volume-can-eject" href="gio/GVolume.html#g-volume-can-eject">
1075
+ <ANCHOR id="g-volume-eject" href="gio/GVolume.html#g-volume-eject">
1076
+ <ANCHOR id="g-volume-eject-finish" href="gio/GVolume.html#g-volume-eject-finish">
1077
+ <ANCHOR id="g-volume-eject-with-operation" href="gio/GVolume.html#g-volume-eject-with-operation">
1078
+ <ANCHOR id="g-volume-eject-with-operation-finish" href="gio/GVolume.html#g-volume-eject-with-operation-finish">
1079
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-HAL-UDI:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-HAL-UDI:CAPS">
1080
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-LABEL:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-LABEL:CAPS">
1081
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-NFS-MOUNT:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-NFS-MOUNT:CAPS">
1082
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-UNIX-DEVICE:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-UNIX-DEVICE:CAPS">
1083
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-UUID:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-UUID:CAPS">
1084
+ <ANCHOR id="g-volume-enumerate-identifiers" href="gio/GVolume.html#g-volume-enumerate-identifiers">
1085
+ <ANCHOR id="g-volume-get-identifier" href="gio/GVolume.html#g-volume-get-identifier">
1086
+ <ANCHOR id="GVolume.signal-details" href="gio/GVolume.html#GVolume.signal-details">
1087
+ <ANCHOR id="GVolume-changed" href="gio/GVolume.html#GVolume-changed">
1088
+ <ANCHOR id="GVolume-removed" href="gio/GVolume.html#GVolume-removed">
1089
+ <ANCHOR id="GMount" href="gio/GMount.html">
1090
+ <ANCHOR id="GMount.synopsis" href="gio/GMount.html#GMount.synopsis">
1091
+ <ANCHOR id="GMount.object-hierarchy" href="gio/GMount.html#GMount.object-hierarchy">
1092
+ <ANCHOR id="GMount.prerequisites" href="gio/GMount.html#GMount.prerequisites">
1093
+ <ANCHOR id="GMount.signals" href="gio/GMount.html#GMount.signals">
1094
+ <ANCHOR id="GMount.description" href="gio/GMount.html#GMount.description">
1095
+ <ANCHOR id="GMount.details" href="gio/GMount.html#GMount.details">
1096
+ <ANCHOR id="GMount-struct" href="gio/GMount.html#GMount-struct">
1097
+ <ANCHOR id="GMountIface" href="gio/GMount.html#GMountIface">
1098
+ <ANCHOR id="g-mount-get-name" href="gio/GMount.html#g-mount-get-name">
1099
+ <ANCHOR id="g-mount-get-uuid" href="gio/GMount.html#g-mount-get-uuid">
1100
+ <ANCHOR id="g-mount-get-icon" href="gio/GMount.html#g-mount-get-icon">
1101
+ <ANCHOR id="g-mount-get-drive" href="gio/GMount.html#g-mount-get-drive">
1102
+ <ANCHOR id="g-mount-get-root" href="gio/GMount.html#g-mount-get-root">
1103
+ <ANCHOR id="g-mount-get-volume" href="gio/GMount.html#g-mount-get-volume">
1104
+ <ANCHOR id="g-mount-get-default-location" href="gio/GMount.html#g-mount-get-default-location">
1105
+ <ANCHOR id="g-mount-can-unmount" href="gio/GMount.html#g-mount-can-unmount">
1106
+ <ANCHOR id="GMountMountFlags" href="gio/GMount.html#GMountMountFlags">
1107
+ <ANCHOR id="G-MOUNT-MOUNT-NONE:CAPS" href="gio/GMount.html#G-MOUNT-MOUNT-NONE:CAPS">
1108
+ <ANCHOR id="GMountUnmountFlags" href="gio/GMount.html#GMountUnmountFlags">
1109
+ <ANCHOR id="G-MOUNT-UNMOUNT-NONE:CAPS" href="gio/GMount.html#G-MOUNT-UNMOUNT-NONE:CAPS">
1110
+ <ANCHOR id="G-MOUNT-UNMOUNT-FORCE:CAPS" href="gio/GMount.html#G-MOUNT-UNMOUNT-FORCE:CAPS">
1111
+ <ANCHOR id="g-mount-unmount" href="gio/GMount.html#g-mount-unmount">
1112
+ <ANCHOR id="g-mount-unmount-finish" href="gio/GMount.html#g-mount-unmount-finish">
1113
+ <ANCHOR id="g-mount-unmount-with-operation" href="gio/GMount.html#g-mount-unmount-with-operation">
1114
+ <ANCHOR id="g-mount-unmount-with-operation-finish" href="gio/GMount.html#g-mount-unmount-with-operation-finish">
1115
+ <ANCHOR id="g-mount-remount" href="gio/GMount.html#g-mount-remount">
1116
+ <ANCHOR id="g-mount-remount-finish" href="gio/GMount.html#g-mount-remount-finish">
1117
+ <ANCHOR id="g-mount-can-eject" href="gio/GMount.html#g-mount-can-eject">
1118
+ <ANCHOR id="g-mount-eject" href="gio/GMount.html#g-mount-eject">
1119
+ <ANCHOR id="g-mount-eject-finish" href="gio/GMount.html#g-mount-eject-finish">
1120
+ <ANCHOR id="g-mount-eject-with-operation" href="gio/GMount.html#g-mount-eject-with-operation">
1121
+ <ANCHOR id="g-mount-eject-with-operation-finish" href="gio/GMount.html#g-mount-eject-with-operation-finish">
1122
+ <ANCHOR id="g-mount-guess-content-type" href="gio/GMount.html#g-mount-guess-content-type">
1123
+ <ANCHOR id="g-mount-guess-content-type-finish" href="gio/GMount.html#g-mount-guess-content-type-finish">
1124
+ <ANCHOR id="g-mount-guess-content-type-sync" href="gio/GMount.html#g-mount-guess-content-type-sync">
1125
+ <ANCHOR id="g-mount-is-shadowed" href="gio/GMount.html#g-mount-is-shadowed">
1126
+ <ANCHOR id="g-mount-shadow" href="gio/GMount.html#g-mount-shadow">
1127
+ <ANCHOR id="g-mount-unshadow" href="gio/GMount.html#g-mount-unshadow">
1128
+ <ANCHOR id="GMount.signal-details" href="gio/GMount.html#GMount.signal-details">
1129
+ <ANCHOR id="GMount-changed" href="gio/GMount.html#GMount-changed">
1130
+ <ANCHOR id="GMount-pre-unmount" href="gio/GMount.html#GMount-pre-unmount">
1131
+ <ANCHOR id="GMount-unmounted" href="gio/GMount.html#GMount-unmounted">
1132
+ <ANCHOR id="GDrive" href="gio/GDrive.html">
1133
+ <ANCHOR id="GDrive.synopsis" href="gio/GDrive.html#GDrive.synopsis">
1134
+ <ANCHOR id="GDrive.object-hierarchy" href="gio/GDrive.html#GDrive.object-hierarchy">
1135
+ <ANCHOR id="GDrive.prerequisites" href="gio/GDrive.html#GDrive.prerequisites">
1136
+ <ANCHOR id="GDrive.signals" href="gio/GDrive.html#GDrive.signals">
1137
+ <ANCHOR id="GDrive.description" href="gio/GDrive.html#GDrive.description">
1138
+ <ANCHOR id="GDrive.details" href="gio/GDrive.html#GDrive.details">
1139
+ <ANCHOR id="GDrive-struct" href="gio/GDrive.html#GDrive-struct">
1140
+ <ANCHOR id="GDriveIface" href="gio/GDrive.html#GDriveIface">
1141
+ <ANCHOR id="GDriveStartFlags" href="gio/GDrive.html#GDriveStartFlags">
1142
+ <ANCHOR id="G-DRIVE-START-NONE:CAPS" href="gio/GDrive.html#G-DRIVE-START-NONE:CAPS">
1143
+ <ANCHOR id="GDriveStartStopType" href="gio/GDrive.html#GDriveStartStopType">
1144
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-UNKNOWN:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-UNKNOWN:CAPS">
1145
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-SHUTDOWN:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-SHUTDOWN:CAPS">
1146
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-NETWORK:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-NETWORK:CAPS">
1147
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-MULTIDISK:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-MULTIDISK:CAPS">
1148
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-PASSWORD:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-PASSWORD:CAPS">
1149
+ <ANCHOR id="g-drive-get-name" href="gio/GDrive.html#g-drive-get-name">
1150
+ <ANCHOR id="g-drive-get-icon" href="gio/GDrive.html#g-drive-get-icon">
1151
+ <ANCHOR id="g-drive-has-volumes" href="gio/GDrive.html#g-drive-has-volumes">
1152
+ <ANCHOR id="g-drive-get-volumes" href="gio/GDrive.html#g-drive-get-volumes">
1153
+ <ANCHOR id="g-drive-can-eject" href="gio/GDrive.html#g-drive-can-eject">
1154
+ <ANCHOR id="g-drive-get-start-stop-type" href="gio/GDrive.html#g-drive-get-start-stop-type">
1155
+ <ANCHOR id="g-drive-can-start" href="gio/GDrive.html#g-drive-can-start">
1156
+ <ANCHOR id="g-drive-can-start-degraded" href="gio/GDrive.html#g-drive-can-start-degraded">
1157
+ <ANCHOR id="g-drive-can-stop" href="gio/GDrive.html#g-drive-can-stop">
1158
+ <ANCHOR id="g-drive-can-poll-for-media" href="gio/GDrive.html#g-drive-can-poll-for-media">
1159
+ <ANCHOR id="g-drive-poll-for-media" href="gio/GDrive.html#g-drive-poll-for-media">
1160
+ <ANCHOR id="g-drive-poll-for-media-finish" href="gio/GDrive.html#g-drive-poll-for-media-finish">
1161
+ <ANCHOR id="g-drive-has-media" href="gio/GDrive.html#g-drive-has-media">
1162
+ <ANCHOR id="g-drive-is-media-check-automatic" href="gio/GDrive.html#g-drive-is-media-check-automatic">
1163
+ <ANCHOR id="g-drive-is-media-removable" href="gio/GDrive.html#g-drive-is-media-removable">
1164
+ <ANCHOR id="g-drive-eject" href="gio/GDrive.html#g-drive-eject">
1165
+ <ANCHOR id="g-drive-eject-finish" href="gio/GDrive.html#g-drive-eject-finish">
1166
+ <ANCHOR id="g-drive-eject-with-operation" href="gio/GDrive.html#g-drive-eject-with-operation">
1167
+ <ANCHOR id="g-drive-eject-with-operation-finish" href="gio/GDrive.html#g-drive-eject-with-operation-finish">
1168
+ <ANCHOR id="g-drive-start" href="gio/GDrive.html#g-drive-start">
1169
+ <ANCHOR id="g-drive-start-finish" href="gio/GDrive.html#g-drive-start-finish">
1170
+ <ANCHOR id="g-drive-stop" href="gio/GDrive.html#g-drive-stop">
1171
+ <ANCHOR id="g-drive-stop-finish" href="gio/GDrive.html#g-drive-stop-finish">
1172
+ <ANCHOR id="g-drive-enumerate-identifiers" href="gio/GDrive.html#g-drive-enumerate-identifiers">
1173
+ <ANCHOR id="g-drive-get-identifier" href="gio/GDrive.html#g-drive-get-identifier">
1174
+ <ANCHOR id="GDrive.signal-details" href="gio/GDrive.html#GDrive.signal-details">
1175
+ <ANCHOR id="GDrive-changed" href="gio/GDrive.html#GDrive-changed">
1176
+ <ANCHOR id="GDrive-disconnected" href="gio/GDrive.html#GDrive-disconnected">
1177
+ <ANCHOR id="GDrive-eject-button" href="gio/GDrive.html#GDrive-eject-button">
1178
+ <ANCHOR id="GDrive-stop-button" href="gio/GDrive.html#GDrive-stop-button">
1179
+ <ANCHOR id="gio-Unix-Mounts" href="gio/gio-Unix-Mounts.html">
1180
+ <ANCHOR id="gio-Unix-Mounts.synopsis" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.synopsis">
1181
+ <ANCHOR id="GUnixMountMonitor" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor">
1182
+ <ANCHOR id="gio-Unix-Mounts.object-hierarchy" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.object-hierarchy">
1183
+ <ANCHOR id="gio-Unix-Mounts.signals" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.signals">
1184
+ <ANCHOR id="gio-Unix-Mounts.description" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.description">
1185
+ <ANCHOR id="gio-Unix-Mounts.details" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.details">
1186
+ <ANCHOR id="GUnixMount" href="gio/gio-Unix-Mounts.html#GUnixMount">
1187
+ <ANCHOR id="GUnixMountPoint" href="gio/gio-Unix-Mounts.html#GUnixMountPoint">
1188
+ <ANCHOR id="GUnixMountEntry" href="gio/gio-Unix-Mounts.html#GUnixMountEntry">
1189
+ <ANCHOR id="GUnixMountMonitor-struct" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor-struct">
1190
+ <ANCHOR id="g-unix-mount-free" href="gio/gio-Unix-Mounts.html#g-unix-mount-free">
1191
+ <ANCHOR id="g-unix-mount-compare" href="gio/gio-Unix-Mounts.html#g-unix-mount-compare">
1192
+ <ANCHOR id="g-unix-mount-get-mount-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-get-mount-path">
1193
+ <ANCHOR id="g-unix-mount-get-device-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-get-device-path">
1194
+ <ANCHOR id="g-unix-mount-get-fs-type" href="gio/gio-Unix-Mounts.html#g-unix-mount-get-fs-type">
1195
+ <ANCHOR id="g-unix-mount-is-readonly" href="gio/gio-Unix-Mounts.html#g-unix-mount-is-readonly">
1196
+ <ANCHOR id="g-unix-mount-is-system-internal" href="gio/gio-Unix-Mounts.html#g-unix-mount-is-system-internal">
1197
+ <ANCHOR id="g-unix-mount-guess-icon" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-icon">
1198
+ <ANCHOR id="g-unix-mount-guess-name" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-name">
1199
+ <ANCHOR id="g-unix-mount-guess-can-eject" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-can-eject">
1200
+ <ANCHOR id="g-unix-mount-guess-should-display" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-should-display">
1201
+ <ANCHOR id="g-unix-mount-point-free" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-free">
1202
+ <ANCHOR id="g-unix-mount-point-compare" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-compare">
1203
+ <ANCHOR id="g-unix-mount-point-get-mount-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-get-mount-path">
1204
+ <ANCHOR id="g-unix-mount-point-get-device-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-get-device-path">
1205
+ <ANCHOR id="g-unix-mount-point-get-fs-type" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-get-fs-type">
1206
+ <ANCHOR id="g-unix-mount-point-is-readonly" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-is-readonly">
1207
+ <ANCHOR id="g-unix-mount-point-is-user-mountable" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-is-user-mountable">
1208
+ <ANCHOR id="g-unix-mount-point-is-loopback" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-is-loopback">
1209
+ <ANCHOR id="g-unix-mount-point-guess-icon" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-guess-icon">
1210
+ <ANCHOR id="g-unix-mount-point-guess-name" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-guess-name">
1211
+ <ANCHOR id="g-unix-mount-point-guess-can-eject" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-guess-can-eject">
1212
+ <ANCHOR id="g-unix-mount-points-get" href="gio/gio-Unix-Mounts.html#g-unix-mount-points-get">
1213
+ <ANCHOR id="g-unix-mounts-get" href="gio/gio-Unix-Mounts.html#g-unix-mounts-get">
1214
+ <ANCHOR id="g-unix-mount-at" href="gio/gio-Unix-Mounts.html#g-unix-mount-at">
1215
+ <ANCHOR id="g-unix-mounts-changed-since" href="gio/gio-Unix-Mounts.html#g-unix-mounts-changed-since">
1216
+ <ANCHOR id="g-unix-mount-points-changed-since" href="gio/gio-Unix-Mounts.html#g-unix-mount-points-changed-since">
1217
+ <ANCHOR id="g-unix-mount-monitor-new" href="gio/gio-Unix-Mounts.html#g-unix-mount-monitor-new">
1218
+ <ANCHOR id="g-unix-mount-monitor-set-rate-limit" href="gio/gio-Unix-Mounts.html#g-unix-mount-monitor-set-rate-limit">
1219
+ <ANCHOR id="g-unix-is-mount-path-system-internal" href="gio/gio-Unix-Mounts.html#g-unix-is-mount-path-system-internal">
1220
+ <ANCHOR id="gio-Unix-Mounts.signal-details" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.signal-details">
1221
+ <ANCHOR id="GUnixMountMonitor-mountpoints-changed" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor-mountpoints-changed">
1222
+ <ANCHOR id="GUnixMountMonitor-mounts-changed" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor-mounts-changed">
1223
+ <ANCHOR id="GIcon" href="gio/GIcon.html">
1224
+ <ANCHOR id="GIcon.synopsis" href="gio/GIcon.html#GIcon.synopsis">
1225
+ <ANCHOR id="GIcon.object-hierarchy" href="gio/GIcon.html#GIcon.object-hierarchy">
1226
+ <ANCHOR id="GIcon.prerequisites" href="gio/GIcon.html#GIcon.prerequisites">
1227
+ <ANCHOR id="GIcon.derived-interfaces" href="gio/GIcon.html#GIcon.derived-interfaces">
1228
+ <ANCHOR id="GIcon.implementations" href="gio/GIcon.html#GIcon.implementations">
1229
+ <ANCHOR id="GIcon.description" href="gio/GIcon.html#GIcon.description">
1230
+ <ANCHOR id="GIcon.details" href="gio/GIcon.html#GIcon.details">
1231
+ <ANCHOR id="GIcon-struct" href="gio/GIcon.html#GIcon-struct">
1232
+ <ANCHOR id="GIconIface" href="gio/GIcon.html#GIconIface">
1233
+ <ANCHOR id="g-icon-hash" href="gio/GIcon.html#g-icon-hash">
1234
+ <ANCHOR id="g-icon-equal" href="gio/GIcon.html#g-icon-equal">
1235
+ <ANCHOR id="g-icon-to-string" href="gio/GIcon.html#g-icon-to-string">
1236
+ <ANCHOR id="g-icon-new-for-string" href="gio/GIcon.html#g-icon-new-for-string">
1237
+ <ANCHOR id="GFileIcon" href="gio/GFileIcon.html">
1238
+ <ANCHOR id="GFileIcon.synopsis" href="gio/GFileIcon.html#GFileIcon.synopsis">
1239
+ <ANCHOR id="GFileIcon.object-hierarchy" href="gio/GFileIcon.html#GFileIcon.object-hierarchy">
1240
+ <ANCHOR id="GFileIcon.implemented-interfaces" href="gio/GFileIcon.html#GFileIcon.implemented-interfaces">
1241
+ <ANCHOR id="GFileIcon.properties" href="gio/GFileIcon.html#GFileIcon.properties">
1242
+ <ANCHOR id="GFileIcon.description" href="gio/GFileIcon.html#GFileIcon.description">
1243
+ <ANCHOR id="GFileIcon.details" href="gio/GFileIcon.html#GFileIcon.details">
1244
+ <ANCHOR id="GFileIcon-struct" href="gio/GFileIcon.html#GFileIcon-struct">
1245
+ <ANCHOR id="g-file-icon-new" href="gio/GFileIcon.html#g-file-icon-new">
1246
+ <ANCHOR id="g-file-icon-get-file" href="gio/GFileIcon.html#g-file-icon-get-file">
1247
+ <ANCHOR id="GFileIcon.property-details" href="gio/GFileIcon.html#GFileIcon.property-details">
1248
+ <ANCHOR id="GFileIcon--file" href="gio/GFileIcon.html#GFileIcon--file">
1249
+ <ANCHOR id="GFileIcon.see-also" href="gio/GFileIcon.html#GFileIcon.see-also">
1250
+ <ANCHOR id="GLoadableIcon" href="gio/GLoadableIcon.html">
1251
+ <ANCHOR id="GLoadableIcon.synopsis" href="gio/GLoadableIcon.html#GLoadableIcon.synopsis">
1252
+ <ANCHOR id="GLoadableIcon.object-hierarchy" href="gio/GLoadableIcon.html#GLoadableIcon.object-hierarchy">
1253
+ <ANCHOR id="GLoadableIcon.prerequisites" href="gio/GLoadableIcon.html#GLoadableIcon.prerequisites">
1254
+ <ANCHOR id="GLoadableIcon.implementations" href="gio/GLoadableIcon.html#GLoadableIcon.implementations">
1255
+ <ANCHOR id="GLoadableIcon.description" href="gio/GLoadableIcon.html#GLoadableIcon.description">
1256
+ <ANCHOR id="GLoadableIcon.details" href="gio/GLoadableIcon.html#GLoadableIcon.details">
1257
+ <ANCHOR id="GLoadableIcon-struct" href="gio/GLoadableIcon.html#GLoadableIcon-struct">
1258
+ <ANCHOR id="GLoadableIconIface" href="gio/GLoadableIcon.html#GLoadableIconIface">
1259
+ <ANCHOR id="g-loadable-icon-load" href="gio/GLoadableIcon.html#g-loadable-icon-load">
1260
+ <ANCHOR id="g-loadable-icon-load-async" href="gio/GLoadableIcon.html#g-loadable-icon-load-async">
1261
+ <ANCHOR id="g-loadable-icon-load-finish" href="gio/GLoadableIcon.html#g-loadable-icon-load-finish">
1262
+ <ANCHOR id="GLoadableIcon.see-also" href="gio/GLoadableIcon.html#GLoadableIcon.see-also">
1263
+ <ANCHOR id="GThemedIcon" href="gio/GThemedIcon.html">
1264
+ <ANCHOR id="GThemedIcon.synopsis" href="gio/GThemedIcon.html#GThemedIcon.synopsis">
1265
+ <ANCHOR id="GThemedIcon.object-hierarchy" href="gio/GThemedIcon.html#GThemedIcon.object-hierarchy">
1266
+ <ANCHOR id="GThemedIcon.implemented-interfaces" href="gio/GThemedIcon.html#GThemedIcon.implemented-interfaces">
1267
+ <ANCHOR id="GThemedIcon.properties" href="gio/GThemedIcon.html#GThemedIcon.properties">
1268
+ <ANCHOR id="GThemedIcon.description" href="gio/GThemedIcon.html#GThemedIcon.description">
1269
+ <ANCHOR id="GThemedIcon.details" href="gio/GThemedIcon.html#GThemedIcon.details">
1270
+ <ANCHOR id="GThemedIcon-struct" href="gio/GThemedIcon.html#GThemedIcon-struct">
1271
+ <ANCHOR id="g-themed-icon-new" href="gio/GThemedIcon.html#g-themed-icon-new">
1272
+ <ANCHOR id="g-themed-icon-new-from-names" href="gio/GThemedIcon.html#g-themed-icon-new-from-names">
1273
+ <ANCHOR id="g-themed-icon-new-with-default-fallbacks" href="gio/GThemedIcon.html#g-themed-icon-new-with-default-fallbacks">
1274
+ <ANCHOR id="g-themed-icon-prepend-name" href="gio/GThemedIcon.html#g-themed-icon-prepend-name">
1275
+ <ANCHOR id="g-themed-icon-append-name" href="gio/GThemedIcon.html#g-themed-icon-append-name">
1276
+ <ANCHOR id="g-themed-icon-get-names" href="gio/GThemedIcon.html#g-themed-icon-get-names">
1277
+ <ANCHOR id="GThemedIcon.property-details" href="gio/GThemedIcon.html#GThemedIcon.property-details">
1278
+ <ANCHOR id="GThemedIcon--name" href="gio/GThemedIcon.html#GThemedIcon--name">
1279
+ <ANCHOR id="GThemedIcon--names" href="gio/GThemedIcon.html#GThemedIcon--names">
1280
+ <ANCHOR id="GThemedIcon--use-default-fallbacks" href="gio/GThemedIcon.html#GThemedIcon--use-default-fallbacks">
1281
+ <ANCHOR id="GThemedIcon.see-also" href="gio/GThemedIcon.html#GThemedIcon.see-also">
1282
+ <ANCHOR id="GEmblemedIcon" href="gio/GEmblemedIcon.html">
1283
+ <ANCHOR id="GEmblemedIcon.synopsis" href="gio/GEmblemedIcon.html#GEmblemedIcon.synopsis">
1284
+ <ANCHOR id="GEmblemedIcon.object-hierarchy" href="gio/GEmblemedIcon.html#GEmblemedIcon.object-hierarchy">
1285
+ <ANCHOR id="GEmblemedIcon.implemented-interfaces" href="gio/GEmblemedIcon.html#GEmblemedIcon.implemented-interfaces">
1286
+ <ANCHOR id="GEmblemedIcon.description" href="gio/GEmblemedIcon.html#GEmblemedIcon.description">
1287
+ <ANCHOR id="GEmblemedIcon.details" href="gio/GEmblemedIcon.html#GEmblemedIcon.details">
1288
+ <ANCHOR id="GEmblemedIcon-struct" href="gio/GEmblemedIcon.html#GEmblemedIcon-struct">
1289
+ <ANCHOR id="g-emblemed-icon-new" href="gio/GEmblemedIcon.html#g-emblemed-icon-new">
1290
+ <ANCHOR id="g-emblemed-icon-get-icon" href="gio/GEmblemedIcon.html#g-emblemed-icon-get-icon">
1291
+ <ANCHOR id="g-emblemed-icon-get-emblems" href="gio/GEmblemedIcon.html#g-emblemed-icon-get-emblems">
1292
+ <ANCHOR id="g-emblemed-icon-add-emblem" href="gio/GEmblemedIcon.html#g-emblemed-icon-add-emblem">
1293
+ <ANCHOR id="GEmblemedIcon.see-also" href="gio/GEmblemedIcon.html#GEmblemedIcon.see-also">
1294
+ <ANCHOR id="GEmblem" href="gio/GEmblem.html">
1295
+ <ANCHOR id="GEmblem.synopsis" href="gio/GEmblem.html#GEmblem.synopsis">
1296
+ <ANCHOR id="GEmblem.object-hierarchy" href="gio/GEmblem.html#GEmblem.object-hierarchy">
1297
+ <ANCHOR id="GEmblem.implemented-interfaces" href="gio/GEmblem.html#GEmblem.implemented-interfaces">
1298
+ <ANCHOR id="GEmblem.properties" href="gio/GEmblem.html#GEmblem.properties">
1299
+ <ANCHOR id="GEmblem.description" href="gio/GEmblem.html#GEmblem.description">
1300
+ <ANCHOR id="GEmblem.details" href="gio/GEmblem.html#GEmblem.details">
1301
+ <ANCHOR id="GEmblem-struct" href="gio/GEmblem.html#GEmblem-struct">
1302
+ <ANCHOR id="GEmblemOrigin" href="gio/GEmblem.html#GEmblemOrigin">
1303
+ <ANCHOR id="G-EMBLEM-ORIGIN-UNKNOWN:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-UNKNOWN:CAPS">
1304
+ <ANCHOR id="G-EMBLEM-ORIGIN-DEVICE:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-DEVICE:CAPS">
1305
+ <ANCHOR id="G-EMBLEM-ORIGIN-LIVEMETADATA:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-LIVEMETADATA:CAPS">
1306
+ <ANCHOR id="G-EMBLEM-ORIGIN-TAG:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-TAG:CAPS">
1307
+ <ANCHOR id="g-emblem-new" href="gio/GEmblem.html#g-emblem-new">
1308
+ <ANCHOR id="g-emblem-new-with-origin" href="gio/GEmblem.html#g-emblem-new-with-origin">
1309
+ <ANCHOR id="g-emblem-get-icon" href="gio/GEmblem.html#g-emblem-get-icon">
1310
+ <ANCHOR id="g-emblem-get-origin" href="gio/GEmblem.html#g-emblem-get-origin">
1311
+ <ANCHOR id="GEmblem.property-details" href="gio/GEmblem.html#GEmblem.property-details">
1312
+ <ANCHOR id="GEmblem--icon" href="gio/GEmblem.html#GEmblem--icon">
1313
+ <ANCHOR id="GEmblem--origin" href="gio/GEmblem.html#GEmblem--origin">
1314
+ <ANCHOR id="GEmblem.see-also" href="gio/GEmblem.html#GEmblem.see-also">
1315
+ <ANCHOR id="GInitable" href="gio/GInitable.html">
1316
+ <ANCHOR id="GInitable.synopsis" href="gio/GInitable.html#GInitable.synopsis">
1317
+ <ANCHOR id="GInitable.object-hierarchy" href="gio/GInitable.html#GInitable.object-hierarchy">
1318
+ <ANCHOR id="GInitable.prerequisites" href="gio/GInitable.html#GInitable.prerequisites">
1319
+ <ANCHOR id="GInitable.implementations" href="gio/GInitable.html#GInitable.implementations">
1320
+ <ANCHOR id="GInitable.description" href="gio/GInitable.html#GInitable.description">
1321
+ <ANCHOR id="GInitable.details" href="gio/GInitable.html#GInitable.details">
1322
+ <ANCHOR id="GInitable-struct" href="gio/GInitable.html#GInitable-struct">
1323
+ <ANCHOR id="GInitableIface" href="gio/GInitable.html#GInitableIface">
1324
+ <ANCHOR id="g-initable-init" href="gio/GInitable.html#g-initable-init">
1325
+ <ANCHOR id="g-initable-new" href="gio/GInitable.html#g-initable-new">
1326
+ <ANCHOR id="g-initable-new-valist" href="gio/GInitable.html#g-initable-new-valist">
1327
+ <ANCHOR id="g-initable-newv" href="gio/GInitable.html#g-initable-newv">
1328
+ <ANCHOR id="GInitable.see-also" href="gio/GInitable.html#GInitable.see-also">
1329
+ <ANCHOR id="GAsyncInitable" href="gio/GAsyncInitable.html">
1330
+ <ANCHOR id="GAsyncInitable.synopsis" href="gio/GAsyncInitable.html#GAsyncInitable.synopsis">
1331
+ <ANCHOR id="GAsyncInitable.object-hierarchy" href="gio/GAsyncInitable.html#GAsyncInitable.object-hierarchy">
1332
+ <ANCHOR id="GAsyncInitable.prerequisites" href="gio/GAsyncInitable.html#GAsyncInitable.prerequisites">
1333
+ <ANCHOR id="GAsyncInitable.description" href="gio/GAsyncInitable.html#GAsyncInitable.description">
1334
+ <ANCHOR id="GAsyncInitable.details" href="gio/GAsyncInitable.html#GAsyncInitable.details">
1335
+ <ANCHOR id="GAsyncInitable-struct" href="gio/GAsyncInitable.html#GAsyncInitable-struct">
1336
+ <ANCHOR id="GAsyncInitableIface" href="gio/GAsyncInitable.html#GAsyncInitableIface">
1337
+ <ANCHOR id="g-async-initable-init-async" href="gio/GAsyncInitable.html#g-async-initable-init-async">
1338
+ <ANCHOR id="g-async-initable-init-finish" href="gio/GAsyncInitable.html#g-async-initable-init-finish">
1339
+ <ANCHOR id="g-async-initable-new-async" href="gio/GAsyncInitable.html#g-async-initable-new-async">
1340
+ <ANCHOR id="g-async-initable-new-finish" href="gio/GAsyncInitable.html#g-async-initable-new-finish">
1341
+ <ANCHOR id="g-async-initable-new-valist-async" href="gio/GAsyncInitable.html#g-async-initable-new-valist-async">
1342
+ <ANCHOR id="g-async-initable-newv-async" href="gio/GAsyncInitable.html#g-async-initable-newv-async">
1343
+ <ANCHOR id="GAsyncInitable.see-also" href="gio/GAsyncInitable.html#GAsyncInitable.see-also">
1344
+ <ANCHOR id="GSocket" href="gio/GSocket.html">
1345
+ <ANCHOR id="GSocket.synopsis" href="gio/GSocket.html#GSocket.synopsis">
1346
+ <ANCHOR id="GSocket.object-hierarchy" href="gio/GSocket.html#GSocket.object-hierarchy">
1347
+ <ANCHOR id="GSocket.implemented-interfaces" href="gio/GSocket.html#GSocket.implemented-interfaces">
1348
+ <ANCHOR id="GSocket.properties" href="gio/GSocket.html#GSocket.properties">
1349
+ <ANCHOR id="GSocket.description" href="gio/GSocket.html#GSocket.description">
1350
+ <ANCHOR id="GSocket.details" href="gio/GSocket.html#GSocket.details">
1351
+ <ANCHOR id="GSocket-struct" href="gio/GSocket.html#GSocket-struct">
1352
+ <ANCHOR id="GSocketSourceFunc" href="gio/GSocket.html#GSocketSourceFunc">
1353
+ <ANCHOR id="GSocketType" href="gio/GSocket.html#GSocketType">
1354
+ <ANCHOR id="G-SOCKET-TYPE-INVALID:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-INVALID:CAPS">
1355
+ <ANCHOR id="G-SOCKET-TYPE-STREAM:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-STREAM:CAPS">
1356
+ <ANCHOR id="G-SOCKET-TYPE-DATAGRAM:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-DATAGRAM:CAPS">
1357
+ <ANCHOR id="G-SOCKET-TYPE-SEQPACKET:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-SEQPACKET:CAPS">
1358
+ <ANCHOR id="GSocketProtocol" href="gio/GSocket.html#GSocketProtocol">
1359
+ <ANCHOR id="G-SOCKET-PROTOCOL-UNKNOWN:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-UNKNOWN:CAPS">
1360
+ <ANCHOR id="G-SOCKET-PROTOCOL-DEFAULT:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-DEFAULT:CAPS">
1361
+ <ANCHOR id="G-SOCKET-PROTOCOL-TCP:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-TCP:CAPS">
1362
+ <ANCHOR id="G-SOCKET-PROTOCOL-UDP:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-UDP:CAPS">
1363
+ <ANCHOR id="G-SOCKET-PROTOCOL-SCTP:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-SCTP:CAPS">
1364
+ <ANCHOR id="GSocketMsgFlags" href="gio/GSocket.html#GSocketMsgFlags">
1365
+ <ANCHOR id="G-SOCKET-MSG-NONE:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-NONE:CAPS">
1366
+ <ANCHOR id="G-SOCKET-MSG-OOB:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-OOB:CAPS">
1367
+ <ANCHOR id="G-SOCKET-MSG-PEEK:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-PEEK:CAPS">
1368
+ <ANCHOR id="G-SOCKET-MSG-DONTROUTE:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-DONTROUTE:CAPS">
1369
+ <ANCHOR id="GInputVector" href="gio/GSocket.html#GInputVector">
1370
+ <ANCHOR id="GOutputVector" href="gio/GSocket.html#GOutputVector">
1371
+ <ANCHOR id="g-socket-new" href="gio/GSocket.html#g-socket-new">
1372
+ <ANCHOR id="g-socket-new-from-fd" href="gio/GSocket.html#g-socket-new-from-fd">
1373
+ <ANCHOR id="g-socket-bind" href="gio/GSocket.html#g-socket-bind">
1374
+ <ANCHOR id="g-socket-listen" href="gio/GSocket.html#g-socket-listen">
1375
+ <ANCHOR id="g-socket-accept" href="gio/GSocket.html#g-socket-accept">
1376
+ <ANCHOR id="g-socket-connect" href="gio/GSocket.html#g-socket-connect">
1377
+ <ANCHOR id="g-socket-check-connect-result" href="gio/GSocket.html#g-socket-check-connect-result">
1378
+ <ANCHOR id="g-socket-receive" href="gio/GSocket.html#g-socket-receive">
1379
+ <ANCHOR id="g-socket-receive-from" href="gio/GSocket.html#g-socket-receive-from">
1380
+ <ANCHOR id="g-socket-receive-message" href="gio/GSocket.html#g-socket-receive-message">
1381
+ <ANCHOR id="g-socket-send" href="gio/GSocket.html#g-socket-send">
1382
+ <ANCHOR id="g-socket-send-to" href="gio/GSocket.html#g-socket-send-to">
1383
+ <ANCHOR id="g-socket-send-message" href="gio/GSocket.html#g-socket-send-message">
1384
+ <ANCHOR id="g-socket-close" href="gio/GSocket.html#g-socket-close">
1385
+ <ANCHOR id="g-socket-is-closed" href="gio/GSocket.html#g-socket-is-closed">
1386
+ <ANCHOR id="g-socket-shutdown" href="gio/GSocket.html#g-socket-shutdown">
1387
+ <ANCHOR id="g-socket-is-connected" href="gio/GSocket.html#g-socket-is-connected">
1388
+ <ANCHOR id="g-socket-create-source" href="gio/GSocket.html#g-socket-create-source">
1389
+ <ANCHOR id="g-socket-condition-check" href="gio/GSocket.html#g-socket-condition-check">
1390
+ <ANCHOR id="g-socket-condition-wait" href="gio/GSocket.html#g-socket-condition-wait">
1391
+ <ANCHOR id="g-socket-set-listen-backlog" href="gio/GSocket.html#g-socket-set-listen-backlog">
1392
+ <ANCHOR id="g-socket-get-listen-backlog" href="gio/GSocket.html#g-socket-get-listen-backlog">
1393
+ <ANCHOR id="g-socket-get-blocking" href="gio/GSocket.html#g-socket-get-blocking">
1394
+ <ANCHOR id="g-socket-set-blocking" href="gio/GSocket.html#g-socket-set-blocking">
1395
+ <ANCHOR id="g-socket-get-keepalive" href="gio/GSocket.html#g-socket-get-keepalive">
1396
+ <ANCHOR id="g-socket-set-keepalive" href="gio/GSocket.html#g-socket-set-keepalive">
1397
+ <ANCHOR id="g-socket-get-family" href="gio/GSocket.html#g-socket-get-family">
1398
+ <ANCHOR id="g-socket-get-fd" href="gio/GSocket.html#g-socket-get-fd">
1399
+ <ANCHOR id="g-socket-get-local-address" href="gio/GSocket.html#g-socket-get-local-address">
1400
+ <ANCHOR id="g-socket-get-protocol" href="gio/GSocket.html#g-socket-get-protocol">
1401
+ <ANCHOR id="g-socket-get-remote-address" href="gio/GSocket.html#g-socket-get-remote-address">
1402
+ <ANCHOR id="g-socket-get-socket-type" href="gio/GSocket.html#g-socket-get-socket-type">
1403
+ <ANCHOR id="g-socket-speaks-ipv4" href="gio/GSocket.html#g-socket-speaks-ipv4">
1404
+ <ANCHOR id="GSocket.property-details" href="gio/GSocket.html#GSocket.property-details">
1405
+ <ANCHOR id="GSocket--blocking" href="gio/GSocket.html#GSocket--blocking">
1406
+ <ANCHOR id="GSocket--family" href="gio/GSocket.html#GSocket--family">
1407
+ <ANCHOR id="GSocket--fd" href="gio/GSocket.html#GSocket--fd">
1408
+ <ANCHOR id="GSocket--keepalive" href="gio/GSocket.html#GSocket--keepalive">
1409
+ <ANCHOR id="GSocket--listen-backlog" href="gio/GSocket.html#GSocket--listen-backlog">
1410
+ <ANCHOR id="GSocket--local-address" href="gio/GSocket.html#GSocket--local-address">
1411
+ <ANCHOR id="GSocket--protocol" href="gio/GSocket.html#GSocket--protocol">
1412
+ <ANCHOR id="GSocket--remote-address" href="gio/GSocket.html#GSocket--remote-address">
1413
+ <ANCHOR id="GSocket--type" href="gio/GSocket.html#GSocket--type">
1414
+ <ANCHOR id="GSocket.see-also" href="gio/GSocket.html#GSocket.see-also">
1415
+ <ANCHOR id="GInetAddress" href="gio/GInetAddress.html">
1416
+ <ANCHOR id="GInetAddress.synopsis" href="gio/GInetAddress.html#GInetAddress.synopsis">
1417
+ <ANCHOR id="GInetAddress.object-hierarchy" href="gio/GInetAddress.html#GInetAddress.object-hierarchy">
1418
+ <ANCHOR id="GInetAddress.properties" href="gio/GInetAddress.html#GInetAddress.properties">
1419
+ <ANCHOR id="GInetAddress.description" href="gio/GInetAddress.html#GInetAddress.description">
1420
+ <ANCHOR id="GInetAddress.details" href="gio/GInetAddress.html#GInetAddress.details">
1421
+ <ANCHOR id="GInetAddress-struct" href="gio/GInetAddress.html#GInetAddress-struct">
1422
+ <ANCHOR id="g-inet-address-new-from-string" href="gio/GInetAddress.html#g-inet-address-new-from-string">
1423
+ <ANCHOR id="g-inet-address-new-from-bytes" href="gio/GInetAddress.html#g-inet-address-new-from-bytes">
1424
+ <ANCHOR id="g-inet-address-new-any" href="gio/GInetAddress.html#g-inet-address-new-any">
1425
+ <ANCHOR id="g-inet-address-new-loopback" href="gio/GInetAddress.html#g-inet-address-new-loopback">
1426
+ <ANCHOR id="g-inet-address-to-bytes" href="gio/GInetAddress.html#g-inet-address-to-bytes">
1427
+ <ANCHOR id="g-inet-address-get-native-size" href="gio/GInetAddress.html#g-inet-address-get-native-size">
1428
+ <ANCHOR id="g-inet-address-to-string" href="gio/GInetAddress.html#g-inet-address-to-string">
1429
+ <ANCHOR id="g-inet-address-get-family" href="gio/GInetAddress.html#g-inet-address-get-family">
1430
+ <ANCHOR id="g-inet-address-get-is-any" href="gio/GInetAddress.html#g-inet-address-get-is-any">
1431
+ <ANCHOR id="g-inet-address-get-is-loopback" href="gio/GInetAddress.html#g-inet-address-get-is-loopback">
1432
+ <ANCHOR id="g-inet-address-get-is-link-local" href="gio/GInetAddress.html#g-inet-address-get-is-link-local">
1433
+ <ANCHOR id="g-inet-address-get-is-site-local" href="gio/GInetAddress.html#g-inet-address-get-is-site-local">
1434
+ <ANCHOR id="g-inet-address-get-is-multicast" href="gio/GInetAddress.html#g-inet-address-get-is-multicast">
1435
+ <ANCHOR id="g-inet-address-get-is-mc-link-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-link-local">
1436
+ <ANCHOR id="g-inet-address-get-is-mc-node-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-node-local">
1437
+ <ANCHOR id="g-inet-address-get-is-mc-site-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-site-local">
1438
+ <ANCHOR id="g-inet-address-get-is-mc-org-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-org-local">
1439
+ <ANCHOR id="g-inet-address-get-is-mc-global" href="gio/GInetAddress.html#g-inet-address-get-is-mc-global">
1440
+ <ANCHOR id="GInetAddress.property-details" href="gio/GInetAddress.html#GInetAddress.property-details">
1441
+ <ANCHOR id="GInetAddress--bytes" href="gio/GInetAddress.html#GInetAddress--bytes">
1442
+ <ANCHOR id="GInetAddress--family" href="gio/GInetAddress.html#GInetAddress--family">
1443
+ <ANCHOR id="GInetAddress--is-any" href="gio/GInetAddress.html#GInetAddress--is-any">
1444
+ <ANCHOR id="GInetAddress--is-link-local" href="gio/GInetAddress.html#GInetAddress--is-link-local">
1445
+ <ANCHOR id="GInetAddress--is-loopback" href="gio/GInetAddress.html#GInetAddress--is-loopback">
1446
+ <ANCHOR id="GInetAddress--is-mc-global" href="gio/GInetAddress.html#GInetAddress--is-mc-global">
1447
+ <ANCHOR id="GInetAddress--is-mc-link-local" href="gio/GInetAddress.html#GInetAddress--is-mc-link-local">
1448
+ <ANCHOR id="GInetAddress--is-mc-node-local" href="gio/GInetAddress.html#GInetAddress--is-mc-node-local">
1449
+ <ANCHOR id="GInetAddress--is-mc-org-local" href="gio/GInetAddress.html#GInetAddress--is-mc-org-local">
1450
+ <ANCHOR id="GInetAddress--is-mc-site-local" href="gio/GInetAddress.html#GInetAddress--is-mc-site-local">
1451
+ <ANCHOR id="GInetAddress--is-multicast" href="gio/GInetAddress.html#GInetAddress--is-multicast">
1452
+ <ANCHOR id="GInetAddress--is-site-local" href="gio/GInetAddress.html#GInetAddress--is-site-local">
1453
+ <ANCHOR id="GSocketAddress" href="gio/GSocketAddress.html">
1454
+ <ANCHOR id="GSocketAddress.synopsis" href="gio/GSocketAddress.html#GSocketAddress.synopsis">
1455
+ <ANCHOR id="GSocketAddress.object-hierarchy" href="gio/GSocketAddress.html#GSocketAddress.object-hierarchy">
1456
+ <ANCHOR id="GSocketAddress.implemented-interfaces" href="gio/GSocketAddress.html#GSocketAddress.implemented-interfaces">
1457
+ <ANCHOR id="GSocketAddress.properties" href="gio/GSocketAddress.html#GSocketAddress.properties">
1458
+ <ANCHOR id="GSocketAddress.description" href="gio/GSocketAddress.html#GSocketAddress.description">
1459
+ <ANCHOR id="GSocketAddress.details" href="gio/GSocketAddress.html#GSocketAddress.details">
1460
+ <ANCHOR id="GSocketAddress-struct" href="gio/GSocketAddress.html#GSocketAddress-struct">
1461
+ <ANCHOR id="GSocketFamily" href="gio/GSocketAddress.html#GSocketFamily">
1462
+ <ANCHOR id="G-SOCKET-FAMILY-INVALID:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-INVALID:CAPS">
1463
+ <ANCHOR id="G-SOCKET-FAMILY-UNIX:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-UNIX:CAPS">
1464
+ <ANCHOR id="G-SOCKET-FAMILY-IPV4:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-IPV4:CAPS">
1465
+ <ANCHOR id="G-SOCKET-FAMILY-IPV6:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-IPV6:CAPS">
1466
+ <ANCHOR id="g-socket-address-new-from-native" href="gio/GSocketAddress.html#g-socket-address-new-from-native">
1467
+ <ANCHOR id="g-socket-address-get-family" href="gio/GSocketAddress.html#g-socket-address-get-family">
1468
+ <ANCHOR id="g-socket-address-to-native" href="gio/GSocketAddress.html#g-socket-address-to-native">
1469
+ <ANCHOR id="g-socket-address-get-native-size" href="gio/GSocketAddress.html#g-socket-address-get-native-size">
1470
+ <ANCHOR id="GSocketAddress.property-details" href="gio/GSocketAddress.html#GSocketAddress.property-details">
1471
+ <ANCHOR id="GSocketAddress--family" href="gio/GSocketAddress.html#GSocketAddress--family">
1472
+ <ANCHOR id="GInetSocketAddress" href="gio/GInetSocketAddress.html">
1473
+ <ANCHOR id="GInetSocketAddress.synopsis" href="gio/GInetSocketAddress.html#GInetSocketAddress.synopsis">
1474
+ <ANCHOR id="GInetSocketAddress.object-hierarchy" href="gio/GInetSocketAddress.html#GInetSocketAddress.object-hierarchy">
1475
+ <ANCHOR id="GInetSocketAddress.implemented-interfaces" href="gio/GInetSocketAddress.html#GInetSocketAddress.implemented-interfaces">
1476
+ <ANCHOR id="GInetSocketAddress.properties" href="gio/GInetSocketAddress.html#GInetSocketAddress.properties">
1477
+ <ANCHOR id="GInetSocketAddress.description" href="gio/GInetSocketAddress.html#GInetSocketAddress.description">
1478
+ <ANCHOR id="GInetSocketAddress.details" href="gio/GInetSocketAddress.html#GInetSocketAddress.details">
1479
+ <ANCHOR id="GInetSocketAddress-struct" href="gio/GInetSocketAddress.html#GInetSocketAddress-struct">
1480
+ <ANCHOR id="g-inet-socket-address-new" href="gio/GInetSocketAddress.html#g-inet-socket-address-new">
1481
+ <ANCHOR id="g-inet-socket-address-get-address" href="gio/GInetSocketAddress.html#g-inet-socket-address-get-address">
1482
+ <ANCHOR id="g-inet-socket-address-get-port" href="gio/GInetSocketAddress.html#g-inet-socket-address-get-port">
1483
+ <ANCHOR id="GInetSocketAddress.property-details" href="gio/GInetSocketAddress.html#GInetSocketAddress.property-details">
1484
+ <ANCHOR id="GInetSocketAddress--address" href="gio/GInetSocketAddress.html#GInetSocketAddress--address">
1485
+ <ANCHOR id="GInetSocketAddress--port" href="gio/GInetSocketAddress.html#GInetSocketAddress--port">
1486
+ <ANCHOR id="GUnixSocketAddress" href="gio/GUnixSocketAddress.html">
1487
+ <ANCHOR id="GUnixSocketAddress.synopsis" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.synopsis">
1488
+ <ANCHOR id="GUnixSocketAddress.object-hierarchy" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.object-hierarchy">
1489
+ <ANCHOR id="GUnixSocketAddress.implemented-interfaces" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.implemented-interfaces">
1490
+ <ANCHOR id="GUnixSocketAddress.properties" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.properties">
1491
+ <ANCHOR id="GUnixSocketAddress.description" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.description">
1492
+ <ANCHOR id="GUnixSocketAddress.details" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.details">
1493
+ <ANCHOR id="GUnixSocketAddress-struct" href="gio/GUnixSocketAddress.html#GUnixSocketAddress-struct">
1494
+ <ANCHOR id="g-unix-socket-address-new" href="gio/GUnixSocketAddress.html#g-unix-socket-address-new">
1495
+ <ANCHOR id="g-unix-socket-address-new-abstract" href="gio/GUnixSocketAddress.html#g-unix-socket-address-new-abstract">
1496
+ <ANCHOR id="g-unix-socket-address-get-is-abstract" href="gio/GUnixSocketAddress.html#g-unix-socket-address-get-is-abstract">
1497
+ <ANCHOR id="g-unix-socket-address-get-path" href="gio/GUnixSocketAddress.html#g-unix-socket-address-get-path">
1498
+ <ANCHOR id="g-unix-socket-address-get-path-len" href="gio/GUnixSocketAddress.html#g-unix-socket-address-get-path-len">
1499
+ <ANCHOR id="g-unix-socket-address-abstract-names-supported" href="gio/GUnixSocketAddress.html#g-unix-socket-address-abstract-names-supported">
1500
+ <ANCHOR id="GUnixSocketAddress.property-details" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.property-details">
1501
+ <ANCHOR id="GUnixSocketAddress--abstract" href="gio/GUnixSocketAddress.html#GUnixSocketAddress--abstract">
1502
+ <ANCHOR id="GUnixSocketAddress--path" href="gio/GUnixSocketAddress.html#GUnixSocketAddress--path">
1503
+ <ANCHOR id="GUnixSocketAddress--path-as-array" href="gio/GUnixSocketAddress.html#GUnixSocketAddress--path-as-array">
1504
+ <ANCHOR id="GSocketControlMessage" href="gio/GSocketControlMessage.html">
1505
+ <ANCHOR id="GSocketControlMessage.synopsis" href="gio/GSocketControlMessage.html#GSocketControlMessage.synopsis">
1506
+ <ANCHOR id="GSocketControlMessage.object-hierarchy" href="gio/GSocketControlMessage.html#GSocketControlMessage.object-hierarchy">
1507
+ <ANCHOR id="GSocketControlMessage.description" href="gio/GSocketControlMessage.html#GSocketControlMessage.description">
1508
+ <ANCHOR id="GSocketControlMessage.details" href="gio/GSocketControlMessage.html#GSocketControlMessage.details">
1509
+ <ANCHOR id="GSocketControlMessage-struct" href="gio/GSocketControlMessage.html#GSocketControlMessage-struct">
1510
+ <ANCHOR id="g-socket-control-message-deserialize" href="gio/GSocketControlMessage.html#g-socket-control-message-deserialize">
1511
+ <ANCHOR id="g-socket-control-message-get-level" href="gio/GSocketControlMessage.html#g-socket-control-message-get-level">
1512
+ <ANCHOR id="g-socket-control-message-get-msg-type" href="gio/GSocketControlMessage.html#g-socket-control-message-get-msg-type">
1513
+ <ANCHOR id="g-socket-control-message-get-size" href="gio/GSocketControlMessage.html#g-socket-control-message-get-size">
1514
+ <ANCHOR id="g-socket-control-message-serialize" href="gio/GSocketControlMessage.html#g-socket-control-message-serialize">
1515
+ <ANCHOR id="GSocketControlMessage.see-also" href="gio/GSocketControlMessage.html#GSocketControlMessage.see-also">
1516
+ <ANCHOR id="GUnixFDList" href="gio/GUnixFDList.html">
1517
+ <ANCHOR id="GUnixFDList.synopsis" href="gio/GUnixFDList.html#GUnixFDList.synopsis">
1518
+ <ANCHOR id="GUnixFDList.object-hierarchy" href="gio/GUnixFDList.html#GUnixFDList.object-hierarchy">
1519
+ <ANCHOR id="GUnixFDList.description" href="gio/GUnixFDList.html#GUnixFDList.description">
1520
+ <ANCHOR id="GUnixFDList.details" href="gio/GUnixFDList.html#GUnixFDList.details">
1521
+ <ANCHOR id="GUnixFDList-struct" href="gio/GUnixFDList.html#GUnixFDList-struct">
1522
+ <ANCHOR id="g-unix-fd-list-new-from-array" href="gio/GUnixFDList.html#g-unix-fd-list-new-from-array">
1523
+ <ANCHOR id="g-unix-fd-list-new" href="gio/GUnixFDList.html#g-unix-fd-list-new">
1524
+ <ANCHOR id="g-unix-fd-list-get-length" href="gio/GUnixFDList.html#g-unix-fd-list-get-length">
1525
+ <ANCHOR id="g-unix-fd-list-get" href="gio/GUnixFDList.html#g-unix-fd-list-get">
1526
+ <ANCHOR id="g-unix-fd-list-peek-fds" href="gio/GUnixFDList.html#g-unix-fd-list-peek-fds">
1527
+ <ANCHOR id="g-unix-fd-list-steal-fds" href="gio/GUnixFDList.html#g-unix-fd-list-steal-fds">
1528
+ <ANCHOR id="g-unix-fd-list-append" href="gio/GUnixFDList.html#g-unix-fd-list-append">
1529
+ <ANCHOR id="GUnixFDList.see-also" href="gio/GUnixFDList.html#GUnixFDList.see-also">
1530
+ <ANCHOR id="GUnixFDMessage" href="gio/GUnixFDMessage.html">
1531
+ <ANCHOR id="GUnixFDMessage.synopsis" href="gio/GUnixFDMessage.html#GUnixFDMessage.synopsis">
1532
+ <ANCHOR id="GUnixFDMessage.object-hierarchy" href="gio/GUnixFDMessage.html#GUnixFDMessage.object-hierarchy">
1533
+ <ANCHOR id="GUnixFDMessage.properties" href="gio/GUnixFDMessage.html#GUnixFDMessage.properties">
1534
+ <ANCHOR id="GUnixFDMessage.description" href="gio/GUnixFDMessage.html#GUnixFDMessage.description">
1535
+ <ANCHOR id="GUnixFDMessage.details" href="gio/GUnixFDMessage.html#GUnixFDMessage.details">
1536
+ <ANCHOR id="GUnixFDMessage-struct" href="gio/GUnixFDMessage.html#GUnixFDMessage-struct">
1537
+ <ANCHOR id="g-unix-fd-message-new-with-fd-list" href="gio/GUnixFDMessage.html#g-unix-fd-message-new-with-fd-list">
1538
+ <ANCHOR id="g-unix-fd-message-new" href="gio/GUnixFDMessage.html#g-unix-fd-message-new">
1539
+ <ANCHOR id="g-unix-fd-message-get-fd-list" href="gio/GUnixFDMessage.html#g-unix-fd-message-get-fd-list">
1540
+ <ANCHOR id="g-unix-fd-message-append-fd" href="gio/GUnixFDMessage.html#g-unix-fd-message-append-fd">
1541
+ <ANCHOR id="g-unix-fd-message-steal-fds" href="gio/GUnixFDMessage.html#g-unix-fd-message-steal-fds">
1542
+ <ANCHOR id="GUnixFDMessage.property-details" href="gio/GUnixFDMessage.html#GUnixFDMessage.property-details">
1543
+ <ANCHOR id="GUnixFDMessage--fd-list" href="gio/GUnixFDMessage.html#GUnixFDMessage--fd-list">
1544
+ <ANCHOR id="GUnixFDMessage.see-also" href="gio/GUnixFDMessage.html#GUnixFDMessage.see-also">
1545
+ <ANCHOR id="GResolver" href="gio/GResolver.html">
1546
+ <ANCHOR id="GResolver.synopsis" href="gio/GResolver.html#GResolver.synopsis">
1547
+ <ANCHOR id="GResolver.object-hierarchy" href="gio/GResolver.html#GResolver.object-hierarchy">
1548
+ <ANCHOR id="GResolver.signals" href="gio/GResolver.html#GResolver.signals">
1549
+ <ANCHOR id="GResolver.description" href="gio/GResolver.html#GResolver.description">
1550
+ <ANCHOR id="GResolver.details" href="gio/GResolver.html#GResolver.details">
1551
+ <ANCHOR id="GResolver-struct" href="gio/GResolver.html#GResolver-struct">
1552
+ <ANCHOR id="g-resolver-get-default" href="gio/GResolver.html#g-resolver-get-default">
1553
+ <ANCHOR id="g-resolver-set-default" href="gio/GResolver.html#g-resolver-set-default">
1554
+ <ANCHOR id="g-resolver-lookup-by-name" href="gio/GResolver.html#g-resolver-lookup-by-name">
1555
+ <ANCHOR id="g-resolver-lookup-by-name-async" href="gio/GResolver.html#g-resolver-lookup-by-name-async">
1556
+ <ANCHOR id="g-resolver-lookup-by-name-finish" href="gio/GResolver.html#g-resolver-lookup-by-name-finish">
1557
+ <ANCHOR id="g-resolver-free-addresses" href="gio/GResolver.html#g-resolver-free-addresses">
1558
+ <ANCHOR id="g-resolver-lookup-by-address" href="gio/GResolver.html#g-resolver-lookup-by-address">
1559
+ <ANCHOR id="g-resolver-lookup-by-address-async" href="gio/GResolver.html#g-resolver-lookup-by-address-async">
1560
+ <ANCHOR id="g-resolver-lookup-by-address-finish" href="gio/GResolver.html#g-resolver-lookup-by-address-finish">
1561
+ <ANCHOR id="g-resolver-lookup-service" href="gio/GResolver.html#g-resolver-lookup-service">
1562
+ <ANCHOR id="g-resolver-lookup-service-async" href="gio/GResolver.html#g-resolver-lookup-service-async">
1563
+ <ANCHOR id="g-resolver-lookup-service-finish" href="gio/GResolver.html#g-resolver-lookup-service-finish">
1564
+ <ANCHOR id="g-resolver-free-targets" href="gio/GResolver.html#g-resolver-free-targets">
1565
+ <ANCHOR id="G-RESOLVER-ERROR:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR:CAPS">
1566
+ <ANCHOR id="GResolverError" href="gio/GResolver.html#GResolverError">
1567
+ <ANCHOR id="G-RESOLVER-ERROR-NOT-FOUND:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR-NOT-FOUND:CAPS">
1568
+ <ANCHOR id="G-RESOLVER-ERROR-TEMPORARY-FAILURE:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR-TEMPORARY-FAILURE:CAPS">
1569
+ <ANCHOR id="G-RESOLVER-ERROR-INTERNAL:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR-INTERNAL:CAPS">
1570
+ <ANCHOR id="GResolver.signal-details" href="gio/GResolver.html#GResolver.signal-details">
1571
+ <ANCHOR id="GResolver-reload" href="gio/GResolver.html#GResolver-reload">
1572
+ <ANCHOR id="GSocketConnectable" href="gio/GSocketConnectable.html">
1573
+ <ANCHOR id="GSocketConnectable.synopsis" href="gio/GSocketConnectable.html#GSocketConnectable.synopsis">
1574
+ <ANCHOR id="GSocketAddressEnumerator" href="gio/GSocketConnectable.html#GSocketAddressEnumerator">
1575
+ <ANCHOR id="GSocketConnectable.object-hierarchy" href="gio/GSocketConnectable.html#GSocketConnectable.object-hierarchy">
1576
+ <ANCHOR id="GSocketConnectable.prerequisites" href="gio/GSocketConnectable.html#GSocketConnectable.prerequisites">
1577
+ <ANCHOR id="GSocketConnectable.implementations" href="gio/GSocketConnectable.html#GSocketConnectable.implementations">
1578
+ <ANCHOR id="GSocketConnectable.description" href="gio/GSocketConnectable.html#GSocketConnectable.description">
1579
+ <ANCHOR id="GSocketConnectable.details" href="gio/GSocketConnectable.html#GSocketConnectable.details">
1580
+ <ANCHOR id="GSocketConnectable-struct" href="gio/GSocketConnectable.html#GSocketConnectable-struct">
1581
+ <ANCHOR id="GSocketConnectableIface" href="gio/GSocketConnectable.html#GSocketConnectableIface">
1582
+ <ANCHOR id="g-socket-connectable-enumerate" href="gio/GSocketConnectable.html#g-socket-connectable-enumerate">
1583
+ <ANCHOR id="GSocketAddressEnumerator-struct" href="gio/GSocketConnectable.html#GSocketAddressEnumerator-struct">
1584
+ <ANCHOR id="g-socket-address-enumerator-next" href="gio/GSocketConnectable.html#g-socket-address-enumerator-next">
1585
+ <ANCHOR id="g-socket-address-enumerator-next-async" href="gio/GSocketConnectable.html#g-socket-address-enumerator-next-async">
1586
+ <ANCHOR id="g-socket-address-enumerator-next-finish" href="gio/GSocketConnectable.html#g-socket-address-enumerator-next-finish">
1587
+ <ANCHOR id="GNetworkAddress" href="gio/GNetworkAddress.html">
1588
+ <ANCHOR id="GNetworkAddress.synopsis" href="gio/GNetworkAddress.html#GNetworkAddress.synopsis">
1589
+ <ANCHOR id="GNetworkAddress.object-hierarchy" href="gio/GNetworkAddress.html#GNetworkAddress.object-hierarchy">
1590
+ <ANCHOR id="GNetworkAddress.implemented-interfaces" href="gio/GNetworkAddress.html#GNetworkAddress.implemented-interfaces">
1591
+ <ANCHOR id="GNetworkAddress.properties" href="gio/GNetworkAddress.html#GNetworkAddress.properties">
1592
+ <ANCHOR id="GNetworkAddress.description" href="gio/GNetworkAddress.html#GNetworkAddress.description">
1593
+ <ANCHOR id="GNetworkAddress.details" href="gio/GNetworkAddress.html#GNetworkAddress.details">
1594
+ <ANCHOR id="GNetworkAddress-struct" href="gio/GNetworkAddress.html#GNetworkAddress-struct">
1595
+ <ANCHOR id="g-network-address-new" href="gio/GNetworkAddress.html#g-network-address-new">
1596
+ <ANCHOR id="g-network-address-get-hostname" href="gio/GNetworkAddress.html#g-network-address-get-hostname">
1597
+ <ANCHOR id="g-network-address-get-port" href="gio/GNetworkAddress.html#g-network-address-get-port">
1598
+ <ANCHOR id="g-network-address-parse" href="gio/GNetworkAddress.html#g-network-address-parse">
1599
+ <ANCHOR id="GNetworkAddress.property-details" href="gio/GNetworkAddress.html#GNetworkAddress.property-details">
1600
+ <ANCHOR id="GNetworkAddress--hostname" href="gio/GNetworkAddress.html#GNetworkAddress--hostname">
1601
+ <ANCHOR id="GNetworkAddress--port" href="gio/GNetworkAddress.html#GNetworkAddress--port">
1602
+ <ANCHOR id="GNetworkService" href="gio/GNetworkService.html">
1603
+ <ANCHOR id="GNetworkService.synopsis" href="gio/GNetworkService.html#GNetworkService.synopsis">
1604
+ <ANCHOR id="GNetworkService.object-hierarchy" href="gio/GNetworkService.html#GNetworkService.object-hierarchy">
1605
+ <ANCHOR id="GNetworkService.implemented-interfaces" href="gio/GNetworkService.html#GNetworkService.implemented-interfaces">
1606
+ <ANCHOR id="GNetworkService.properties" href="gio/GNetworkService.html#GNetworkService.properties">
1607
+ <ANCHOR id="GNetworkService.description" href="gio/GNetworkService.html#GNetworkService.description">
1608
+ <ANCHOR id="GNetworkService.details" href="gio/GNetworkService.html#GNetworkService.details">
1609
+ <ANCHOR id="GNetworkService-struct" href="gio/GNetworkService.html#GNetworkService-struct">
1610
+ <ANCHOR id="g-network-service-new" href="gio/GNetworkService.html#g-network-service-new">
1611
+ <ANCHOR id="g-network-service-get-service" href="gio/GNetworkService.html#g-network-service-get-service">
1612
+ <ANCHOR id="g-network-service-get-protocol" href="gio/GNetworkService.html#g-network-service-get-protocol">
1613
+ <ANCHOR id="g-network-service-get-domain" href="gio/GNetworkService.html#g-network-service-get-domain">
1614
+ <ANCHOR id="GNetworkService.property-details" href="gio/GNetworkService.html#GNetworkService.property-details">
1615
+ <ANCHOR id="GNetworkService--domain" href="gio/GNetworkService.html#GNetworkService--domain">
1616
+ <ANCHOR id="GNetworkService--protocol" href="gio/GNetworkService.html#GNetworkService--protocol">
1617
+ <ANCHOR id="GNetworkService--service" href="gio/GNetworkService.html#GNetworkService--service">
1618
+ <ANCHOR id="gio-GSrvTarget" href="gio/gio-GSrvTarget.html">
1619
+ <ANCHOR id="gio-GSrvTarget.synopsis" href="gio/gio-GSrvTarget.html#gio-GSrvTarget.synopsis">
1620
+ <ANCHOR id="gio-GSrvTarget.description" href="gio/gio-GSrvTarget.html#gio-GSrvTarget.description">
1621
+ <ANCHOR id="gio-GSrvTarget.details" href="gio/gio-GSrvTarget.html#gio-GSrvTarget.details">
1622
+ <ANCHOR id="GSrvTarget" href="gio/gio-GSrvTarget.html#GSrvTarget">
1623
+ <ANCHOR id="g-srv-target-new" href="gio/gio-GSrvTarget.html#g-srv-target-new">
1624
+ <ANCHOR id="g-srv-target-copy" href="gio/gio-GSrvTarget.html#g-srv-target-copy">
1625
+ <ANCHOR id="g-srv-target-free" href="gio/gio-GSrvTarget.html#g-srv-target-free">
1626
+ <ANCHOR id="g-srv-target-get-hostname" href="gio/gio-GSrvTarget.html#g-srv-target-get-hostname">
1627
+ <ANCHOR id="g-srv-target-get-port" href="gio/gio-GSrvTarget.html#g-srv-target-get-port">
1628
+ <ANCHOR id="g-srv-target-get-priority" href="gio/gio-GSrvTarget.html#g-srv-target-get-priority">
1629
+ <ANCHOR id="g-srv-target-get-weight" href="gio/gio-GSrvTarget.html#g-srv-target-get-weight">
1630
+ <ANCHOR id="g-srv-target-list-sort" href="gio/gio-GSrvTarget.html#g-srv-target-list-sort">
1631
+ <ANCHOR id="GSocketClient" href="gio/GSocketClient.html">
1632
+ <ANCHOR id="GSocketClient.synopsis" href="gio/GSocketClient.html#GSocketClient.synopsis">
1633
+ <ANCHOR id="GSocketClient.object-hierarchy" href="gio/GSocketClient.html#GSocketClient.object-hierarchy">
1634
+ <ANCHOR id="GSocketClient.properties" href="gio/GSocketClient.html#GSocketClient.properties">
1635
+ <ANCHOR id="GSocketClient.description" href="gio/GSocketClient.html#GSocketClient.description">
1636
+ <ANCHOR id="GSocketClient.details" href="gio/GSocketClient.html#GSocketClient.details">
1637
+ <ANCHOR id="GSocketClient-struct" href="gio/GSocketClient.html#GSocketClient-struct">
1638
+ <ANCHOR id="g-socket-client-new" href="gio/GSocketClient.html#g-socket-client-new">
1639
+ <ANCHOR id="g-socket-client-connect" href="gio/GSocketClient.html#g-socket-client-connect">
1640
+ <ANCHOR id="g-socket-client-connect-async" href="gio/GSocketClient.html#g-socket-client-connect-async">
1641
+ <ANCHOR id="g-socket-client-connect-finish" href="gio/GSocketClient.html#g-socket-client-connect-finish">
1642
+ <ANCHOR id="g-socket-client-connect-to-host" href="gio/GSocketClient.html#g-socket-client-connect-to-host">
1643
+ <ANCHOR id="g-socket-client-connect-to-host-async" href="gio/GSocketClient.html#g-socket-client-connect-to-host-async">
1644
+ <ANCHOR id="g-socket-client-connect-to-host-finish" href="gio/GSocketClient.html#g-socket-client-connect-to-host-finish">
1645
+ <ANCHOR id="g-socket-client-connect-to-service" href="gio/GSocketClient.html#g-socket-client-connect-to-service">
1646
+ <ANCHOR id="g-socket-client-connect-to-service-async" href="gio/GSocketClient.html#g-socket-client-connect-to-service-async">
1647
+ <ANCHOR id="g-socket-client-connect-to-service-finish" href="gio/GSocketClient.html#g-socket-client-connect-to-service-finish">
1648
+ <ANCHOR id="g-socket-client-set-family" href="gio/GSocketClient.html#g-socket-client-set-family">
1649
+ <ANCHOR id="g-socket-client-set-local-address" href="gio/GSocketClient.html#g-socket-client-set-local-address">
1650
+ <ANCHOR id="g-socket-client-set-protocol" href="gio/GSocketClient.html#g-socket-client-set-protocol">
1651
+ <ANCHOR id="g-socket-client-set-socket-type" href="gio/GSocketClient.html#g-socket-client-set-socket-type">
1652
+ <ANCHOR id="g-socket-client-get-family" href="gio/GSocketClient.html#g-socket-client-get-family">
1653
+ <ANCHOR id="g-socket-client-get-local-address" href="gio/GSocketClient.html#g-socket-client-get-local-address">
1654
+ <ANCHOR id="g-socket-client-get-protocol" href="gio/GSocketClient.html#g-socket-client-get-protocol">
1655
+ <ANCHOR id="g-socket-client-get-socket-type" href="gio/GSocketClient.html#g-socket-client-get-socket-type">
1656
+ <ANCHOR id="GSocketClient.property-details" href="gio/GSocketClient.html#GSocketClient.property-details">
1657
+ <ANCHOR id="GSocketClient--family" href="gio/GSocketClient.html#GSocketClient--family">
1658
+ <ANCHOR id="GSocketClient--local-address" href="gio/GSocketClient.html#GSocketClient--local-address">
1659
+ <ANCHOR id="GSocketClient--protocol" href="gio/GSocketClient.html#GSocketClient--protocol">
1660
+ <ANCHOR id="GSocketClient--type" href="gio/GSocketClient.html#GSocketClient--type">
1661
+ <ANCHOR id="GSocketClient.see-also" href="gio/GSocketClient.html#GSocketClient.see-also">
1662
+ <ANCHOR id="GSocketConnection" href="gio/GSocketConnection.html">
1663
+ <ANCHOR id="GSocketConnection.synopsis" href="gio/GSocketConnection.html#GSocketConnection.synopsis">
1664
+ <ANCHOR id="GTcpConnection" href="gio/GSocketConnection.html#GTcpConnection">
1665
+ <ANCHOR id="GUnixConnection" href="gio/GSocketConnection.html#GUnixConnection">
1666
+ <ANCHOR id="GSocketConnection.object-hierarchy" href="gio/GSocketConnection.html#GSocketConnection.object-hierarchy">
1667
+ <ANCHOR id="GSocketConnection.properties" href="gio/GSocketConnection.html#GSocketConnection.properties">
1668
+ <ANCHOR id="GSocketConnection.description" href="gio/GSocketConnection.html#GSocketConnection.description">
1669
+ <ANCHOR id="GSocketConnection.details" href="gio/GSocketConnection.html#GSocketConnection.details">
1670
+ <ANCHOR id="GSocketConnection-struct" href="gio/GSocketConnection.html#GSocketConnection-struct">
1671
+ <ANCHOR id="g-socket-connection-get-local-address" href="gio/GSocketConnection.html#g-socket-connection-get-local-address">
1672
+ <ANCHOR id="g-socket-connection-get-remote-address" href="gio/GSocketConnection.html#g-socket-connection-get-remote-address">
1673
+ <ANCHOR id="g-socket-connection-get-socket" href="gio/GSocketConnection.html#g-socket-connection-get-socket">
1674
+ <ANCHOR id="GTcpConnection-struct" href="gio/GSocketConnection.html#GTcpConnection-struct">
1675
+ <ANCHOR id="g-tcp-connection-set-graceful-disconnect" href="gio/GSocketConnection.html#g-tcp-connection-set-graceful-disconnect">
1676
+ <ANCHOR id="g-tcp-connection-get-graceful-disconnect" href="gio/GSocketConnection.html#g-tcp-connection-get-graceful-disconnect">
1677
+ <ANCHOR id="GUnixConnection-struct" href="gio/GSocketConnection.html#GUnixConnection-struct">
1678
+ <ANCHOR id="g-unix-connection-receive-fd" href="gio/GSocketConnection.html#g-unix-connection-receive-fd">
1679
+ <ANCHOR id="g-unix-connection-send-fd" href="gio/GSocketConnection.html#g-unix-connection-send-fd">
1680
+ <ANCHOR id="g-socket-connection-factory-create-connection" href="gio/GSocketConnection.html#g-socket-connection-factory-create-connection">
1681
+ <ANCHOR id="g-socket-connection-factory-lookup-type" href="gio/GSocketConnection.html#g-socket-connection-factory-lookup-type">
1682
+ <ANCHOR id="g-socket-connection-factory-register-type" href="gio/GSocketConnection.html#g-socket-connection-factory-register-type">
1683
+ <ANCHOR id="GSocketConnection.property-details" href="gio/GSocketConnection.html#GSocketConnection.property-details">
1684
+ <ANCHOR id="GSocketConnection--socket" href="gio/GSocketConnection.html#GSocketConnection--socket">
1685
+ <ANCHOR id="GTcpConnection--graceful-disconnect" href="gio/GSocketConnection.html#GTcpConnection--graceful-disconnect">
1686
+ <ANCHOR id="GSocketConnection.see-also" href="gio/GSocketConnection.html#GSocketConnection.see-also">
1687
+ <ANCHOR id="GSocketListener" href="gio/GSocketListener.html">
1688
+ <ANCHOR id="GSocketListener.synopsis" href="gio/GSocketListener.html#GSocketListener.synopsis">
1689
+ <ANCHOR id="GSocketListener.object-hierarchy" href="gio/GSocketListener.html#GSocketListener.object-hierarchy">
1690
+ <ANCHOR id="GSocketListener.properties" href="gio/GSocketListener.html#GSocketListener.properties">
1691
+ <ANCHOR id="GSocketListener.description" href="gio/GSocketListener.html#GSocketListener.description">
1692
+ <ANCHOR id="GSocketListener.details" href="gio/GSocketListener.html#GSocketListener.details">
1693
+ <ANCHOR id="GSocketListener-struct" href="gio/GSocketListener.html#GSocketListener-struct">
1694
+ <ANCHOR id="g-socket-listener-new" href="gio/GSocketListener.html#g-socket-listener-new">
1695
+ <ANCHOR id="g-socket-listener-add-socket" href="gio/GSocketListener.html#g-socket-listener-add-socket">
1696
+ <ANCHOR id="g-socket-listener-add-address" href="gio/GSocketListener.html#g-socket-listener-add-address">
1697
+ <ANCHOR id="g-socket-listener-add-inet-port" href="gio/GSocketListener.html#g-socket-listener-add-inet-port">
1698
+ <ANCHOR id="g-socket-listener-add-any-inet-port" href="gio/GSocketListener.html#g-socket-listener-add-any-inet-port">
1699
+ <ANCHOR id="g-socket-listener-accept" href="gio/GSocketListener.html#g-socket-listener-accept">
1700
+ <ANCHOR id="g-socket-listener-accept-async" href="gio/GSocketListener.html#g-socket-listener-accept-async">
1701
+ <ANCHOR id="g-socket-listener-accept-finish" href="gio/GSocketListener.html#g-socket-listener-accept-finish">
1702
+ <ANCHOR id="g-socket-listener-accept-socket" href="gio/GSocketListener.html#g-socket-listener-accept-socket">
1703
+ <ANCHOR id="g-socket-listener-accept-socket-async" href="gio/GSocketListener.html#g-socket-listener-accept-socket-async">
1704
+ <ANCHOR id="g-socket-listener-accept-socket-finish" href="gio/GSocketListener.html#g-socket-listener-accept-socket-finish">
1705
+ <ANCHOR id="g-socket-listener-close" href="gio/GSocketListener.html#g-socket-listener-close">
1706
+ <ANCHOR id="g-socket-listener-set-backlog" href="gio/GSocketListener.html#g-socket-listener-set-backlog">
1707
+ <ANCHOR id="GSocketListener.property-details" href="gio/GSocketListener.html#GSocketListener.property-details">
1708
+ <ANCHOR id="GSocketListener--listen-backlog" href="gio/GSocketListener.html#GSocketListener--listen-backlog">
1709
+ <ANCHOR id="GSocketListener.see-also" href="gio/GSocketListener.html#GSocketListener.see-also">
1710
+ <ANCHOR id="GSocketService" href="gio/GSocketService.html">
1711
+ <ANCHOR id="GSocketService.synopsis" href="gio/GSocketService.html#GSocketService.synopsis">
1712
+ <ANCHOR id="GSocketService.object-hierarchy" href="gio/GSocketService.html#GSocketService.object-hierarchy">
1713
+ <ANCHOR id="GSocketService.signals" href="gio/GSocketService.html#GSocketService.signals">
1714
+ <ANCHOR id="GSocketService.description" href="gio/GSocketService.html#GSocketService.description">
1715
+ <ANCHOR id="GSocketService.details" href="gio/GSocketService.html#GSocketService.details">
1716
+ <ANCHOR id="GSocketService-struct" href="gio/GSocketService.html#GSocketService-struct">
1717
+ <ANCHOR id="g-socket-service-new" href="gio/GSocketService.html#g-socket-service-new">
1718
+ <ANCHOR id="g-socket-service-start" href="gio/GSocketService.html#g-socket-service-start">
1719
+ <ANCHOR id="g-socket-service-stop" href="gio/GSocketService.html#g-socket-service-stop">
1720
+ <ANCHOR id="g-socket-service-is-active" href="gio/GSocketService.html#g-socket-service-is-active">
1721
+ <ANCHOR id="GSocketService.signal-details" href="gio/GSocketService.html#GSocketService.signal-details">
1722
+ <ANCHOR id="GSocketService-incoming" href="gio/GSocketService.html#GSocketService-incoming">
1723
+ <ANCHOR id="GSocketService.see-also" href="gio/GSocketService.html#GSocketService.see-also">
1724
+ <ANCHOR id="GThreadedSocketService" href="gio/GThreadedSocketService.html">
1725
+ <ANCHOR id="GThreadedSocketService.synopsis" href="gio/GThreadedSocketService.html#GThreadedSocketService.synopsis">
1726
+ <ANCHOR id="GThreadedSocketService.object-hierarchy" href="gio/GThreadedSocketService.html#GThreadedSocketService.object-hierarchy">
1727
+ <ANCHOR id="GThreadedSocketService.properties" href="gio/GThreadedSocketService.html#GThreadedSocketService.properties">
1728
+ <ANCHOR id="GThreadedSocketService.signals" href="gio/GThreadedSocketService.html#GThreadedSocketService.signals">
1729
+ <ANCHOR id="GThreadedSocketService.description" href="gio/GThreadedSocketService.html#GThreadedSocketService.description">
1730
+ <ANCHOR id="GThreadedSocketService.details" href="gio/GThreadedSocketService.html#GThreadedSocketService.details">
1731
+ <ANCHOR id="GThreadedSocketService-struct" href="gio/GThreadedSocketService.html#GThreadedSocketService-struct">
1732
+ <ANCHOR id="g-threaded-socket-service-new" href="gio/GThreadedSocketService.html#g-threaded-socket-service-new">
1733
+ <ANCHOR id="GThreadedSocketService.property-details" href="gio/GThreadedSocketService.html#GThreadedSocketService.property-details">
1734
+ <ANCHOR id="GThreadedSocketService--max-threads" href="gio/GThreadedSocketService.html#GThreadedSocketService--max-threads">
1735
+ <ANCHOR id="GThreadedSocketService.signal-details" href="gio/GThreadedSocketService.html#GThreadedSocketService.signal-details">
1736
+ <ANCHOR id="GThreadedSocketService-run" href="gio/GThreadedSocketService.html#GThreadedSocketService-run">
1737
+ <ANCHOR id="GThreadedSocketService.see-also" href="gio/GThreadedSocketService.html#GThreadedSocketService.see-also">
1738
+ <ANCHOR id="GFilenameCompleter" href="gio/GFilenameCompleter.html">
1739
+ <ANCHOR id="GFilenameCompleter.synopsis" href="gio/GFilenameCompleter.html#GFilenameCompleter.synopsis">
1740
+ <ANCHOR id="GFilenameCompleter.object-hierarchy" href="gio/GFilenameCompleter.html#GFilenameCompleter.object-hierarchy">
1741
+ <ANCHOR id="GFilenameCompleter.signals" href="gio/GFilenameCompleter.html#GFilenameCompleter.signals">
1742
+ <ANCHOR id="GFilenameCompleter.description" href="gio/GFilenameCompleter.html#GFilenameCompleter.description">
1743
+ <ANCHOR id="GFilenameCompleter.details" href="gio/GFilenameCompleter.html#GFilenameCompleter.details">
1744
+ <ANCHOR id="GFilenameCompleter-struct" href="gio/GFilenameCompleter.html#GFilenameCompleter-struct">
1745
+ <ANCHOR id="g-filename-completer-new" href="gio/GFilenameCompleter.html#g-filename-completer-new">
1746
+ <ANCHOR id="g-filename-completer-get-completion-suffix" href="gio/GFilenameCompleter.html#g-filename-completer-get-completion-suffix">
1747
+ <ANCHOR id="g-filename-completer-get-completions" href="gio/GFilenameCompleter.html#g-filename-completer-get-completions">
1748
+ <ANCHOR id="g-filename-completer-set-dirs-only" href="gio/GFilenameCompleter.html#g-filename-completer-set-dirs-only">
1749
+ <ANCHOR id="GFilenameCompleter.signal-details" href="gio/GFilenameCompleter.html#GFilenameCompleter.signal-details">
1750
+ <ANCHOR id="GFilenameCompleter-got-completion-data" href="gio/GFilenameCompleter.html#GFilenameCompleter-got-completion-data">
1751
+ <ANCHOR id="GVfs" href="gio/GVfs.html">
1752
+ <ANCHOR id="GVfs.synopsis" href="gio/GVfs.html#GVfs.synopsis">
1753
+ <ANCHOR id="GVfs.object-hierarchy" href="gio/GVfs.html#GVfs.object-hierarchy">
1754
+ <ANCHOR id="GVfs.description" href="gio/GVfs.html#GVfs.description">
1755
+ <ANCHOR id="GVfs.details" href="gio/GVfs.html#GVfs.details">
1756
+ <ANCHOR id="GVfs-struct" href="gio/GVfs.html#GVfs-struct">
1757
+ <ANCHOR id="G-VFS-EXTENSION-POINT-NAME:CAPS" href="gio/GVfs.html#G-VFS-EXTENSION-POINT-NAME:CAPS">
1758
+ <ANCHOR id="g-vfs-get-file-for-path" href="gio/GVfs.html#g-vfs-get-file-for-path">
1759
+ <ANCHOR id="g-vfs-get-file-for-uri" href="gio/GVfs.html#g-vfs-get-file-for-uri">
1760
+ <ANCHOR id="g-vfs-parse-name" href="gio/GVfs.html#g-vfs-parse-name">
1761
+ <ANCHOR id="g-vfs-get-default" href="gio/GVfs.html#g-vfs-get-default">
1762
+ <ANCHOR id="g-vfs-get-local" href="gio/GVfs.html#g-vfs-get-local">
1763
+ <ANCHOR id="g-vfs-is-active" href="gio/GVfs.html#g-vfs-is-active">
1764
+ <ANCHOR id="g-vfs-get-supported-uri-schemes" href="gio/GVfs.html#g-vfs-get-supported-uri-schemes">
1765
+ <ANCHOR id="GIOModule" href="gio/GIOModule.html">
1766
+ <ANCHOR id="GIOModule.synopsis" href="gio/GIOModule.html#GIOModule.synopsis">
1767
+ <ANCHOR id="GIOModule.object-hierarchy" href="gio/GIOModule.html#GIOModule.object-hierarchy">
1768
+ <ANCHOR id="GIOModule.implemented-interfaces" href="gio/GIOModule.html#GIOModule.implemented-interfaces">
1769
+ <ANCHOR id="GIOModule.description" href="gio/GIOModule.html#GIOModule.description">
1770
+ <ANCHOR id="GIOModule.details" href="gio/GIOModule.html#GIOModule.details">
1771
+ <ANCHOR id="GIOModule-struct" href="gio/GIOModule.html#GIOModule-struct">
1772
+ <ANCHOR id="g-io-module-new" href="gio/GIOModule.html#g-io-module-new">
1773
+ <ANCHOR id="g-io-modules-load-all-in-directory" href="gio/GIOModule.html#g-io-modules-load-all-in-directory">
1774
+ <ANCHOR id="g-io-modules-scan-all-in-directory" href="gio/GIOModule.html#g-io-modules-scan-all-in-directory">
1775
+ <ANCHOR id="g-io-module-load" href="gio/GIOModule.html#g-io-module-load">
1776
+ <ANCHOR id="g-io-module-unload" href="gio/GIOModule.html#g-io-module-unload">
1777
+ <ANCHOR id="g-io-module-query" href="gio/GIOModule.html#g-io-module-query">
1778
+ <ANCHOR id="gio-Extension-Points" href="gio/gio-Extension-Points.html">
1779
+ <ANCHOR id="gio-Extension-Points.synopsis" href="gio/gio-Extension-Points.html#gio-Extension-Points.synopsis">
1780
+ <ANCHOR id="gio-Extension-Points.description" href="gio/gio-Extension-Points.html#gio-Extension-Points.description">
1781
+ <ANCHOR id="gio-Extension-Points.details" href="gio/gio-Extension-Points.html#gio-Extension-Points.details">
1782
+ <ANCHOR id="GIOExtension" href="gio/gio-Extension-Points.html#GIOExtension">
1783
+ <ANCHOR id="GIOExtensionPoint" href="gio/gio-Extension-Points.html#GIOExtensionPoint">
1784
+ <ANCHOR id="g-io-extension-get-name" href="gio/gio-Extension-Points.html#g-io-extension-get-name">
1785
+ <ANCHOR id="g-io-extension-get-priority" href="gio/gio-Extension-Points.html#g-io-extension-get-priority">
1786
+ <ANCHOR id="g-io-extension-get-type" href="gio/gio-Extension-Points.html#g-io-extension-get-type">
1787
+ <ANCHOR id="g-io-extension-point-get-extension-by-name" href="gio/gio-Extension-Points.html#g-io-extension-point-get-extension-by-name">
1788
+ <ANCHOR id="g-io-extension-point-get-extensions" href="gio/gio-Extension-Points.html#g-io-extension-point-get-extensions">
1789
+ <ANCHOR id="g-io-extension-point-get-required-type" href="gio/gio-Extension-Points.html#g-io-extension-point-get-required-type">
1790
+ <ANCHOR id="g-io-extension-point-implement" href="gio/gio-Extension-Points.html#g-io-extension-point-implement">
1791
+ <ANCHOR id="g-io-extension-point-lookup" href="gio/gio-Extension-Points.html#g-io-extension-point-lookup">
1792
+ <ANCHOR id="g-io-extension-point-register" href="gio/gio-Extension-Points.html#g-io-extension-point-register">
1793
+ <ANCHOR id="g-io-extension-point-set-required-type" href="gio/gio-Extension-Points.html#g-io-extension-point-set-required-type">
1794
+ <ANCHOR id="g-io-extension-ref-class" href="gio/gio-Extension-Points.html#g-io-extension-ref-class">
1795
+ <ANCHOR id="gio-Extension-Points.see-also" href="gio/gio-Extension-Points.html#gio-Extension-Points.see-also">