gio2 0.90.3-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (856) hide show
  1. data/ChangeLog +60 -0
  2. data/README +34 -0
  3. data/Rakefile +76 -0
  4. data/ext/gio2/depend +5 -0
  5. data/ext/gio2/extconf.rb +91 -0
  6. data/ext/gio2/gappinfo.c +318 -0
  7. data/ext/gio2/gapplaunchcontext.c +79 -0
  8. data/ext/gio2/gasyncinitable.c +244 -0
  9. data/ext/gio2/gasyncresult.c +39 -0
  10. data/ext/gio2/gbufferedinputstream.c +184 -0
  11. data/ext/gio2/gbufferedoutputstream.c +82 -0
  12. data/ext/gio2/gcancellable.c +177 -0
  13. data/ext/gio2/gcharsetconverter.c +72 -0
  14. data/ext/gio2/gcontenttype.c +135 -0
  15. data/ext/gio2/gconverter.c +117 -0
  16. data/ext/gio2/gconverterinputstream.c +48 -0
  17. data/ext/gio2/gconverteroutputstream.c +48 -0
  18. data/ext/gio2/gdatainputstream.c +341 -0
  19. data/ext/gio2/gdataoutputstream.c +202 -0
  20. data/ext/gio2/gdesktopappinfo.c +90 -0
  21. data/ext/gio2/gdrive.c +267 -0
  22. data/ext/gio2/gemblem.c +71 -0
  23. data/ext/gio2/gemblemedicon.c +63 -0
  24. data/ext/gio2/gfile.c +2058 -0
  25. data/ext/gio2/gfileattribute.c +263 -0
  26. data/ext/gio2/gfileattributematcher.c +90 -0
  27. data/ext/gio2/gfiledescriptorbased.c +42 -0
  28. data/ext/gio2/gfileenumerator.c +167 -0
  29. data/ext/gio2/gfileicon.c +46 -0
  30. data/ext/gio2/gfileinfo.c +641 -0
  31. data/ext/gio2/gfileinputstream.c +92 -0
  32. data/ext/gio2/gfileiostream.c +98 -0
  33. data/ext/gio2/gfilemonitor.c +63 -0
  34. data/ext/gio2/gfilenamecompleter.c +72 -0
  35. data/ext/gio2/gfileoutputstream.c +100 -0
  36. data/ext/gio2/gfilterinputstream.c +56 -0
  37. data/ext/gio2/gfilteroutputstream.c +56 -0
  38. data/ext/gio2/gicon.c +69 -0
  39. data/ext/gio2/ginetaddress.c +188 -0
  40. data/ext/gio2/ginetsocketaddress.c +54 -0
  41. data/ext/gio2/ginitable.c +195 -0
  42. data/ext/gio2/ginputstream.c +341 -0
  43. data/ext/gio2/gio2.c +120 -0
  44. data/ext/gio2/gio2.def +2 -0
  45. data/ext/gio2/gio2.h +343 -0
  46. data/ext/gio2/gioerror.c +67 -0
  47. data/ext/gio2/giomodule.c +63 -0
  48. data/ext/gio2/gioscheduler.c +195 -0
  49. data/ext/gio2/giostream.c +129 -0
  50. data/ext/gio2/gloadableicon.c +91 -0
  51. data/ext/gio2/gmemoryinputstream.c +65 -0
  52. data/ext/gio2/gmemoryoutputstream.c +65 -0
  53. data/ext/gio2/gmount.c +283 -0
  54. data/ext/gio2/gmountoperation.c +168 -0
  55. data/ext/gio2/gnetworkaddress.c +71 -0
  56. data/ext/gio2/gnetworkservice.c +64 -0
  57. data/ext/gio2/goutputstream.c +343 -0
  58. data/ext/gio2/gresolver.c +230 -0
  59. data/ext/gio2/gseekable.c +89 -0
  60. data/ext/gio2/gsimpleasyncresult.c +153 -0
  61. data/ext/gio2/gsocket.c +451 -0
  62. data/ext/gio2/gsocketaddress.c +45 -0
  63. data/ext/gio2/gsocketclient.c +273 -0
  64. data/ext/gio2/gsocketconnectable.c +97 -0
  65. data/ext/gio2/gsocketconnection.c +82 -0
  66. data/ext/gio2/gsocketcontrolmessage.c +82 -0
  67. data/ext/gio2/gsocketlistener.c +239 -0
  68. data/ext/gio2/gsocketservice.c +64 -0
  69. data/ext/gio2/gsrvtarget.c +77 -0
  70. data/ext/gio2/gtcpconnection.c +48 -0
  71. data/ext/gio2/gthemedicon.c +86 -0
  72. data/ext/gio2/gthreadedsocketservice.c +39 -0
  73. data/ext/gio2/gunixconnection.c +69 -0
  74. data/ext/gio2/gunixfdlist.c +112 -0
  75. data/ext/gio2/gunixfdmessage.c +81 -0
  76. data/ext/gio2/gunixinputstream.c +73 -0
  77. data/ext/gio2/gunixmounts.c +346 -0
  78. data/ext/gio2/gunixoutputstream.c +73 -0
  79. data/ext/gio2/gunixsocketaddress.c +79 -0
  80. data/ext/gio2/gvfs.c +84 -0
  81. data/ext/gio2/gvolume.c +191 -0
  82. data/ext/gio2/gvolumemonitor.c +77 -0
  83. data/ext/gio2/gzlibcompressor.c +47 -0
  84. data/ext/gio2/gzlibdecompressor.c +43 -0
  85. data/ext/gio2/util.c +323 -0
  86. data/extconf.rb +49 -0
  87. data/lib/1.8/gio2.so +0 -0
  88. data/lib/1.9/gio2.so +0 -0
  89. data/lib/gio2.rb +141 -0
  90. data/vendor/local/bin/envsubst.exe +0 -0
  91. data/vendor/local/bin/gettext.exe +0 -0
  92. data/vendor/local/bin/gettext.sh +123 -0
  93. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  94. data/vendor/local/bin/glib-gettextize +188 -0
  95. data/vendor/local/bin/glib-mkenums +537 -0
  96. data/vendor/local/bin/gobject-query.exe +0 -0
  97. data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
  98. data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
  99. data/vendor/local/bin/intl.dll +0 -0
  100. data/vendor/local/bin/libasprintf-0.dll +0 -0
  101. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  102. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  103. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  105. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  106. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  107. data/vendor/local/bin/ngettext.exe +0 -0
  108. data/vendor/local/include/autosprintf.h +66 -0
  109. data/vendor/local/include/glib-2.0/gio/gappinfo.h +236 -0
  110. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
  111. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
  112. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
  113. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +81 -0
  114. data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
  115. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
  116. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
  117. data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
  118. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +79 -0
  119. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +79 -0
  120. data/vendor/local/include/glib-2.0/gio/gcredentials.h +76 -0
  121. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +150 -0
  122. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +115 -0
  123. data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +58 -0
  124. data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +46 -0
  125. data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +562 -0
  126. data/vendor/local/include/glib-2.0/gio/gdbuserror.h +100 -0
  127. data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +286 -0
  128. data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +149 -0
  129. data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +73 -0
  130. data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +112 -0
  131. data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +94 -0
  132. data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +167 -0
  133. data/vendor/local/include/glib-2.0/gio/gdbusserver.h +54 -0
  134. data/vendor/local/include/glib-2.0/gio/gdbusutils.h +44 -0
  135. data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
  136. data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
  137. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
  138. data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
  139. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
  140. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +132 -0
  141. data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
  142. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +952 -0
  143. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
  144. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
  145. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
  146. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
  147. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
  148. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
  149. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
  150. data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
  151. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
  152. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
  153. data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
  154. data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
  155. data/vendor/local/include/glib-2.0/gio/gio.h +122 -0
  156. data/vendor/local/include/glib-2.0/gio/gioenums.h +1221 -0
  157. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +121 -0
  158. data/vendor/local/include/glib-2.0/gio/gioerror.h +52 -0
  159. data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
  160. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
  161. data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
  162. data/vendor/local/include/glib-2.0/gio/giotypes.h +375 -0
  163. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
  164. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
  165. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +98 -0
  166. data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
  167. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
  168. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
  169. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +73 -0
  170. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +71 -0
  171. data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
  172. data/vendor/local/include/glib-2.0/gio/gpermission.h +118 -0
  173. data/vendor/local/include/glib-2.0/gio/gproxy.h +123 -0
  174. data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +76 -0
  175. data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +75 -0
  176. data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +96 -0
  177. data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
  178. data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
  179. data/vendor/local/include/glib-2.0/gio/gsettings.h +258 -0
  180. data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +138 -0
  181. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
  182. data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
  183. data/vendor/local/include/glib-2.0/gio/gsocket.h +194 -0
  184. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
  185. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
  186. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +152 -0
  187. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +74 -0
  188. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
  189. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
  190. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
  191. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
  192. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
  193. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
  194. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
  195. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  196. data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
  197. data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
  198. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +150 -0
  199. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +60 -0
  200. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +57 -0
  201. data/vendor/local/include/glib-2.0/glib-object.h +42 -0
  202. data/vendor/local/include/glib-2.0/glib.h +99 -0
  203. data/vendor/local/include/glib-2.0/glib/galloca.h +110 -0
  204. data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
  205. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
  206. data/vendor/local/include/glib-2.0/glib/gatomic.h +105 -0
  207. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
  208. data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
  209. data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
  210. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +215 -0
  211. data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
  212. data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
  213. data/vendor/local/include/glib-2.0/glib/gcompletion.h +81 -0
  214. data/vendor/local/include/glib-2.0/glib/gconvert.h +162 -0
  215. data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
  216. data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
  217. data/vendor/local/include/glib-2.0/glib/gdatetime.h +217 -0
  218. data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
  219. data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
  220. data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
  221. data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
  222. data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
  223. data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
  224. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
  225. data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
  226. data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
  227. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +266 -0
  228. data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
  229. data/vendor/local/include/glib-2.0/glib/gmacros.h +284 -0
  230. data/vendor/local/include/glib-2.0/glib/gmain.h +531 -0
  231. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
  232. data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
  233. data/vendor/local/include/glib-2.0/glib/gmem.h +309 -0
  234. data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
  235. data/vendor/local/include/glib-2.0/glib/gnode.h +290 -0
  236. data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
  237. data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
  238. data/vendor/local/include/glib-2.0/glib/gpoll.h +117 -0
  239. data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
  240. data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
  241. data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
  242. data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
  243. data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
  244. data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
  245. data/vendor/local/include/glib-2.0/glib/gregex.h +471 -0
  246. data/vendor/local/include/glib-2.0/glib/grel.h +101 -0
  247. data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
  248. data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
  249. data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
  250. data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
  251. data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
  252. data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
  253. data/vendor/local/include/glib-2.0/glib/gstdio.h +147 -0
  254. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +269 -0
  255. data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
  256. data/vendor/local/include/glib-2.0/glib/gtestutils.h +297 -0
  257. data/vendor/local/include/glib-2.0/glib/gthread.h +407 -0
  258. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
  259. data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
  260. data/vendor/local/include/glib-2.0/glib/gtimezone.h +44 -0
  261. data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
  262. data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
  263. data/vendor/local/include/glib-2.0/glib/gunicode.h +421 -0
  264. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
  265. data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
  266. data/vendor/local/include/glib-2.0/glib/gvariant.h +248 -0
  267. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +334 -0
  268. data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
  269. data/vendor/local/include/glib-2.0/gmodule.h +101 -0
  270. data/vendor/local/include/glib-2.0/gobject/gbinding.h +136 -0
  271. data/vendor/local/include/glib-2.0/gobject/gboxed.h +248 -0
  272. data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
  273. data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
  274. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +186 -0
  275. data/vendor/local/include/glib-2.0/gobject/gobject.h +567 -0
  276. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +193 -0
  277. data/vendor/local/include/glib-2.0/gobject/gparam.h +415 -0
  278. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1137 -0
  279. data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
  280. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
  281. data/vendor/local/include/glib-2.0/gobject/gtype.h +1736 -0
  282. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
  283. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  284. data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
  285. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
  286. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +227 -0
  287. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +260 -0
  288. data/vendor/local/include/libintl.h +464 -0
  289. data/vendor/local/lib/GNU.Gettext.dll +0 -0
  290. data/vendor/local/lib/gio-2.0.def +1143 -0
  291. data/vendor/local/lib/gio-2.0.lib +0 -0
  292. data/vendor/local/lib/glib-2.0.def +1452 -0
  293. data/vendor/local/lib/glib-2.0.lib +0 -0
  294. data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
  295. data/vendor/local/lib/gmodule-2.0.def +11 -0
  296. data/vendor/local/lib/gmodule-2.0.lib +0 -0
  297. data/vendor/local/lib/gobject-2.0.def +370 -0
  298. data/vendor/local/lib/gobject-2.0.lib +0 -0
  299. data/vendor/local/lib/gthread-2.0.def +3 -0
  300. data/vendor/local/lib/gthread-2.0.lib +0 -0
  301. data/vendor/local/lib/intl.lib +0 -0
  302. data/vendor/local/lib/libasprintf.dll.a +0 -0
  303. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  304. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  305. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  306. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  307. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  308. data/vendor/local/lib/libintl.def +31 -0
  309. data/vendor/local/lib/libintl.dll.a +0 -0
  310. data/vendor/local/lib/pkgconfig/gio-2.0.pc +15 -0
  311. data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
  312. data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
  313. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  314. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  315. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
  316. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  317. data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
  318. data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
  319. data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
  320. data/vendor/local/manifest/glib-dev_2.26.0-2_win32.mft +570 -0
  321. data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
  322. data/vendor/local/manifest/glib_2.26.0-2_win32.mft +102 -0
  323. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  324. data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
  325. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
  326. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
  327. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  328. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  329. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  330. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  331. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  332. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  333. data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
  334. data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
  335. data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
  336. data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
  337. data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
  338. data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
  339. data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
  340. data/vendor/local/share/doc/glib-2.26.0/COPYING +482 -0
  341. data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
  342. data/vendor/local/share/doc/glib-dev-2.26.0/COPYING +482 -0
  343. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  344. data/vendor/local/share/glib-2.0/gdb/glib.py +249 -0
  345. data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
  346. data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
  347. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +279 -0
  348. data/vendor/local/share/glib-2.0/schemas/gschema.dtd +60 -0
  349. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1403 -0
  350. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +733 -0
  351. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
  352. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +563 -0
  353. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +291 -0
  354. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
  355. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
  356. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +423 -0
  357. data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +398 -0
  358. data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +254 -0
  359. data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +6211 -0
  360. data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +1833 -0
  361. data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +618 -0
  362. data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2050 -0
  363. data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +1124 -0
  364. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1215 -0
  365. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +540 -0
  366. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
  367. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
  368. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
  369. data/vendor/local/share/gtk-doc/html/gio/GFile.html +7462 -0
  370. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +120 -0
  371. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +516 -0
  372. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
  373. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
  374. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3144 -0
  375. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
  376. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
  377. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
  378. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
  379. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +188 -0
  380. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +189 -0
  381. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
  382. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
  383. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
  384. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
  385. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +196 -0
  386. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
  387. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
  388. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
  389. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
  390. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +393 -0
  391. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
  392. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
  393. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +343 -0
  394. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +311 -0
  395. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1012 -0
  396. data/vendor/local/share/gtk-doc/html/gio/GPermission.html +560 -0
  397. data/vendor/local/share/gtk-doc/html/gio/GProxy.html +312 -0
  398. data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +348 -0
  399. data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +301 -0
  400. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
  401. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
  402. data/vendor/local/share/gtk-doc/html/gio/GSettings.html +2424 -0
  403. data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +609 -0
  404. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1193 -0
  405. data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +107 -0
  406. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2438 -0
  407. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
  408. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +1292 -0
  409. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +513 -0
  410. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +337 -0
  411. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +275 -0
  412. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +745 -0
  413. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
  414. data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +165 -0
  415. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
  416. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
  417. data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +298 -0
  418. data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +222 -0
  419. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +389 -0
  420. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +288 -0
  421. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
  422. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
  423. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +491 -0
  424. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
  425. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
  426. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +705 -0
  427. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +252 -0
  428. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +170 -0
  429. data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +65 -0
  430. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
  431. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
  432. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1084 -0
  433. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +223 -0
  434. data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1598 -0
  435. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +112 -0
  436. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +6250 -0
  437. data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
  438. data/vendor/local/share/gtk-doc/html/gio/ch01.html +207 -0
  439. data/vendor/local/share/gtk-doc/html/gio/ch02.html +50 -0
  440. data/vendor/local/share/gtk-doc/html/gio/ch03.html +180 -0
  441. data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
  442. data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
  443. data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
  444. data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
  445. data/vendor/local/share/gtk-doc/html/gio/ch24.html +75 -0
  446. data/vendor/local/share/gtk-doc/html/gio/ch25.html +217 -0
  447. data/vendor/local/share/gtk-doc/html/gio/ch25s02.html +41 -0
  448. data/vendor/local/share/gtk-doc/html/gio/ch25s03.html +39 -0
  449. data/vendor/local/share/gtk-doc/html/gio/ch26.html +57 -0
  450. data/vendor/local/share/gtk-doc/html/gio/ch26s02.html +59 -0
  451. data/vendor/local/share/gtk-doc/html/gio/ch26s03.html +159 -0
  452. data/vendor/local/share/gtk-doc/html/gio/ch26s04.html +46 -0
  453. data/vendor/local/share/gtk-doc/html/gio/ch26s05.html +48 -0
  454. data/vendor/local/share/gtk-doc/html/gio/ch26s06.html +277 -0
  455. data/vendor/local/share/gtk-doc/html/gio/ch26s07.html +95 -0
  456. data/vendor/local/share/gtk-doc/html/gio/ch27.html +70 -0
  457. data/vendor/local/share/gtk-doc/html/gio/ch27s02.html +130 -0
  458. data/vendor/local/share/gtk-doc/html/gio/ch27s03.html +202 -0
  459. data/vendor/local/share/gtk-doc/html/gio/ch27s04.html +96 -0
  460. data/vendor/local/share/gtk-doc/html/gio/ch27s05.html +823 -0
  461. data/vendor/local/share/gtk-doc/html/gio/ch27s06.html +828 -0
  462. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  463. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +109 -0
  464. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  465. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  466. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  467. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  468. data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +41 -0
  469. data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
  470. data/vendor/local/share/gtk-doc/html/gio/gdbus.html +243 -0
  471. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +316 -0
  472. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1117 -0
  473. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +216 -0
  474. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
  475. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +473 -0
  476. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +391 -0
  477. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +159 -0
  478. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +159 -0
  479. data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +908 -0
  480. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +933 -0
  481. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +409 -0
  482. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
  483. data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
  484. data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +736 -0
  485. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +909 -0
  486. data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +666 -0
  487. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +123 -0
  488. data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
  489. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1736 -0
  490. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2006 -0
  491. data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +102 -0
  492. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +53 -0
  494. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  495. data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
  496. data/vendor/local/share/gtk-doc/html/gio/index.html +435 -0
  497. data/vendor/local/share/gtk-doc/html/gio/index.sgml +2513 -0
  498. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  499. data/vendor/local/share/gtk-doc/html/gio/migrating.html +62 -0
  500. data/vendor/local/share/gtk-doc/html/gio/networking.html +69 -0
  501. data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
  502. data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
  503. data/vendor/local/share/gtk-doc/html/gio/pt02.html +390 -0
  504. data/vendor/local/share/gtk-doc/html/gio/resolver.html +50 -0
  505. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  506. data/vendor/local/share/gtk-doc/html/gio/settings.html +38 -0
  507. data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
  508. data/vendor/local/share/gtk-doc/html/gio/style.css +265 -0
  509. data/vendor/local/share/gtk-doc/html/gio/tools.html +44 -0
  510. data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
  511. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  512. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  513. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  514. data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +77 -0
  515. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
  516. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
  517. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +559 -0
  518. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
  519. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
  520. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
  521. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
  522. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
  523. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +420 -0
  524. data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +359 -0
  525. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +396 -0
  526. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +417 -0
  527. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
  528. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +419 -0
  529. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +8214 -0
  530. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
  532. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
  533. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +414 -0
  534. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +466 -0
  535. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
  536. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
  537. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
  538. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2056 -0
  539. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
  540. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
  541. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
  542. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1094 -0
  543. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1671 -0
  544. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
  545. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
  546. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2045 -0
  547. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
  548. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
  549. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
  550. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1026 -0
  551. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1852 -0
  552. data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2201 -0
  553. data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +239 -0
  554. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +4278 -0
  555. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1864 -0
  556. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
  557. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
  558. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
  559. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
  560. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +692 -0
  561. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
  562. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2740 -0
  563. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
  564. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
  565. data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
  566. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1033 -0
  567. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
  568. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
  569. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
  570. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +748 -0
  571. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1105 -0
  572. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1552 -0
  573. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1468 -0
  574. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +194 -0
  575. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2745 -0
  576. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
  577. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
  578. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
  579. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +532 -0
  580. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
  581. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
  582. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1282 -0
  583. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1213 -0
  584. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
  585. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +470 -0
  586. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
  587. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2960 -0
  588. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1291 -0
  589. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1805 -0
  590. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3478 -0
  591. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
  592. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
  593. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
  594. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
  595. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
  596. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +400 -0
  597. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3448 -0
  598. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +253 -0
  599. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
  600. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
  601. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +466 -0
  602. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
  603. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
  604. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
  605. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
  606. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
  607. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
  608. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
  609. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
  610. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
  611. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +319 -0
  612. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +118 -0
  613. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2183 -0
  614. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2671 -0
  615. data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
  616. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
  617. data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
  618. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1288 -0
  619. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  620. data/vendor/local/share/gtk-doc/html/glib/index.html +344 -0
  621. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2846 -0
  622. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  623. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  624. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  625. data/vendor/local/share/gtk-doc/html/glib/style.css +265 -0
  626. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  627. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  628. data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +803 -0
  629. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
  630. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
  631. data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +47 -0
  632. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
  633. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
  634. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
  635. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
  636. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
  637. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
  638. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +73 -0
  639. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +201 -0
  640. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
  641. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
  642. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
  643. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
  644. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2721 -0
  645. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  646. data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
  647. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
  648. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  649. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  650. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  651. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +361 -0
  652. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +307 -0
  653. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  654. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +417 -0
  655. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2412 -0
  656. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
  657. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1433 -0
  658. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
  659. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
  660. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5555 -0
  661. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2875 -0
  662. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4460 -0
  663. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +416 -0
  664. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +260 -0
  665. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  666. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
  667. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
  668. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +762 -0
  669. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +801 -0
  670. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
  671. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
  672. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
  673. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  674. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  675. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
  676. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
  677. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
  678. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
  679. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
  680. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
  681. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
  682. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
  683. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
  684. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  685. data/vendor/local/share/gtk-doc/html/gobject/index.html +192 -0
  686. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +786 -0
  687. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  688. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  689. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  690. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
  691. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  692. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  693. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
  694. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  695. data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
  696. data/vendor/local/share/gtk-doc/html/gobject/style.css +265 -0
  697. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  698. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  699. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  700. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
  701. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  702. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  703. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  704. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  705. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  706. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  707. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  708. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  709. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  710. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  711. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  712. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  713. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  714. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  715. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  716. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  717. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  718. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  719. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  720. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  721. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  722. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  723. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  724. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  725. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  726. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  727. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  728. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  729. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  730. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  731. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  732. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  733. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  734. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  735. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  736. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  737. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  738. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  739. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  740. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  741. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  742. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  743. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  744. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  745. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  746. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  747. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  748. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  749. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  750. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  751. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  752. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  753. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  754. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  755. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  756. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  757. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  758. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  759. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  760. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  761. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  762. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  763. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  764. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  765. data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
  766. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  767. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  768. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  769. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  770. data/vendor/local/share/locale/locale.alias +77 -0
  771. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  772. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  773. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  774. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  775. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  776. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  777. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  778. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  779. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  780. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  781. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  782. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  783. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  784. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  785. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  786. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  787. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  788. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  789. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  790. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  791. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  792. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  793. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  794. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  795. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  796. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  797. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  798. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  799. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  800. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  801. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  802. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  803. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  804. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  805. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  806. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  807. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  808. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  809. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  810. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  811. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  812. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  813. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  814. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  815. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  816. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  817. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  818. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  819. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  820. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  821. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  822. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  823. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  824. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  825. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  826. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  827. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  828. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  829. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  830. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  831. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  832. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  833. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  834. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  835. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  836. data/vendor/local/share/man/man1/gettext.1 +69 -0
  837. data/vendor/local/share/man/man1/glib-genmarshal.1 +312 -0
  838. data/vendor/local/share/man/man1/glib-mkenums.1 +246 -0
  839. data/vendor/local/share/man/man1/gobject-query.1 +83 -0
  840. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  841. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  842. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  843. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  844. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  845. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  846. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  847. data/vendor/local/share/man/man3/gettext.3 +99 -0
  848. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  849. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  850. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
  851. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
  852. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
  853. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
  854. data/vendor/local/src/tml/packaging/glib_2.26.0-2_win32.log +2867 -0
  855. data/vendor/local/src/tml/packaging/glib_2.26.0-2_win32.sh +64 -0
  856. metadata +952 -0
@@ -0,0 +1,223 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>Index of new symbols in 2.24</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
7
+ <link rel="home" href="index.html" title="GIO Reference Manual">
8
+ <link rel="up" href="index.html" title="GIO Reference Manual">
9
+ <link rel="prev" href="api-index-2-22.html" title="Index of new symbols in 2.22">
10
+ <link rel="next" href="api-index-2-26.html" title="Index of new symbols in 2.26">
11
+ <meta name="generator" content="GTK-Doc V1.15.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="api-index-2-22.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td> </td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GIO Reference Manual</th>
21
+ <td><a accesskey="n" href="api-index-2-26.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a class="shortcut" href="#idxA">A</a>
25
+  | 
26
+ <a class="shortcut" href="#idxC">C</a>
27
+  | 
28
+ <a class="shortcut" href="#idxD">D</a>
29
+  | 
30
+ <a class="shortcut" href="#idxF">F</a>
31
+  | 
32
+ <a class="shortcut" href="#idxI">I</a>
33
+  | 
34
+ <a class="shortcut" href="#idxM">M</a>
35
+  | 
36
+ <a class="shortcut" href="#idxO">O</a>
37
+  | 
38
+ <a class="shortcut" href="#idxS">S</a>
39
+  | 
40
+ <a class="shortcut" href="#idxU">U</a>
41
+  | 
42
+ <a class="shortcut" href="#idxZ">Z</a>
43
+ </td></tr>
44
+ </table>
45
+ <div class="index">
46
+ <div class="titlepage"><div><div><h2 class="title">
47
+ <a name="api-index-2-24"></a>Index of new symbols in 2.24</h2></div></div></div>
48
+ <a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
49
+ <dt>
50
+ <a class="link" href="GAppInfo.html#g-app-info-get-display-name" title="g_app_info_get_display_name ()">g_app_info_get_display_name</a>, function in <a class="link" href="GAppInfo.html" title="GAppInfo">GAppInfo</a>
51
+ </dt>
52
+ <dd></dd>
53
+ <a name="idxC"></a><h3 class="title">C</h3>
54
+ <dt>
55
+ <a class="link" href="GCharsetConverter.html#g-charset-converter-get-num-fallbacks" title="g_charset_converter_get_num_fallbacks ()">g_charset_converter_get_num_fallbacks</a>, function in <a class="link" href="GCharsetConverter.html" title="GCharsetConverter">GCharsetConverter</a>
56
+ </dt>
57
+ <dd></dd>
58
+ <dt>
59
+ <a class="link" href="GCharsetConverter.html#g-charset-converter-get-use-fallback" title="g_charset_converter_get_use_fallback ()">g_charset_converter_get_use_fallback</a>, function in <a class="link" href="GCharsetConverter.html" title="GCharsetConverter">GCharsetConverter</a>
60
+ </dt>
61
+ <dd></dd>
62
+ <dt>
63
+ <a class="link" href="GCharsetConverter.html#g-charset-converter-new" title="g_charset_converter_new ()">g_charset_converter_new</a>, function in <a class="link" href="GCharsetConverter.html" title="GCharsetConverter">GCharsetConverter</a>
64
+ </dt>
65
+ <dd></dd>
66
+ <dt>
67
+ <a class="link" href="GCharsetConverter.html#g-charset-converter-set-use-fallback" title="g_charset_converter_set_use_fallback ()">g_charset_converter_set_use_fallback</a>, function in <a class="link" href="GCharsetConverter.html" title="GCharsetConverter">GCharsetConverter</a>
68
+ </dt>
69
+ <dd></dd>
70
+ <dt>
71
+ <a class="link" href="GConverter.html#GConverter-struct" title="GConverter">GConverter</a>, struct in <a class="link" href="GConverter.html" title="GConverter">GConverter</a>
72
+ </dt>
73
+ <dd></dd>
74
+ <dt>
75
+ <a class="link" href="GConverter.html#GConverterFlags" title="enum GConverterFlags">GConverterFlags</a>, enum in <a class="link" href="GConverter.html" title="GConverter">GConverter</a>
76
+ </dt>
77
+ <dd></dd>
78
+ <dt>
79
+ <a class="link" href="GConverter.html#GConverterIface" title="GConverterIface">GConverterIface</a>, struct in <a class="link" href="GConverter.html" title="GConverter">GConverter</a>
80
+ </dt>
81
+ <dd></dd>
82
+ <dt>
83
+ <a class="link" href="GConverter.html#GConverterResult" title="enum GConverterResult">GConverterResult</a>, enum in <a class="link" href="GConverter.html" title="GConverter">GConverter</a>
84
+ </dt>
85
+ <dd></dd>
86
+ <dt>
87
+ <a class="link" href="GConverter.html#g-converter-convert" title="g_converter_convert ()">g_converter_convert</a>, function in <a class="link" href="GConverter.html" title="GConverter">GConverter</a>
88
+ </dt>
89
+ <dd></dd>
90
+ <dt>
91
+ <a class="link" href="gio-GConverterInputstream.html#g-converter-input-stream-get-converter" title="g_converter_input_stream_get_converter ()">g_converter_input_stream_get_converter</a>, function in <a class="link" href="gio-GConverterInputstream.html" title="GConverterInputstream">GConverterInputstream</a>
92
+ </dt>
93
+ <dd></dd>
94
+ <dt>
95
+ <a class="link" href="gio-GConverterOutputstream.html#g-converter-output-stream-get-converter" title="g_converter_output_stream_get_converter ()">g_converter_output_stream_get_converter</a>, function in <a class="link" href="gio-GConverterOutputstream.html" title="GConverterOutputstream">GConverterOutputstream</a>
96
+ </dt>
97
+ <dd></dd>
98
+ <dt>
99
+ <a class="link" href="GConverter.html#g-converter-reset" title="g_converter_reset ()">g_converter_reset</a>, function in <a class="link" href="GConverter.html" title="GConverter">GConverter</a>
100
+ </dt>
101
+ <dd></dd>
102
+ <a name="idxD"></a><h3 class="title">D</h3>
103
+ <dt>
104
+ <a class="link" href="GDataInputStream.html#g-data-input-stream-read-upto" title="g_data_input_stream_read_upto ()">g_data_input_stream_read_upto</a>, function in <a class="link" href="GDataInputStream.html" title="GDataInputStream">GDataInputStream</a>
105
+ </dt>
106
+ <dd></dd>
107
+ <dt>
108
+ <a class="link" href="GDataInputStream.html#g-data-input-stream-read-upto-async" title="g_data_input_stream_read_upto_async ()">g_data_input_stream_read_upto_async</a>, function in <a class="link" href="GDataInputStream.html" title="GDataInputStream">GDataInputStream</a>
109
+ </dt>
110
+ <dd></dd>
111
+ <dt>
112
+ <a class="link" href="GDataInputStream.html#g-data-input-stream-read-upto-finish" title="g_data_input_stream_read_upto_finish ()">g_data_input_stream_read_upto_finish</a>, function in <a class="link" href="GDataInputStream.html" title="GDataInputStream">GDataInputStream</a>
113
+ </dt>
114
+ <dd></dd>
115
+ <dt>
116
+ <a class="link" href="gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-get-filename" title="g_desktop_app_info_get_filename ()">g_desktop_app_info_get_filename</a>, function in <a class="link" href="gio-Desktop-file-based-GAppInfo.html" title="Desktop file based GAppInfo">Desktop file based GAppInfo</a>
117
+ </dt>
118
+ <dd></dd>
119
+ <a name="idxF"></a><h3 class="title">F</h3>
120
+ <dt>
121
+ <a class="link" href="GFileDescriptorBased.html#g-file-descriptor-based-get-fd" title="g_file_descriptor_based_get_fd ()">g_file_descriptor_based_get_fd</a>, function in <a class="link" href="GFileDescriptorBased.html" title="GFileDescriptorBased">GFileDescriptorBased</a>
122
+ </dt>
123
+ <dd></dd>
124
+ <dt>
125
+ <a class="link" href="GFile.html#g-file-has-parent" title="g_file_has_parent ()">g_file_has_parent</a>, function in <a class="link" href="GFile.html" title="GFile">GFile</a>
126
+ </dt>
127
+ <dd></dd>
128
+ <a name="idxI"></a><h3 class="title">I</h3>
129
+ <dt>
130
+ <a class="link" href="GIOModule.html#g-io-modules-scan-all-in-directory" title="g_io_modules_scan_all_in_directory ()">g_io_modules_scan_all_in_directory</a>, function in <a class="link" href="GIOModule.html" title="GIOModule">GIOModule</a>
131
+ </dt>
132
+ <dd></dd>
133
+ <dt>
134
+ <a class="link" href="GIOModule.html#g-io-module-query" title="g_io_module_query ()">g_io_module_query</a>, function in <a class="link" href="GIOModule.html" title="GIOModule">GIOModule</a>
135
+ </dt>
136
+ <dd></dd>
137
+ <a name="idxM"></a><h3 class="title">M</h3>
138
+ <dt>
139
+ <a class="link" href="GMemoryOutputStream.html#GMemoryOutputStream--data" title='The "data" property'>GMemoryOutputStream:data</a>, object property in <a class="link" href="GMemoryOutputStream.html" title="GMemoryOutputStream">GMemoryOutputStream</a>
140
+ </dt>
141
+ <dd></dd>
142
+ <dt>
143
+ <a class="link" href="GMemoryOutputStream.html#GMemoryOutputStream--data-size" title='The "data-size" property'>GMemoryOutputStream:data-size</a>, object property in <a class="link" href="GMemoryOutputStream.html" title="GMemoryOutputStream">GMemoryOutputStream</a>
144
+ </dt>
145
+ <dd></dd>
146
+ <dt>
147
+ <a class="link" href="GMemoryOutputStream.html#GMemoryOutputStream--destroy-function" title='The "destroy-function" property'>GMemoryOutputStream:destroy-function</a>, object property in <a class="link" href="GMemoryOutputStream.html" title="GMemoryOutputStream">GMemoryOutputStream</a>
148
+ </dt>
149
+ <dd></dd>
150
+ <dt>
151
+ <a class="link" href="GMemoryOutputStream.html#GMemoryOutputStream--realloc-function" title='The "realloc-function" property'>GMemoryOutputStream:realloc-function</a>, object property in <a class="link" href="GMemoryOutputStream.html" title="GMemoryOutputStream">GMemoryOutputStream</a>
152
+ </dt>
153
+ <dd></dd>
154
+ <dt>
155
+ <a class="link" href="GMemoryOutputStream.html#GMemoryOutputStream--size" title='The "size" property'>GMemoryOutputStream:size</a>, object property in <a class="link" href="GMemoryOutputStream.html" title="GMemoryOutputStream">GMemoryOutputStream</a>
156
+ </dt>
157
+ <dd></dd>
158
+ <a name="idxO"></a><h3 class="title">O</h3>
159
+ <dt>
160
+ <a class="link" href="GOutputStream.html#g-output-stream-is-closing" title="g_output_stream_is_closing ()">g_output_stream_is_closing</a>, function in <a class="link" href="GOutputStream.html" title="GOutputStream">GOutputStream</a>
161
+ </dt>
162
+ <dd></dd>
163
+ <a name="idxS"></a><h3 class="title">S</h3>
164
+ <dt>
165
+ <a class="link" href="GSocketListener.html#g-socket-listener-add-any-inet-port" title="g_socket_listener_add_any_inet_port ()">g_socket_listener_add_any_inet_port</a>, function in <a class="link" href="GSocketListener.html" title="GSocketListener">GSocketListener</a>
166
+ </dt>
167
+ <dd></dd>
168
+ <a name="idxU"></a><h3 class="title">U</h3>
169
+ <dt>
170
+ <a class="link" href="GUnixFDList.html#g-unix-fd-list-append" title="g_unix_fd_list_append ()">g_unix_fd_list_append</a>, function in <a class="link" href="GUnixFDList.html" title="GUnixFDList">GUnixFDList</a>
171
+ </dt>
172
+ <dd></dd>
173
+ <dt>
174
+ <a class="link" href="GUnixFDList.html#g-unix-fd-list-get" title="g_unix_fd_list_get ()">g_unix_fd_list_get</a>, function in <a class="link" href="GUnixFDList.html" title="GUnixFDList">GUnixFDList</a>
175
+ </dt>
176
+ <dd></dd>
177
+ <dt>
178
+ <a class="link" href="GUnixFDList.html#g-unix-fd-list-get-length" title="g_unix_fd_list_get_length ()">g_unix_fd_list_get_length</a>, function in <a class="link" href="GUnixFDList.html" title="GUnixFDList">GUnixFDList</a>
179
+ </dt>
180
+ <dd></dd>
181
+ <dt>
182
+ <a class="link" href="GUnixFDList.html#g-unix-fd-list-new" title="g_unix_fd_list_new ()">g_unix_fd_list_new</a>, function in <a class="link" href="GUnixFDList.html" title="GUnixFDList">GUnixFDList</a>
183
+ </dt>
184
+ <dd></dd>
185
+ <dt>
186
+ <a class="link" href="GUnixFDList.html#g-unix-fd-list-new-from-array" title="g_unix_fd_list_new_from_array ()">g_unix_fd_list_new_from_array</a>, function in <a class="link" href="GUnixFDList.html" title="GUnixFDList">GUnixFDList</a>
187
+ </dt>
188
+ <dd></dd>
189
+ <dt>
190
+ <a class="link" href="GUnixFDList.html#g-unix-fd-list-peek-fds" title="g_unix_fd_list_peek_fds ()">g_unix_fd_list_peek_fds</a>, function in <a class="link" href="GUnixFDList.html" title="GUnixFDList">GUnixFDList</a>
191
+ </dt>
192
+ <dd></dd>
193
+ <dt>
194
+ <a class="link" href="GUnixFDList.html#g-unix-fd-list-steal-fds" title="g_unix_fd_list_steal_fds ()">g_unix_fd_list_steal_fds</a>, function in <a class="link" href="GUnixFDList.html" title="GUnixFDList">GUnixFDList</a>
195
+ </dt>
196
+ <dd></dd>
197
+ <dt>
198
+ <a class="link" href="GUnixFDMessage.html#g-unix-fd-message-get-fd-list" title="g_unix_fd_message_get_fd_list ()">g_unix_fd_message_get_fd_list</a>, function in <a class="link" href="GUnixFDMessage.html" title="GUnixFDMessage">GUnixFDMessage</a>
199
+ </dt>
200
+ <dd></dd>
201
+ <dt>
202
+ <a class="link" href="GUnixFDMessage.html#g-unix-fd-message-new-with-fd-list" title="g_unix_fd_message_new_with_fd_list ()">g_unix_fd_message_new_with_fd_list</a>, function in <a class="link" href="GUnixFDMessage.html" title="GUnixFDMessage">GUnixFDMessage</a>
203
+ </dt>
204
+ <dd></dd>
205
+ <a name="idxZ"></a><h3 class="title">Z</h3>
206
+ <dt>
207
+ <a class="link" href="GZlibCompressor.html#GZlibCompressorFormat" title="enum GZlibCompressorFormat">GZlibCompressorFormat</a>, enum in <a class="link" href="GZlibCompressor.html" title="GZlibCompressor">GZlibCompressor</a>
208
+ </dt>
209
+ <dd></dd>
210
+ <dt>
211
+ <a class="link" href="GZlibCompressor.html#g-zlib-compressor-new" title="g_zlib_compressor_new ()">g_zlib_compressor_new</a>, function in <a class="link" href="GZlibCompressor.html" title="GZlibCompressor">GZlibCompressor</a>
212
+ </dt>
213
+ <dd></dd>
214
+ <dt>
215
+ <a class="link" href="GZlibDecompressor.html#g-zlib-decompressor-new" title="g_zlib_decompressor_new ()">g_zlib_decompressor_new</a>, function in <a class="link" href="GZlibDecompressor.html" title="GZlibDecompressor">GZlibDecompressor</a>
216
+ </dt>
217
+ <dd></dd>
218
+ </div>
219
+ <div class="footer">
220
+ <hr>
221
+ Generated by GTK-Doc V1.15.1</div>
222
+ </body>
223
+ </html>
@@ -0,0 +1,1598 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>Index of new symbols in 2.26</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
7
+ <link rel="home" href="index.html" title="GIO Reference Manual">
8
+ <link rel="up" href="index.html" title="GIO Reference Manual">
9
+ <link rel="prev" href="api-index-2-24.html" title="Index of new symbols in 2.24">
10
+ <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
11
+ <meta name="generator" content="GTK-Doc V1.15.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="api-index-2-24.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td> </td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GIO Reference Manual</th>
21
+ <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a class="shortcut" href="#idxB">B</a>
25
+  | 
26
+ <a class="shortcut" href="#idxC">C</a>
27
+  | 
28
+ <a class="shortcut" href="#idxD">D</a>
29
+  | 
30
+ <a class="shortcut" href="#idxI">I</a>
31
+  | 
32
+ <a class="shortcut" href="#idxM">M</a>
33
+  | 
34
+ <a class="shortcut" href="#idxN">N</a>
35
+  | 
36
+ <a class="shortcut" href="#idxP">P</a>
37
+  | 
38
+ <a class="shortcut" href="#idxS">S</a>
39
+  | 
40
+ <a class="shortcut" href="#idxT">T</a>
41
+  | 
42
+ <a class="shortcut" href="#idxU">U</a>
43
+  | 
44
+ <a class="shortcut" href="#idxZ">Z</a>
45
+ </td></tr>
46
+ </table>
47
+ <div class="index">
48
+ <div class="titlepage"><div><div><h2 class="title">
49
+ <a name="api-index-2-26"></a>Index of new symbols in 2.26</h2></div></div></div>
50
+ <a name="idx"></a><a name="idxB"></a><h3 class="title">B</h3>
51
+ <dt>
52
+ <a class="link" href="gio-Owning-Bus-Names.html#GBusAcquiredCallback" title="GBusAcquiredCallback ()">GBusAcquiredCallback</a>, user_function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
53
+ </dt>
54
+ <dd></dd>
55
+ <dt>
56
+ <a class="link" href="gio-Owning-Bus-Names.html#GBusNameAcquiredCallback" title="GBusNameAcquiredCallback ()">GBusNameAcquiredCallback</a>, user_function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
57
+ </dt>
58
+ <dd></dd>
59
+ <dt>
60
+ <a class="link" href="gio-Watching-Bus-Names.html#GBusNameAppearedCallback" title="GBusNameAppearedCallback ()">GBusNameAppearedCallback</a>, user_function in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
61
+ </dt>
62
+ <dd></dd>
63
+ <dt>
64
+ <a class="link" href="gio-Owning-Bus-Names.html#GBusNameLostCallback" title="GBusNameLostCallback ()">GBusNameLostCallback</a>, user_function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
65
+ </dt>
66
+ <dd></dd>
67
+ <dt>
68
+ <a class="link" href="gio-Owning-Bus-Names.html#GBusNameOwnerFlags" title="enum GBusNameOwnerFlags">GBusNameOwnerFlags</a>, enum in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
69
+ </dt>
70
+ <dd></dd>
71
+ <dt>
72
+ <a class="link" href="gio-Watching-Bus-Names.html#GBusNameVanishedCallback" title="GBusNameVanishedCallback ()">GBusNameVanishedCallback</a>, user_function in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
73
+ </dt>
74
+ <dd></dd>
75
+ <dt>
76
+ <a class="link" href="gio-Watching-Bus-Names.html#GBusNameWatcherFlags" title="enum GBusNameWatcherFlags">GBusNameWatcherFlags</a>, enum in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
77
+ </dt>
78
+ <dd></dd>
79
+ <dt>
80
+ <a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType">GBusType</a>, enum in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
81
+ </dt>
82
+ <dd></dd>
83
+ <dt>
84
+ <a class="link" href="GDBusConnection.html#g-bus-get" title="g_bus_get ()">g_bus_get</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
85
+ </dt>
86
+ <dd></dd>
87
+ <dt>
88
+ <a class="link" href="GDBusConnection.html#g-bus-get-finish" title="g_bus_get_finish ()">g_bus_get_finish</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
89
+ </dt>
90
+ <dd></dd>
91
+ <dt>
92
+ <a class="link" href="GDBusConnection.html#g-bus-get-sync" title="g_bus_get_sync ()">g_bus_get_sync</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
93
+ </dt>
94
+ <dd></dd>
95
+ <dt>
96
+ <a class="link" href="gio-Owning-Bus-Names.html#g-bus-own-name" title="g_bus_own_name ()">g_bus_own_name</a>, function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
97
+ </dt>
98
+ <dd></dd>
99
+ <dt>
100
+ <a class="link" href="gio-Owning-Bus-Names.html#g-bus-own-name-on-connection" title="g_bus_own_name_on_connection ()">g_bus_own_name_on_connection</a>, function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
101
+ </dt>
102
+ <dd></dd>
103
+ <dt>
104
+ <a class="link" href="gio-Owning-Bus-Names.html#g-bus-own-name-on-connection-with-closures" title="g_bus_own_name_on_connection_with_closures ()">g_bus_own_name_on_connection_with_closures</a>, function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
105
+ </dt>
106
+ <dd></dd>
107
+ <dt>
108
+ <a class="link" href="gio-Owning-Bus-Names.html#g-bus-own-name-with-closures" title="g_bus_own_name_with_closures ()">g_bus_own_name_with_closures</a>, function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
109
+ </dt>
110
+ <dd></dd>
111
+ <dt>
112
+ <a class="link" href="gio-Owning-Bus-Names.html#g-bus-unown-name" title="g_bus_unown_name ()">g_bus_unown_name</a>, function in <a class="link" href="gio-Owning-Bus-Names.html" title="Owning Bus Names">Owning Bus Names</a>
113
+ </dt>
114
+ <dd></dd>
115
+ <dt>
116
+ <a class="link" href="gio-Watching-Bus-Names.html#g-bus-unwatch-name" title="g_bus_unwatch_name ()">g_bus_unwatch_name</a>, function in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
117
+ </dt>
118
+ <dd></dd>
119
+ <dt>
120
+ <a class="link" href="gio-Watching-Bus-Names.html#g-bus-watch-name" title="g_bus_watch_name ()">g_bus_watch_name</a>, function in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
121
+ </dt>
122
+ <dd></dd>
123
+ <dt>
124
+ <a class="link" href="gio-Watching-Bus-Names.html#g-bus-watch-name-on-connection" title="g_bus_watch_name_on_connection ()">g_bus_watch_name_on_connection</a>, function in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
125
+ </dt>
126
+ <dd></dd>
127
+ <dt>
128
+ <a class="link" href="gio-Watching-Bus-Names.html#g-bus-watch-name-on-connection-with-closures" title="g_bus_watch_name_on_connection_with_closures ()">g_bus_watch_name_on_connection_with_closures</a>, function in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
129
+ </dt>
130
+ <dd></dd>
131
+ <dt>
132
+ <a class="link" href="gio-Watching-Bus-Names.html#g-bus-watch-name-with-closures" title="g_bus_watch_name_with_closures ()">g_bus_watch_name_with_closures</a>, function in <a class="link" href="gio-Watching-Bus-Names.html" title="Watching Bus Names">Watching Bus Names</a>
133
+ </dt>
134
+ <dd></dd>
135
+ <a name="idxC"></a><h3 class="title">C</h3>
136
+ <dt>
137
+ <a class="link" href="GCredentials.html#GCredentials-struct" title="GCredentials">GCredentials</a>, struct in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
138
+ </dt>
139
+ <dd></dd>
140
+ <dt>
141
+ <a class="link" href="GCredentials.html#GCredentialsType" title="enum GCredentialsType">GCredentialsType</a>, enum in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
142
+ </dt>
143
+ <dd></dd>
144
+ <dt>
145
+ <a class="link" href="GCredentials.html#g-credentials-get-native" title="g_credentials_get_native ()">g_credentials_get_native</a>, function in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
146
+ </dt>
147
+ <dd></dd>
148
+ <dt>
149
+ <a class="link" href="GCredentials.html#g-credentials-get-unix-user" title="g_credentials_get_unix_user ()">g_credentials_get_unix_user</a>, function in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
150
+ </dt>
151
+ <dd></dd>
152
+ <dt>
153
+ <a class="link" href="GCredentials.html#g-credentials-is-same-user" title="g_credentials_is_same_user ()">g_credentials_is_same_user</a>, function in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
154
+ </dt>
155
+ <dd></dd>
156
+ <dt>
157
+ <a class="link" href="GCredentials.html#g-credentials-new" title="g_credentials_new ()">g_credentials_new</a>, function in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
158
+ </dt>
159
+ <dd></dd>
160
+ <dt>
161
+ <a class="link" href="GCredentials.html#g-credentials-set-native" title="g_credentials_set_native ()">g_credentials_set_native</a>, function in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
162
+ </dt>
163
+ <dd></dd>
164
+ <dt>
165
+ <a class="link" href="GCredentials.html#g-credentials-set-unix-user" title="g_credentials_set_unix_user ()">g_credentials_set_unix_user</a>, function in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
166
+ </dt>
167
+ <dd></dd>
168
+ <dt>
169
+ <a class="link" href="GCredentials.html#g-credentials-to-string" title="g_credentials_to_string ()">g_credentials_to_string</a>, function in <a class="link" href="GCredentials.html" title="GCredentials">GCredentials</a>
170
+ </dt>
171
+ <dd></dd>
172
+ <a name="idxD"></a><h3 class="title">D</h3>
173
+ <dt>
174
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusAnnotationInfo" title="GDBusAnnotationInfo">GDBusAnnotationInfo</a>, struct in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
175
+ </dt>
176
+ <dd></dd>
177
+ <dt>
178
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusArgInfo" title="GDBusArgInfo">GDBusArgInfo</a>, struct in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
179
+ </dt>
180
+ <dd></dd>
181
+ <dt>
182
+ <a class="link" href="GDBusAuthObserver.html#GDBusAuthObserver-struct" title="GDBusAuthObserver">GDBusAuthObserver</a>, struct in <a class="link" href="GDBusAuthObserver.html" title="GDBusAuthObserver">GDBusAuthObserver</a>
183
+ </dt>
184
+ <dd></dd>
185
+ <dt>
186
+ <a class="link" href="GDBusAuthObserver.html#GDBusAuthObserver-authorize-authenticated-peer" title='The "authorize-authenticated-peer" signal'>GDBusAuthObserver::authorize-authenticated-peer</a>, object signal in <a class="link" href="GDBusAuthObserver.html" title="GDBusAuthObserver">GDBusAuthObserver</a>
187
+ </dt>
188
+ <dd></dd>
189
+ <dt>
190
+ <a class="link" href="GDBusConnection.html#GDBusCallFlags" title="enum GDBusCallFlags">GDBusCallFlags</a>, enum in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
191
+ </dt>
192
+ <dd></dd>
193
+ <dt>
194
+ <a class="link" href="GDBusConnection.html#GDBusCapabilityFlags" title="enum GDBusCapabilityFlags">GDBusCapabilityFlags</a>, enum in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
195
+ </dt>
196
+ <dd></dd>
197
+ <dt>
198
+ <a class="link" href="GDBusConnection.html#GDBusConnection-struct" title="GDBusConnection">GDBusConnection</a>, struct in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
199
+ </dt>
200
+ <dd></dd>
201
+ <dt>
202
+ <a class="link" href="GDBusConnection.html#GDBusConnection-closed" title='The "closed" signal'>GDBusConnection::closed</a>, object signal in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
203
+ </dt>
204
+ <dd></dd>
205
+ <dt>
206
+ <a class="link" href="GDBusConnection.html#GDBusConnection--address" title='The "address" property'>GDBusConnection:address</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
207
+ </dt>
208
+ <dd></dd>
209
+ <dt>
210
+ <a class="link" href="GDBusConnection.html#GDBusConnection--authentication-observer" title='The "authentication-observer" property'>GDBusConnection:authentication-observer</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
211
+ </dt>
212
+ <dd></dd>
213
+ <dt>
214
+ <a class="link" href="GDBusConnection.html#GDBusConnection--capabilities" title='The "capabilities" property'>GDBusConnection:capabilities</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
215
+ </dt>
216
+ <dd></dd>
217
+ <dt>
218
+ <a class="link" href="GDBusConnection.html#GDBusConnection--closed" title='The "closed" property'>GDBusConnection:closed</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
219
+ </dt>
220
+ <dd></dd>
221
+ <dt>
222
+ <a class="link" href="GDBusConnection.html#GDBusConnection--exit-on-close" title='The "exit-on-close" property'>GDBusConnection:exit-on-close</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
223
+ </dt>
224
+ <dd></dd>
225
+ <dt>
226
+ <a class="link" href="GDBusConnection.html#GDBusConnection--flags" title='The "flags" property'>GDBusConnection:flags</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
227
+ </dt>
228
+ <dd></dd>
229
+ <dt>
230
+ <a class="link" href="GDBusConnection.html#GDBusConnection--guid" title='The "guid" property'>GDBusConnection:guid</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
231
+ </dt>
232
+ <dd></dd>
233
+ <dt>
234
+ <a class="link" href="GDBusConnection.html#GDBusConnection--stream" title='The "stream" property'>GDBusConnection:stream</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
235
+ </dt>
236
+ <dd></dd>
237
+ <dt>
238
+ <a class="link" href="GDBusConnection.html#GDBusConnection--unique-name" title='The "unique-name" property'>GDBusConnection:unique-name</a>, object property in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
239
+ </dt>
240
+ <dd></dd>
241
+ <dt>
242
+ <a class="link" href="GDBusConnection.html#GDBusConnectionFlags" title="enum GDBusConnectionFlags">GDBusConnectionFlags</a>, enum in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
243
+ </dt>
244
+ <dd></dd>
245
+ <dt>
246
+ <a class="link" href="gio-GDBusError.html#GDBusError" title="enum GDBusError">GDBusError</a>, enum in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
247
+ </dt>
248
+ <dd></dd>
249
+ <dt>
250
+ <a class="link" href="gio-GDBusError.html#GDBusErrorEntry" title="GDBusErrorEntry">GDBusErrorEntry</a>, struct in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
251
+ </dt>
252
+ <dd></dd>
253
+ <dt>
254
+ <a class="link" href="GDBusConnection.html#GDBusInterfaceGetPropertyFunc" title="GDBusInterfaceGetPropertyFunc ()">GDBusInterfaceGetPropertyFunc</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
255
+ </dt>
256
+ <dd></dd>
257
+ <dt>
258
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusInterfaceInfo" title="GDBusInterfaceInfo">GDBusInterfaceInfo</a>, struct in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
259
+ </dt>
260
+ <dd></dd>
261
+ <dt>
262
+ <a class="link" href="GDBusConnection.html#GDBusInterfaceMethodCallFunc" title="GDBusInterfaceMethodCallFunc ()">GDBusInterfaceMethodCallFunc</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
263
+ </dt>
264
+ <dd></dd>
265
+ <dt>
266
+ <a class="link" href="GDBusConnection.html#GDBusInterfaceSetPropertyFunc" title="GDBusInterfaceSetPropertyFunc ()">GDBusInterfaceSetPropertyFunc</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
267
+ </dt>
268
+ <dd></dd>
269
+ <dt>
270
+ <a class="link" href="GDBusConnection.html#GDBusInterfaceVTable" title="GDBusInterfaceVTable">GDBusInterfaceVTable</a>, struct in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
271
+ </dt>
272
+ <dd></dd>
273
+ <dt>
274
+ <a class="link" href="GDBusMessage.html#GDBusMessage-struct" title="GDBusMessage">GDBusMessage</a>, struct in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
275
+ </dt>
276
+ <dd></dd>
277
+ <dt>
278
+ <a class="link" href="GDBusMessage.html#GDBusMessageByteOrder" title="enum GDBusMessageByteOrder">GDBusMessageByteOrder</a>, enum in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
279
+ </dt>
280
+ <dd></dd>
281
+ <dt>
282
+ <a class="link" href="GDBusConnection.html#GDBusMessageFilterFunction" title="GDBusMessageFilterFunction ()">GDBusMessageFilterFunction</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
283
+ </dt>
284
+ <dd></dd>
285
+ <dt>
286
+ <a class="link" href="GDBusMessage.html#GDBusMessageFlags" title="enum GDBusMessageFlags">GDBusMessageFlags</a>, enum in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
287
+ </dt>
288
+ <dd></dd>
289
+ <dt>
290
+ <a class="link" href="GDBusMessage.html#GDBusMessageHeaderField" title="enum GDBusMessageHeaderField">GDBusMessageHeaderField</a>, enum in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
291
+ </dt>
292
+ <dd></dd>
293
+ <dt>
294
+ <a class="link" href="GDBusMessage.html#GDBusMessageType" title="enum GDBusMessageType">GDBusMessageType</a>, enum in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
295
+ </dt>
296
+ <dd></dd>
297
+ <dt>
298
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusMethodInfo" title="GDBusMethodInfo">GDBusMethodInfo</a>, struct in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
299
+ </dt>
300
+ <dd></dd>
301
+ <dt>
302
+ <a class="link" href="GDBusMethodInvocation.html#GDBusMethodInvocation-struct" title="GDBusMethodInvocation">GDBusMethodInvocation</a>, struct in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
303
+ </dt>
304
+ <dd></dd>
305
+ <dt>
306
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusNodeInfo" title="GDBusNodeInfo">GDBusNodeInfo</a>, struct in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
307
+ </dt>
308
+ <dd></dd>
309
+ <dt>
310
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusPropertyInfo" title="GDBusPropertyInfo">GDBusPropertyInfo</a>, struct in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
311
+ </dt>
312
+ <dd></dd>
313
+ <dt>
314
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusPropertyInfoFlags" title="enum GDBusPropertyInfoFlags">GDBusPropertyInfoFlags</a>, enum in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
315
+ </dt>
316
+ <dd></dd>
317
+ <dt>
318
+ <a class="link" href="GDBusProxy.html#GDBusProxy-struct" title="GDBusProxy">GDBusProxy</a>, struct in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
319
+ </dt>
320
+ <dd></dd>
321
+ <dt>
322
+ <a class="link" href="GDBusProxy.html#GDBusProxy-g-properties-changed" title='The "g-properties-changed" signal'>GDBusProxy::g-properties-changed</a>, object signal in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
323
+ </dt>
324
+ <dd></dd>
325
+ <dt>
326
+ <a class="link" href="GDBusProxy.html#GDBusProxy-g-signal" title='The "g-signal" signal'>GDBusProxy::g-signal</a>, object signal in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
327
+ </dt>
328
+ <dd></dd>
329
+ <dt>
330
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-bus-type" title='The "g-bus-type" property'>GDBusProxy:g-bus-type</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
331
+ </dt>
332
+ <dd></dd>
333
+ <dt>
334
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-connection" title='The "g-connection" property'>GDBusProxy:g-connection</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
335
+ </dt>
336
+ <dd></dd>
337
+ <dt>
338
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-default-timeout" title='The "g-default-timeout" property'>GDBusProxy:g-default-timeout</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
339
+ </dt>
340
+ <dd></dd>
341
+ <dt>
342
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-flags" title='The "g-flags" property'>GDBusProxy:g-flags</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
343
+ </dt>
344
+ <dd></dd>
345
+ <dt>
346
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-interface-info" title='The "g-interface-info" property'>GDBusProxy:g-interface-info</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
347
+ </dt>
348
+ <dd></dd>
349
+ <dt>
350
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-interface-name" title='The "g-interface-name" property'>GDBusProxy:g-interface-name</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
351
+ </dt>
352
+ <dd></dd>
353
+ <dt>
354
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-name" title='The "g-name" property'>GDBusProxy:g-name</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
355
+ </dt>
356
+ <dd></dd>
357
+ <dt>
358
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-name-owner" title='The "g-name-owner" property'>GDBusProxy:g-name-owner</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
359
+ </dt>
360
+ <dd></dd>
361
+ <dt>
362
+ <a class="link" href="GDBusProxy.html#GDBusProxy--g-object-path" title='The "g-object-path" property'>GDBusProxy:g-object-path</a>, object property in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
363
+ </dt>
364
+ <dd></dd>
365
+ <dt>
366
+ <a class="link" href="GDBusProxy.html#GDBusProxyClass" title="GDBusProxyClass">GDBusProxyClass</a>, struct in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
367
+ </dt>
368
+ <dd></dd>
369
+ <dt>
370
+ <a class="link" href="GDBusProxy.html#GDBusProxyFlags" title="enum GDBusProxyFlags">GDBusProxyFlags</a>, enum in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
371
+ </dt>
372
+ <dd></dd>
373
+ <dt>
374
+ <a class="link" href="GDBusConnection.html#GDBusSendMessageFlags" title="enum GDBusSendMessageFlags">GDBusSendMessageFlags</a>, enum in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
375
+ </dt>
376
+ <dd></dd>
377
+ <dt>
378
+ <a class="link" href="GDBusServer.html#GDBusServer-struct" title="GDBusServer">GDBusServer</a>, struct in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
379
+ </dt>
380
+ <dd></dd>
381
+ <dt>
382
+ <a class="link" href="GDBusServer.html#GDBusServer-new-connection" title='The "new-connection" signal'>GDBusServer::new-connection</a>, object signal in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
383
+ </dt>
384
+ <dd></dd>
385
+ <dt>
386
+ <a class="link" href="GDBusServer.html#GDBusServer--active" title='The "active" property'>GDBusServer:active</a>, object property in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
387
+ </dt>
388
+ <dd></dd>
389
+ <dt>
390
+ <a class="link" href="GDBusServer.html#GDBusServer--address" title='The "address" property'>GDBusServer:address</a>, object property in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
391
+ </dt>
392
+ <dd></dd>
393
+ <dt>
394
+ <a class="link" href="GDBusServer.html#GDBusServer--authentication-observer" title='The "authentication-observer" property'>GDBusServer:authentication-observer</a>, object property in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
395
+ </dt>
396
+ <dd></dd>
397
+ <dt>
398
+ <a class="link" href="GDBusServer.html#GDBusServer--client-address" title='The "client-address" property'>GDBusServer:client-address</a>, object property in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
399
+ </dt>
400
+ <dd></dd>
401
+ <dt>
402
+ <a class="link" href="GDBusServer.html#GDBusServer--flags" title='The "flags" property'>GDBusServer:flags</a>, object property in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
403
+ </dt>
404
+ <dd></dd>
405
+ <dt>
406
+ <a class="link" href="GDBusServer.html#GDBusServer--guid" title='The "guid" property'>GDBusServer:guid</a>, object property in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
407
+ </dt>
408
+ <dd></dd>
409
+ <dt>
410
+ <a class="link" href="GDBusServer.html#GDBusServerFlags" title="enum GDBusServerFlags">GDBusServerFlags</a>, enum in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
411
+ </dt>
412
+ <dd></dd>
413
+ <dt>
414
+ <a class="link" href="GDBusConnection.html#GDBusSignalCallback" title="GDBusSignalCallback ()">GDBusSignalCallback</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
415
+ </dt>
416
+ <dd></dd>
417
+ <dt>
418
+ <a class="link" href="GDBusConnection.html#GDBusSignalFlags" title="enum GDBusSignalFlags">GDBusSignalFlags</a>, enum in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
419
+ </dt>
420
+ <dd></dd>
421
+ <dt>
422
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#GDBusSignalInfo" title="GDBusSignalInfo">GDBusSignalInfo</a>, struct in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
423
+ </dt>
424
+ <dd></dd>
425
+ <dt>
426
+ <a class="link" href="GDBusConnection.html#GDBusSubtreeDispatchFunc" title="GDBusSubtreeDispatchFunc ()">GDBusSubtreeDispatchFunc</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
427
+ </dt>
428
+ <dd></dd>
429
+ <dt>
430
+ <a class="link" href="GDBusConnection.html#GDBusSubtreeEnumerateFunc" title="GDBusSubtreeEnumerateFunc ()">GDBusSubtreeEnumerateFunc</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
431
+ </dt>
432
+ <dd></dd>
433
+ <dt>
434
+ <a class="link" href="GDBusConnection.html#GDBusSubtreeFlags" title="enum GDBusSubtreeFlags">GDBusSubtreeFlags</a>, enum in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
435
+ </dt>
436
+ <dd></dd>
437
+ <dt>
438
+ <a class="link" href="GDBusConnection.html#GDBusSubtreeIntrospectFunc" title="GDBusSubtreeIntrospectFunc ()">GDBusSubtreeIntrospectFunc</a>, user_function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
439
+ </dt>
440
+ <dd></dd>
441
+ <dt>
442
+ <a class="link" href="GDBusConnection.html#GDBusSubtreeVTable" title="GDBusSubtreeVTable">GDBusSubtreeVTable</a>, struct in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
443
+ </dt>
444
+ <dd></dd>
445
+ <dt>
446
+ <a class="link" href="gio-D-Bus-Addresses.html#g-dbus-address-get-for-bus-sync" title="g_dbus_address_get_for_bus_sync ()">g_dbus_address_get_for_bus_sync</a>, function in <a class="link" href="gio-D-Bus-Addresses.html" title="D-Bus Addresses">D-Bus Addresses</a>
447
+ </dt>
448
+ <dd></dd>
449
+ <dt>
450
+ <a class="link" href="gio-D-Bus-Addresses.html#g-dbus-address-get-stream" title="g_dbus_address_get_stream ()">g_dbus_address_get_stream</a>, function in <a class="link" href="gio-D-Bus-Addresses.html" title="D-Bus Addresses">D-Bus Addresses</a>
451
+ </dt>
452
+ <dd></dd>
453
+ <dt>
454
+ <a class="link" href="gio-D-Bus-Addresses.html#g-dbus-address-get-stream-finish" title="g_dbus_address_get_stream_finish ()">g_dbus_address_get_stream_finish</a>, function in <a class="link" href="gio-D-Bus-Addresses.html" title="D-Bus Addresses">D-Bus Addresses</a>
455
+ </dt>
456
+ <dd></dd>
457
+ <dt>
458
+ <a class="link" href="gio-D-Bus-Addresses.html#g-dbus-address-get-stream-sync" title="g_dbus_address_get_stream_sync ()">g_dbus_address_get_stream_sync</a>, function in <a class="link" href="gio-D-Bus-Addresses.html" title="D-Bus Addresses">D-Bus Addresses</a>
459
+ </dt>
460
+ <dd></dd>
461
+ <dt>
462
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-annotation-info-lookup" title="g_dbus_annotation_info_lookup ()">g_dbus_annotation_info_lookup</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
463
+ </dt>
464
+ <dd></dd>
465
+ <dt>
466
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-annotation-info-ref" title="g_dbus_annotation_info_ref ()">g_dbus_annotation_info_ref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
467
+ </dt>
468
+ <dd></dd>
469
+ <dt>
470
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-annotation-info-unref" title="g_dbus_annotation_info_unref ()">g_dbus_annotation_info_unref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
471
+ </dt>
472
+ <dd></dd>
473
+ <dt>
474
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-arg-info-ref" title="g_dbus_arg_info_ref ()">g_dbus_arg_info_ref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
475
+ </dt>
476
+ <dd></dd>
477
+ <dt>
478
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-arg-info-unref" title="g_dbus_arg_info_unref ()">g_dbus_arg_info_unref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
479
+ </dt>
480
+ <dd></dd>
481
+ <dt>
482
+ <a class="link" href="GDBusAuthObserver.html#g-dbus-auth-observer-authorize-authenticated-peer" title="g_dbus_auth_observer_authorize_authenticated_peer ()">g_dbus_auth_observer_authorize_authenticated_peer</a>, function in <a class="link" href="GDBusAuthObserver.html" title="GDBusAuthObserver">GDBusAuthObserver</a>
483
+ </dt>
484
+ <dd></dd>
485
+ <dt>
486
+ <a class="link" href="GDBusAuthObserver.html#g-dbus-auth-observer-new" title="g_dbus_auth_observer_new ()">g_dbus_auth_observer_new</a>, function in <a class="link" href="GDBusAuthObserver.html" title="GDBusAuthObserver">GDBusAuthObserver</a>
487
+ </dt>
488
+ <dd></dd>
489
+ <dt>
490
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-add-filter" title="g_dbus_connection_add_filter ()">g_dbus_connection_add_filter</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
491
+ </dt>
492
+ <dd></dd>
493
+ <dt>
494
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-call" title="g_dbus_connection_call ()">g_dbus_connection_call</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
495
+ </dt>
496
+ <dd></dd>
497
+ <dt>
498
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-call-finish" title="g_dbus_connection_call_finish ()">g_dbus_connection_call_finish</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
499
+ </dt>
500
+ <dd></dd>
501
+ <dt>
502
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-call-sync" title="g_dbus_connection_call_sync ()">g_dbus_connection_call_sync</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
503
+ </dt>
504
+ <dd></dd>
505
+ <dt>
506
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-close" title="g_dbus_connection_close ()">g_dbus_connection_close</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
507
+ </dt>
508
+ <dd></dd>
509
+ <dt>
510
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-close-finish" title="g_dbus_connection_close_finish ()">g_dbus_connection_close_finish</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
511
+ </dt>
512
+ <dd></dd>
513
+ <dt>
514
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-close-sync" title="g_dbus_connection_close_sync ()">g_dbus_connection_close_sync</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
515
+ </dt>
516
+ <dd></dd>
517
+ <dt>
518
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-emit-signal" title="g_dbus_connection_emit_signal ()">g_dbus_connection_emit_signal</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
519
+ </dt>
520
+ <dd></dd>
521
+ <dt>
522
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-flush" title="g_dbus_connection_flush ()">g_dbus_connection_flush</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
523
+ </dt>
524
+ <dd></dd>
525
+ <dt>
526
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-flush-finish" title="g_dbus_connection_flush_finish ()">g_dbus_connection_flush_finish</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
527
+ </dt>
528
+ <dd></dd>
529
+ <dt>
530
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-flush-sync" title="g_dbus_connection_flush_sync ()">g_dbus_connection_flush_sync</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
531
+ </dt>
532
+ <dd></dd>
533
+ <dt>
534
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-get-capabilities" title="g_dbus_connection_get_capabilities ()">g_dbus_connection_get_capabilities</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
535
+ </dt>
536
+ <dd></dd>
537
+ <dt>
538
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-get-exit-on-close" title="g_dbus_connection_get_exit_on_close ()">g_dbus_connection_get_exit_on_close</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
539
+ </dt>
540
+ <dd></dd>
541
+ <dt>
542
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-get-guid" title="g_dbus_connection_get_guid ()">g_dbus_connection_get_guid</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
543
+ </dt>
544
+ <dd></dd>
545
+ <dt>
546
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-get-peer-credentials" title="g_dbus_connection_get_peer_credentials ()">g_dbus_connection_get_peer_credentials</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
547
+ </dt>
548
+ <dd></dd>
549
+ <dt>
550
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-get-stream" title="g_dbus_connection_get_stream ()">g_dbus_connection_get_stream</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
551
+ </dt>
552
+ <dd></dd>
553
+ <dt>
554
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-get-unique-name" title="g_dbus_connection_get_unique_name ()">g_dbus_connection_get_unique_name</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
555
+ </dt>
556
+ <dd></dd>
557
+ <dt>
558
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-is-closed" title="g_dbus_connection_is_closed ()">g_dbus_connection_is_closed</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
559
+ </dt>
560
+ <dd></dd>
561
+ <dt>
562
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-new" title="g_dbus_connection_new ()">g_dbus_connection_new</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
563
+ </dt>
564
+ <dd></dd>
565
+ <dt>
566
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-new-finish" title="g_dbus_connection_new_finish ()">g_dbus_connection_new_finish</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
567
+ </dt>
568
+ <dd></dd>
569
+ <dt>
570
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-new-for-address" title="g_dbus_connection_new_for_address ()">g_dbus_connection_new_for_address</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
571
+ </dt>
572
+ <dd></dd>
573
+ <dt>
574
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-new-for-address-finish" title="g_dbus_connection_new_for_address_finish ()">g_dbus_connection_new_for_address_finish</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
575
+ </dt>
576
+ <dd></dd>
577
+ <dt>
578
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-new-for-address-sync" title="g_dbus_connection_new_for_address_sync ()">g_dbus_connection_new_for_address_sync</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
579
+ </dt>
580
+ <dd></dd>
581
+ <dt>
582
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-new-sync" title="g_dbus_connection_new_sync ()">g_dbus_connection_new_sync</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
583
+ </dt>
584
+ <dd></dd>
585
+ <dt>
586
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-register-object" title="g_dbus_connection_register_object ()">g_dbus_connection_register_object</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
587
+ </dt>
588
+ <dd></dd>
589
+ <dt>
590
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-register-subtree" title="g_dbus_connection_register_subtree ()">g_dbus_connection_register_subtree</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
591
+ </dt>
592
+ <dd></dd>
593
+ <dt>
594
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-remove-filter" title="g_dbus_connection_remove_filter ()">g_dbus_connection_remove_filter</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
595
+ </dt>
596
+ <dd></dd>
597
+ <dt>
598
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-send-message" title="g_dbus_connection_send_message ()">g_dbus_connection_send_message</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
599
+ </dt>
600
+ <dd></dd>
601
+ <dt>
602
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-send-message-with-reply" title="g_dbus_connection_send_message_with_reply ()">g_dbus_connection_send_message_with_reply</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
603
+ </dt>
604
+ <dd></dd>
605
+ <dt>
606
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-send-message-with-reply-finish" title="g_dbus_connection_send_message_with_reply_finish ()">g_dbus_connection_send_message_with_reply_finish</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
607
+ </dt>
608
+ <dd></dd>
609
+ <dt>
610
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-send-message-with-reply-sync" title="g_dbus_connection_send_message_with_reply_sync ()">g_dbus_connection_send_message_with_reply_sync</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
611
+ </dt>
612
+ <dd></dd>
613
+ <dt>
614
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-set-exit-on-close" title="g_dbus_connection_set_exit_on_close ()">g_dbus_connection_set_exit_on_close</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
615
+ </dt>
616
+ <dd></dd>
617
+ <dt>
618
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-signal-subscribe" title="g_dbus_connection_signal_subscribe ()">g_dbus_connection_signal_subscribe</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
619
+ </dt>
620
+ <dd></dd>
621
+ <dt>
622
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-signal-unsubscribe" title="g_dbus_connection_signal_unsubscribe ()">g_dbus_connection_signal_unsubscribe</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
623
+ </dt>
624
+ <dd></dd>
625
+ <dt>
626
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-start-message-processing" title="g_dbus_connection_start_message_processing ()">g_dbus_connection_start_message_processing</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
627
+ </dt>
628
+ <dd></dd>
629
+ <dt>
630
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-unregister-object" title="g_dbus_connection_unregister_object ()">g_dbus_connection_unregister_object</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
631
+ </dt>
632
+ <dd></dd>
633
+ <dt>
634
+ <a class="link" href="GDBusConnection.html#g-dbus-connection-unregister-subtree" title="g_dbus_connection_unregister_subtree ()">g_dbus_connection_unregister_subtree</a>, function in <a class="link" href="GDBusConnection.html" title="GDBusConnection">GDBusConnection</a>
635
+ </dt>
636
+ <dd></dd>
637
+ <dt>
638
+ <a class="link" href="gio-GDBusError.html#G-DBUS-ERROR:CAPS" title="G_DBUS_ERROR">G_DBUS_ERROR</a>, macro in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
639
+ </dt>
640
+ <dd></dd>
641
+ <dt>
642
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-encode-gerror" title="g_dbus_error_encode_gerror ()">g_dbus_error_encode_gerror</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
643
+ </dt>
644
+ <dd></dd>
645
+ <dt>
646
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-get-remote-error" title="g_dbus_error_get_remote_error ()">g_dbus_error_get_remote_error</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
647
+ </dt>
648
+ <dd></dd>
649
+ <dt>
650
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-is-remote-error" title="g_dbus_error_is_remote_error ()">g_dbus_error_is_remote_error</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
651
+ </dt>
652
+ <dd></dd>
653
+ <dt>
654
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-new-for-dbus-error" title="g_dbus_error_new_for_dbus_error ()">g_dbus_error_new_for_dbus_error</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
655
+ </dt>
656
+ <dd></dd>
657
+ <dt>
658
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-register-error" title="g_dbus_error_register_error ()">g_dbus_error_register_error</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
659
+ </dt>
660
+ <dd></dd>
661
+ <dt>
662
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-register-error-domain" title="g_dbus_error_register_error_domain ()">g_dbus_error_register_error_domain</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
663
+ </dt>
664
+ <dd></dd>
665
+ <dt>
666
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-set-dbus-error" title="g_dbus_error_set_dbus_error ()">g_dbus_error_set_dbus_error</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
667
+ </dt>
668
+ <dd></dd>
669
+ <dt>
670
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-set-dbus-error-valist" title="g_dbus_error_set_dbus_error_valist ()">g_dbus_error_set_dbus_error_valist</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
671
+ </dt>
672
+ <dd></dd>
673
+ <dt>
674
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-strip-remote-error" title="g_dbus_error_strip_remote_error ()">g_dbus_error_strip_remote_error</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
675
+ </dt>
676
+ <dd></dd>
677
+ <dt>
678
+ <a class="link" href="gio-GDBusError.html#g-dbus-error-unregister-error" title="g_dbus_error_unregister_error ()">g_dbus_error_unregister_error</a>, function in <a class="link" href="gio-GDBusError.html" title="GDBusError">GDBusError</a>
679
+ </dt>
680
+ <dd></dd>
681
+ <dt>
682
+ <a class="link" href="gio-D-Bus-Utilities.html#g-dbus-generate-guid" title="g_dbus_generate_guid ()">g_dbus_generate_guid</a>, function in <a class="link" href="gio-D-Bus-Utilities.html" title="D-Bus Utilities">D-Bus Utilities</a>
683
+ </dt>
684
+ <dd></dd>
685
+ <dt>
686
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-generate-xml" title="g_dbus_interface_info_generate_xml ()">g_dbus_interface_info_generate_xml</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
687
+ </dt>
688
+ <dd></dd>
689
+ <dt>
690
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-lookup-method" title="g_dbus_interface_info_lookup_method ()">g_dbus_interface_info_lookup_method</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
691
+ </dt>
692
+ <dd></dd>
693
+ <dt>
694
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-lookup-property" title="g_dbus_interface_info_lookup_property ()">g_dbus_interface_info_lookup_property</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
695
+ </dt>
696
+ <dd></dd>
697
+ <dt>
698
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-lookup-signal" title="g_dbus_interface_info_lookup_signal ()">g_dbus_interface_info_lookup_signal</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
699
+ </dt>
700
+ <dd></dd>
701
+ <dt>
702
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-ref" title="g_dbus_interface_info_ref ()">g_dbus_interface_info_ref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
703
+ </dt>
704
+ <dd></dd>
705
+ <dt>
706
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-unref" title="g_dbus_interface_info_unref ()">g_dbus_interface_info_unref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
707
+ </dt>
708
+ <dd></dd>
709
+ <dt>
710
+ <a class="link" href="gio-D-Bus-Addresses.html#g-dbus-is-address" title="g_dbus_is_address ()">g_dbus_is_address</a>, function in <a class="link" href="gio-D-Bus-Addresses.html" title="D-Bus Addresses">D-Bus Addresses</a>
711
+ </dt>
712
+ <dd></dd>
713
+ <dt>
714
+ <a class="link" href="gio-D-Bus-Utilities.html#g-dbus-is-guid" title="g_dbus_is_guid ()">g_dbus_is_guid</a>, function in <a class="link" href="gio-D-Bus-Utilities.html" title="D-Bus Utilities">D-Bus Utilities</a>
715
+ </dt>
716
+ <dd></dd>
717
+ <dt>
718
+ <a class="link" href="gio-D-Bus-Utilities.html#g-dbus-is-interface-name" title="g_dbus_is_interface_name ()">g_dbus_is_interface_name</a>, function in <a class="link" href="gio-D-Bus-Utilities.html" title="D-Bus Utilities">D-Bus Utilities</a>
719
+ </dt>
720
+ <dd></dd>
721
+ <dt>
722
+ <a class="link" href="gio-D-Bus-Utilities.html#g-dbus-is-member-name" title="g_dbus_is_member_name ()">g_dbus_is_member_name</a>, function in <a class="link" href="gio-D-Bus-Utilities.html" title="D-Bus Utilities">D-Bus Utilities</a>
723
+ </dt>
724
+ <dd></dd>
725
+ <dt>
726
+ <a class="link" href="gio-D-Bus-Utilities.html#g-dbus-is-name" title="g_dbus_is_name ()">g_dbus_is_name</a>, function in <a class="link" href="gio-D-Bus-Utilities.html" title="D-Bus Utilities">D-Bus Utilities</a>
727
+ </dt>
728
+ <dd></dd>
729
+ <dt>
730
+ <a class="link" href="gio-D-Bus-Addresses.html#g-dbus-is-supported-address" title="g_dbus_is_supported_address ()">g_dbus_is_supported_address</a>, function in <a class="link" href="gio-D-Bus-Addresses.html" title="D-Bus Addresses">D-Bus Addresses</a>
731
+ </dt>
732
+ <dd></dd>
733
+ <dt>
734
+ <a class="link" href="gio-D-Bus-Utilities.html#g-dbus-is-unique-name" title="g_dbus_is_unique_name ()">g_dbus_is_unique_name</a>, function in <a class="link" href="gio-D-Bus-Utilities.html" title="D-Bus Utilities">D-Bus Utilities</a>
735
+ </dt>
736
+ <dd></dd>
737
+ <dt>
738
+ <a class="link" href="GDBusMessage.html#g-dbus-message-bytes-needed" title="g_dbus_message_bytes_needed ()">g_dbus_message_bytes_needed</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
739
+ </dt>
740
+ <dd></dd>
741
+ <dt>
742
+ <a class="link" href="GDBusMessage.html#g-dbus-message-copy" title="g_dbus_message_copy ()">g_dbus_message_copy</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
743
+ </dt>
744
+ <dd></dd>
745
+ <dt>
746
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-arg0" title="g_dbus_message_get_arg0 ()">g_dbus_message_get_arg0</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
747
+ </dt>
748
+ <dd></dd>
749
+ <dt>
750
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-body" title="g_dbus_message_get_body ()">g_dbus_message_get_body</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
751
+ </dt>
752
+ <dd></dd>
753
+ <dt>
754
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-destination" title="g_dbus_message_get_destination ()">g_dbus_message_get_destination</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
755
+ </dt>
756
+ <dd></dd>
757
+ <dt>
758
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-error-name" title="g_dbus_message_get_error_name ()">g_dbus_message_get_error_name</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
759
+ </dt>
760
+ <dd></dd>
761
+ <dt>
762
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-flags" title="g_dbus_message_get_flags ()">g_dbus_message_get_flags</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
763
+ </dt>
764
+ <dd></dd>
765
+ <dt>
766
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-header" title="g_dbus_message_get_header ()">g_dbus_message_get_header</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
767
+ </dt>
768
+ <dd></dd>
769
+ <dt>
770
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-header-fields" title="g_dbus_message_get_header_fields ()">g_dbus_message_get_header_fields</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
771
+ </dt>
772
+ <dd></dd>
773
+ <dt>
774
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-interface" title="g_dbus_message_get_interface ()">g_dbus_message_get_interface</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
775
+ </dt>
776
+ <dd></dd>
777
+ <dt>
778
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-locked" title="g_dbus_message_get_locked ()">g_dbus_message_get_locked</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
779
+ </dt>
780
+ <dd></dd>
781
+ <dt>
782
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-member" title="g_dbus_message_get_member ()">g_dbus_message_get_member</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
783
+ </dt>
784
+ <dd></dd>
785
+ <dt>
786
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-message-type" title="g_dbus_message_get_message_type ()">g_dbus_message_get_message_type</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
787
+ </dt>
788
+ <dd></dd>
789
+ <dt>
790
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-num-unix-fds" title="g_dbus_message_get_num_unix_fds ()">g_dbus_message_get_num_unix_fds</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
791
+ </dt>
792
+ <dd></dd>
793
+ <dt>
794
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-path" title="g_dbus_message_get_path ()">g_dbus_message_get_path</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
795
+ </dt>
796
+ <dd></dd>
797
+ <dt>
798
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-reply-serial" title="g_dbus_message_get_reply_serial ()">g_dbus_message_get_reply_serial</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
799
+ </dt>
800
+ <dd></dd>
801
+ <dt>
802
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-sender" title="g_dbus_message_get_sender ()">g_dbus_message_get_sender</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
803
+ </dt>
804
+ <dd></dd>
805
+ <dt>
806
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-serial" title="g_dbus_message_get_serial ()">g_dbus_message_get_serial</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
807
+ </dt>
808
+ <dd></dd>
809
+ <dt>
810
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-signature" title="g_dbus_message_get_signature ()">g_dbus_message_get_signature</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
811
+ </dt>
812
+ <dd></dd>
813
+ <dt>
814
+ <a class="link" href="GDBusMessage.html#g-dbus-message-get-unix-fd-list" title="g_dbus_message_get_unix_fd_list ()">g_dbus_message_get_unix_fd_list</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
815
+ </dt>
816
+ <dd></dd>
817
+ <dt>
818
+ <a class="link" href="GDBusMessage.html#g-dbus-message-lock" title="g_dbus_message_lock ()">g_dbus_message_lock</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
819
+ </dt>
820
+ <dd></dd>
821
+ <dt>
822
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new" title="g_dbus_message_new ()">g_dbus_message_new</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
823
+ </dt>
824
+ <dd></dd>
825
+ <dt>
826
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new-from-blob" title="g_dbus_message_new_from_blob ()">g_dbus_message_new_from_blob</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
827
+ </dt>
828
+ <dd></dd>
829
+ <dt>
830
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new-method-call" title="g_dbus_message_new_method_call ()">g_dbus_message_new_method_call</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
831
+ </dt>
832
+ <dd></dd>
833
+ <dt>
834
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new-method-error" title="g_dbus_message_new_method_error ()">g_dbus_message_new_method_error</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
835
+ </dt>
836
+ <dd></dd>
837
+ <dt>
838
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new-method-error-literal" title="g_dbus_message_new_method_error_literal ()">g_dbus_message_new_method_error_literal</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
839
+ </dt>
840
+ <dd></dd>
841
+ <dt>
842
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new-method-error-valist" title="g_dbus_message_new_method_error_valist ()">g_dbus_message_new_method_error_valist</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
843
+ </dt>
844
+ <dd></dd>
845
+ <dt>
846
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new-method-reply" title="g_dbus_message_new_method_reply ()">g_dbus_message_new_method_reply</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
847
+ </dt>
848
+ <dd></dd>
849
+ <dt>
850
+ <a class="link" href="GDBusMessage.html#g-dbus-message-new-signal" title="g_dbus_message_new_signal ()">g_dbus_message_new_signal</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
851
+ </dt>
852
+ <dd></dd>
853
+ <dt>
854
+ <a class="link" href="GDBusMessage.html#g-dbus-message-print" title="g_dbus_message_print ()">g_dbus_message_print</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
855
+ </dt>
856
+ <dd></dd>
857
+ <dt>
858
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-body" title="g_dbus_message_set_body ()">g_dbus_message_set_body</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
859
+ </dt>
860
+ <dd></dd>
861
+ <dt>
862
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-destination" title="g_dbus_message_set_destination ()">g_dbus_message_set_destination</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
863
+ </dt>
864
+ <dd></dd>
865
+ <dt>
866
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-error-name" title="g_dbus_message_set_error_name ()">g_dbus_message_set_error_name</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
867
+ </dt>
868
+ <dd></dd>
869
+ <dt>
870
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-flags" title="g_dbus_message_set_flags ()">g_dbus_message_set_flags</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
871
+ </dt>
872
+ <dd></dd>
873
+ <dt>
874
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-header" title="g_dbus_message_set_header ()">g_dbus_message_set_header</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
875
+ </dt>
876
+ <dd></dd>
877
+ <dt>
878
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-interface" title="g_dbus_message_set_interface ()">g_dbus_message_set_interface</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
879
+ </dt>
880
+ <dd></dd>
881
+ <dt>
882
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-member" title="g_dbus_message_set_member ()">g_dbus_message_set_member</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
883
+ </dt>
884
+ <dd></dd>
885
+ <dt>
886
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-message-type" title="g_dbus_message_set_message_type ()">g_dbus_message_set_message_type</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
887
+ </dt>
888
+ <dd></dd>
889
+ <dt>
890
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-num-unix-fds" title="g_dbus_message_set_num_unix_fds ()">g_dbus_message_set_num_unix_fds</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
891
+ </dt>
892
+ <dd></dd>
893
+ <dt>
894
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-path" title="g_dbus_message_set_path ()">g_dbus_message_set_path</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
895
+ </dt>
896
+ <dd></dd>
897
+ <dt>
898
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-reply-serial" title="g_dbus_message_set_reply_serial ()">g_dbus_message_set_reply_serial</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
899
+ </dt>
900
+ <dd></dd>
901
+ <dt>
902
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-sender" title="g_dbus_message_set_sender ()">g_dbus_message_set_sender</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
903
+ </dt>
904
+ <dd></dd>
905
+ <dt>
906
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-serial" title="g_dbus_message_set_serial ()">g_dbus_message_set_serial</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
907
+ </dt>
908
+ <dd></dd>
909
+ <dt>
910
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-signature" title="g_dbus_message_set_signature ()">g_dbus_message_set_signature</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
911
+ </dt>
912
+ <dd></dd>
913
+ <dt>
914
+ <a class="link" href="GDBusMessage.html#g-dbus-message-set-unix-fd-list" title="g_dbus_message_set_unix_fd_list ()">g_dbus_message_set_unix_fd_list</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
915
+ </dt>
916
+ <dd></dd>
917
+ <dt>
918
+ <a class="link" href="GDBusMessage.html#g-dbus-message-to-blob" title="g_dbus_message_to_blob ()">g_dbus_message_to_blob</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
919
+ </dt>
920
+ <dd></dd>
921
+ <dt>
922
+ <a class="link" href="GDBusMessage.html#g-dbus-message-to-gerror" title="g_dbus_message_to_gerror ()">g_dbus_message_to_gerror</a>, function in <a class="link" href="GDBusMessage.html" title="GDBusMessage">GDBusMessage</a>
923
+ </dt>
924
+ <dd></dd>
925
+ <dt>
926
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-method-info-ref" title="g_dbus_method_info_ref ()">g_dbus_method_info_ref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
927
+ </dt>
928
+ <dd></dd>
929
+ <dt>
930
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-method-info-unref" title="g_dbus_method_info_unref ()">g_dbus_method_info_unref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
931
+ </dt>
932
+ <dd></dd>
933
+ <dt>
934
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-connection" title="g_dbus_method_invocation_get_connection ()">g_dbus_method_invocation_get_connection</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
935
+ </dt>
936
+ <dd></dd>
937
+ <dt>
938
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-interface-name" title="g_dbus_method_invocation_get_interface_name ()">g_dbus_method_invocation_get_interface_name</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
939
+ </dt>
940
+ <dd></dd>
941
+ <dt>
942
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-message" title="g_dbus_method_invocation_get_message ()">g_dbus_method_invocation_get_message</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
943
+ </dt>
944
+ <dd></dd>
945
+ <dt>
946
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-method-info" title="g_dbus_method_invocation_get_method_info ()">g_dbus_method_invocation_get_method_info</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
947
+ </dt>
948
+ <dd></dd>
949
+ <dt>
950
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-method-name" title="g_dbus_method_invocation_get_method_name ()">g_dbus_method_invocation_get_method_name</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
951
+ </dt>
952
+ <dd></dd>
953
+ <dt>
954
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-object-path" title="g_dbus_method_invocation_get_object_path ()">g_dbus_method_invocation_get_object_path</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
955
+ </dt>
956
+ <dd></dd>
957
+ <dt>
958
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-parameters" title="g_dbus_method_invocation_get_parameters ()">g_dbus_method_invocation_get_parameters</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
959
+ </dt>
960
+ <dd></dd>
961
+ <dt>
962
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-sender" title="g_dbus_method_invocation_get_sender ()">g_dbus_method_invocation_get_sender</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
963
+ </dt>
964
+ <dd></dd>
965
+ <dt>
966
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-get-user-data" title="g_dbus_method_invocation_get_user_data ()">g_dbus_method_invocation_get_user_data</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
967
+ </dt>
968
+ <dd></dd>
969
+ <dt>
970
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-return-dbus-error" title="g_dbus_method_invocation_return_dbus_error ()">g_dbus_method_invocation_return_dbus_error</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
971
+ </dt>
972
+ <dd></dd>
973
+ <dt>
974
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-return-error" title="g_dbus_method_invocation_return_error ()">g_dbus_method_invocation_return_error</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
975
+ </dt>
976
+ <dd></dd>
977
+ <dt>
978
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-return-error-literal" title="g_dbus_method_invocation_return_error_literal ()">g_dbus_method_invocation_return_error_literal</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
979
+ </dt>
980
+ <dd></dd>
981
+ <dt>
982
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-return-error-valist" title="g_dbus_method_invocation_return_error_valist ()">g_dbus_method_invocation_return_error_valist</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
983
+ </dt>
984
+ <dd></dd>
985
+ <dt>
986
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-return-gerror" title="g_dbus_method_invocation_return_gerror ()">g_dbus_method_invocation_return_gerror</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
987
+ </dt>
988
+ <dd></dd>
989
+ <dt>
990
+ <a class="link" href="GDBusMethodInvocation.html#g-dbus-method-invocation-return-value" title="g_dbus_method_invocation_return_value ()">g_dbus_method_invocation_return_value</a>, function in <a class="link" href="GDBusMethodInvocation.html" title="GDBusMethodInvocation">GDBusMethodInvocation</a>
991
+ </dt>
992
+ <dd></dd>
993
+ <dt>
994
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-node-info-generate-xml" title="g_dbus_node_info_generate_xml ()">g_dbus_node_info_generate_xml</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
995
+ </dt>
996
+ <dd></dd>
997
+ <dt>
998
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-node-info-lookup-interface" title="g_dbus_node_info_lookup_interface ()">g_dbus_node_info_lookup_interface</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
999
+ </dt>
1000
+ <dd></dd>
1001
+ <dt>
1002
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-node-info-new-for-xml" title="g_dbus_node_info_new_for_xml ()">g_dbus_node_info_new_for_xml</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1003
+ </dt>
1004
+ <dd></dd>
1005
+ <dt>
1006
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-node-info-ref" title="g_dbus_node_info_ref ()">g_dbus_node_info_ref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1007
+ </dt>
1008
+ <dd></dd>
1009
+ <dt>
1010
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-node-info-unref" title="g_dbus_node_info_unref ()">g_dbus_node_info_unref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1011
+ </dt>
1012
+ <dd></dd>
1013
+ <dt>
1014
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-property-info-ref" title="g_dbus_property_info_ref ()">g_dbus_property_info_ref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1015
+ </dt>
1016
+ <dd></dd>
1017
+ <dt>
1018
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-property-info-unref" title="g_dbus_property_info_unref ()">g_dbus_property_info_unref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1019
+ </dt>
1020
+ <dd></dd>
1021
+ <dt>
1022
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-call" title="g_dbus_proxy_call ()">g_dbus_proxy_call</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1023
+ </dt>
1024
+ <dd></dd>
1025
+ <dt>
1026
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-call-finish" title="g_dbus_proxy_call_finish ()">g_dbus_proxy_call_finish</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1027
+ </dt>
1028
+ <dd></dd>
1029
+ <dt>
1030
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-call-sync" title="g_dbus_proxy_call_sync ()">g_dbus_proxy_call_sync</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1031
+ </dt>
1032
+ <dd></dd>
1033
+ <dt>
1034
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-cached-property" title="g_dbus_proxy_get_cached_property ()">g_dbus_proxy_get_cached_property</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1035
+ </dt>
1036
+ <dd></dd>
1037
+ <dt>
1038
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-cached-property-names" title="g_dbus_proxy_get_cached_property_names ()">g_dbus_proxy_get_cached_property_names</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1039
+ </dt>
1040
+ <dd></dd>
1041
+ <dt>
1042
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-connection" title="g_dbus_proxy_get_connection ()">g_dbus_proxy_get_connection</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1043
+ </dt>
1044
+ <dd></dd>
1045
+ <dt>
1046
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-default-timeout" title="g_dbus_proxy_get_default_timeout ()">g_dbus_proxy_get_default_timeout</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1047
+ </dt>
1048
+ <dd></dd>
1049
+ <dt>
1050
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-flags" title="g_dbus_proxy_get_flags ()">g_dbus_proxy_get_flags</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1051
+ </dt>
1052
+ <dd></dd>
1053
+ <dt>
1054
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-interface-info" title="g_dbus_proxy_get_interface_info ()">g_dbus_proxy_get_interface_info</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1055
+ </dt>
1056
+ <dd></dd>
1057
+ <dt>
1058
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-interface-name" title="g_dbus_proxy_get_interface_name ()">g_dbus_proxy_get_interface_name</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1059
+ </dt>
1060
+ <dd></dd>
1061
+ <dt>
1062
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-name" title="g_dbus_proxy_get_name ()">g_dbus_proxy_get_name</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1063
+ </dt>
1064
+ <dd></dd>
1065
+ <dt>
1066
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-name-owner" title="g_dbus_proxy_get_name_owner ()">g_dbus_proxy_get_name_owner</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1067
+ </dt>
1068
+ <dd></dd>
1069
+ <dt>
1070
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-get-object-path" title="g_dbus_proxy_get_object_path ()">g_dbus_proxy_get_object_path</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1071
+ </dt>
1072
+ <dd></dd>
1073
+ <dt>
1074
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-new" title="g_dbus_proxy_new ()">g_dbus_proxy_new</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1075
+ </dt>
1076
+ <dd></dd>
1077
+ <dt>
1078
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-new-finish" title="g_dbus_proxy_new_finish ()">g_dbus_proxy_new_finish</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1079
+ </dt>
1080
+ <dd></dd>
1081
+ <dt>
1082
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-new-for-bus" title="g_dbus_proxy_new_for_bus ()">g_dbus_proxy_new_for_bus</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1083
+ </dt>
1084
+ <dd></dd>
1085
+ <dt>
1086
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-new-for-bus-finish" title="g_dbus_proxy_new_for_bus_finish ()">g_dbus_proxy_new_for_bus_finish</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1087
+ </dt>
1088
+ <dd></dd>
1089
+ <dt>
1090
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-new-for-bus-sync" title="g_dbus_proxy_new_for_bus_sync ()">g_dbus_proxy_new_for_bus_sync</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1091
+ </dt>
1092
+ <dd></dd>
1093
+ <dt>
1094
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-new-sync" title="g_dbus_proxy_new_sync ()">g_dbus_proxy_new_sync</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1095
+ </dt>
1096
+ <dd></dd>
1097
+ <dt>
1098
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-set-cached-property" title="g_dbus_proxy_set_cached_property ()">g_dbus_proxy_set_cached_property</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1099
+ </dt>
1100
+ <dd></dd>
1101
+ <dt>
1102
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-set-default-timeout" title="g_dbus_proxy_set_default_timeout ()">g_dbus_proxy_set_default_timeout</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1103
+ </dt>
1104
+ <dd></dd>
1105
+ <dt>
1106
+ <a class="link" href="GDBusProxy.html#g-dbus-proxy-set-interface-info" title="g_dbus_proxy_set_interface_info ()">g_dbus_proxy_set_interface_info</a>, function in <a class="link" href="GDBusProxy.html" title="GDBusProxy">GDBusProxy</a>
1107
+ </dt>
1108
+ <dd></dd>
1109
+ <dt>
1110
+ <a class="link" href="GDBusServer.html#g-dbus-server-get-client-address" title="g_dbus_server_get_client_address ()">g_dbus_server_get_client_address</a>, function in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
1111
+ </dt>
1112
+ <dd></dd>
1113
+ <dt>
1114
+ <a class="link" href="GDBusServer.html#g-dbus-server-get-flags" title="g_dbus_server_get_flags ()">g_dbus_server_get_flags</a>, function in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
1115
+ </dt>
1116
+ <dd></dd>
1117
+ <dt>
1118
+ <a class="link" href="GDBusServer.html#g-dbus-server-get-guid" title="g_dbus_server_get_guid ()">g_dbus_server_get_guid</a>, function in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
1119
+ </dt>
1120
+ <dd></dd>
1121
+ <dt>
1122
+ <a class="link" href="GDBusServer.html#g-dbus-server-is-active" title="g_dbus_server_is_active ()">g_dbus_server_is_active</a>, function in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
1123
+ </dt>
1124
+ <dd></dd>
1125
+ <dt>
1126
+ <a class="link" href="GDBusServer.html#g-dbus-server-new-sync" title="g_dbus_server_new_sync ()">g_dbus_server_new_sync</a>, function in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
1127
+ </dt>
1128
+ <dd></dd>
1129
+ <dt>
1130
+ <a class="link" href="GDBusServer.html#g-dbus-server-start" title="g_dbus_server_start ()">g_dbus_server_start</a>, function in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
1131
+ </dt>
1132
+ <dd></dd>
1133
+ <dt>
1134
+ <a class="link" href="GDBusServer.html#g-dbus-server-stop" title="g_dbus_server_stop ()">g_dbus_server_stop</a>, function in <a class="link" href="GDBusServer.html" title="GDBusServer">GDBusServer</a>
1135
+ </dt>
1136
+ <dd></dd>
1137
+ <dt>
1138
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-signal-info-ref" title="g_dbus_signal_info_ref ()">g_dbus_signal_info_ref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1139
+ </dt>
1140
+ <dd></dd>
1141
+ <dt>
1142
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#g-dbus-signal-info-unref" title="g_dbus_signal_info_unref ()">g_dbus_signal_info_unref</a>, function in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1143
+ </dt>
1144
+ <dd></dd>
1145
+ <a name="idxI"></a><h3 class="title">I</h3>
1146
+ <dt>
1147
+ <a class="link" href="gio-GIOError.html#g-io-error-from-win32-error" title="g_io_error_from_win32_error ()">g_io_error_from_win32_error</a>, function in <a class="link" href="gio-GIOError.html" title="GIOError">GIOError</a>
1148
+ </dt>
1149
+ <dd></dd>
1150
+ <a name="idxM"></a><h3 class="title">M</h3>
1151
+ <dt>
1152
+ <a class="link" href="GMemoryOutputStream.html#g-memory-output-stream-steal-data" title="g_memory_output_stream_steal_data ()">g_memory_output_stream_steal_data</a>, function in <a class="link" href="GMemoryOutputStream.html" title="GMemoryOutputStream">GMemoryOutputStream</a>
1153
+ </dt>
1154
+ <dd></dd>
1155
+ <a name="idxN"></a><h3 class="title">N</h3>
1156
+ <dt>
1157
+ <a class="link" href="GNetworkAddress.html#g-network-address-get-scheme" title="g_network_address_get_scheme ()">g_network_address_get_scheme</a>, function in <a class="link" href="GNetworkAddress.html" title="GNetworkAddress">GNetworkAddress</a>
1158
+ </dt>
1159
+ <dd></dd>
1160
+ <dt>
1161
+ <a class="link" href="GNetworkAddress.html#g-network-address-parse-uri" title="g_network_address_parse_uri ()">g_network_address_parse_uri</a>, function in <a class="link" href="GNetworkAddress.html" title="GNetworkAddress">GNetworkAddress</a>
1162
+ </dt>
1163
+ <dd></dd>
1164
+ <dt>
1165
+ <a class="link" href="GNetworkService.html#g-network-service-get-scheme" title="g_network_service_get_scheme ()">g_network_service_get_scheme</a>, function in <a class="link" href="GNetworkService.html" title="GNetworkService">GNetworkService</a>
1166
+ </dt>
1167
+ <dd></dd>
1168
+ <dt>
1169
+ <a class="link" href="GNetworkService.html#g-network-service-set-scheme" title="g_network_service_set_scheme ()">g_network_service_set_scheme</a>, function in <a class="link" href="GNetworkService.html" title="GNetworkService">GNetworkService</a>
1170
+ </dt>
1171
+ <dd></dd>
1172
+ <a name="idxP"></a><h3 class="title">P</h3>
1173
+ <dt>
1174
+ <a class="link" href="GPermission.html#g-permission-acquire" title="g_permission_acquire ()">g_permission_acquire</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1175
+ </dt>
1176
+ <dd></dd>
1177
+ <dt>
1178
+ <a class="link" href="GPermission.html#g-permission-acquire-async" title="g_permission_acquire_async ()">g_permission_acquire_async</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1179
+ </dt>
1180
+ <dd></dd>
1181
+ <dt>
1182
+ <a class="link" href="GPermission.html#g-permission-acquire-finish" title="g_permission_acquire_finish ()">g_permission_acquire_finish</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1183
+ </dt>
1184
+ <dd></dd>
1185
+ <dt>
1186
+ <a class="link" href="GPermission.html#g-permission-get-allowed" title="g_permission_get_allowed ()">g_permission_get_allowed</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1187
+ </dt>
1188
+ <dd></dd>
1189
+ <dt>
1190
+ <a class="link" href="GPermission.html#g-permission-get-can-acquire" title="g_permission_get_can_acquire ()">g_permission_get_can_acquire</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1191
+ </dt>
1192
+ <dd></dd>
1193
+ <dt>
1194
+ <a class="link" href="GPermission.html#g-permission-get-can-release" title="g_permission_get_can_release ()">g_permission_get_can_release</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1195
+ </dt>
1196
+ <dd></dd>
1197
+ <dt>
1198
+ <a class="link" href="GPermission.html#g-permission-impl-update" title="g_permission_impl_update ()">g_permission_impl_update</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1199
+ </dt>
1200
+ <dd></dd>
1201
+ <dt>
1202
+ <a class="link" href="GPermission.html#g-permission-release" title="g_permission_release ()">g_permission_release</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1203
+ </dt>
1204
+ <dd></dd>
1205
+ <dt>
1206
+ <a class="link" href="GPermission.html#g-permission-release-async" title="g_permission_release_async ()">g_permission_release_async</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1207
+ </dt>
1208
+ <dd></dd>
1209
+ <dt>
1210
+ <a class="link" href="GPermission.html#g-permission-release-finish" title="g_permission_release_finish ()">g_permission_release_finish</a>, function in <a class="link" href="GPermission.html" title="GPermission">GPermission</a>
1211
+ </dt>
1212
+ <dd></dd>
1213
+ <dt>
1214
+ <a class="link" href="GProxy.html#GProxy-struct" title="GProxy">GProxy</a>, struct in <a class="link" href="GProxy.html" title="GProxy">GProxy</a>
1215
+ </dt>
1216
+ <dd></dd>
1217
+ <dt>
1218
+ <a class="link" href="GProxyAddress.html#GProxyAddress-struct" title="GProxyAddress">GProxyAddress</a>, struct in <a class="link" href="GProxyAddress.html" title="GProxyAddress">GProxyAddress</a>
1219
+ </dt>
1220
+ <dd></dd>
1221
+ <dt>
1222
+ <a class="link" href="GProxyResolver.html#GProxyResolver-struct" title="GProxyResolver">GProxyResolver</a>, struct in <a class="link" href="GProxyResolver.html" title="GProxyResolver">GProxyResolver</a>
1223
+ </dt>
1224
+ <dd></dd>
1225
+ <dt>
1226
+ <a class="link" href="GProxyAddress.html#g-proxy-address-get-destination-hostname" title="g_proxy_address_get_destination_hostname ()">g_proxy_address_get_destination_hostname</a>, function in <a class="link" href="GProxyAddress.html" title="GProxyAddress">GProxyAddress</a>
1227
+ </dt>
1228
+ <dd></dd>
1229
+ <dt>
1230
+ <a class="link" href="GProxyAddress.html#g-proxy-address-get-destination-port" title="g_proxy_address_get_destination_port ()">g_proxy_address_get_destination_port</a>, function in <a class="link" href="GProxyAddress.html" title="GProxyAddress">GProxyAddress</a>
1231
+ </dt>
1232
+ <dd></dd>
1233
+ <dt>
1234
+ <a class="link" href="GProxyAddress.html#g-proxy-address-get-password" title="g_proxy_address_get_password ()">g_proxy_address_get_password</a>, function in <a class="link" href="GProxyAddress.html" title="GProxyAddress">GProxyAddress</a>
1235
+ </dt>
1236
+ <dd></dd>
1237
+ <dt>
1238
+ <a class="link" href="GProxyAddress.html#g-proxy-address-get-protocol" title="g_proxy_address_get_protocol ()">g_proxy_address_get_protocol</a>, function in <a class="link" href="GProxyAddress.html" title="GProxyAddress">GProxyAddress</a>
1239
+ </dt>
1240
+ <dd></dd>
1241
+ <dt>
1242
+ <a class="link" href="GProxyAddress.html#g-proxy-address-get-username" title="g_proxy_address_get_username ()">g_proxy_address_get_username</a>, function in <a class="link" href="GProxyAddress.html" title="GProxyAddress">GProxyAddress</a>
1243
+ </dt>
1244
+ <dd></dd>
1245
+ <dt>
1246
+ <a class="link" href="GProxyAddress.html#g-proxy-address-new" title="g_proxy_address_new ()">g_proxy_address_new</a>, function in <a class="link" href="GProxyAddress.html" title="GProxyAddress">GProxyAddress</a>
1247
+ </dt>
1248
+ <dd></dd>
1249
+ <dt>
1250
+ <a class="link" href="GProxy.html#g-proxy-connect" title="g_proxy_connect ()">g_proxy_connect</a>, function in <a class="link" href="GProxy.html" title="GProxy">GProxy</a>
1251
+ </dt>
1252
+ <dd></dd>
1253
+ <dt>
1254
+ <a class="link" href="GProxy.html#g-proxy-connect-async" title="g_proxy_connect_async ()">g_proxy_connect_async</a>, function in <a class="link" href="GProxy.html" title="GProxy">GProxy</a>
1255
+ </dt>
1256
+ <dd></dd>
1257
+ <dt>
1258
+ <a class="link" href="GProxy.html#g-proxy-connect-finish" title="g_proxy_connect_finish ()">g_proxy_connect_finish</a>, function in <a class="link" href="GProxy.html" title="GProxy">GProxy</a>
1259
+ </dt>
1260
+ <dd></dd>
1261
+ <dt>
1262
+ <a class="link" href="GProxy.html#G-PROXY-EXTENSION-POINT-NAME:CAPS" title="G_PROXY_EXTENSION_POINT_NAME">G_PROXY_EXTENSION_POINT_NAME</a>, macro in <a class="link" href="GProxy.html" title="GProxy">GProxy</a>
1263
+ </dt>
1264
+ <dd></dd>
1265
+ <dt>
1266
+ <a class="link" href="GProxy.html#g-proxy-get-default-for-protocol" title="g_proxy_get_default_for_protocol ()">g_proxy_get_default_for_protocol</a>, function in <a class="link" href="GProxy.html" title="GProxy">GProxy</a>
1267
+ </dt>
1268
+ <dd></dd>
1269
+ <dt>
1270
+ <a class="link" href="GProxyResolver.html#g-proxy-resolver-get-default" title="g_proxy_resolver_get_default ()">g_proxy_resolver_get_default</a>, function in <a class="link" href="GProxyResolver.html" title="GProxyResolver">GProxyResolver</a>
1271
+ </dt>
1272
+ <dd></dd>
1273
+ <dt>
1274
+ <a class="link" href="GProxyResolver.html#g-proxy-resolver-is-supported" title="g_proxy_resolver_is_supported ()">g_proxy_resolver_is_supported</a>, function in <a class="link" href="GProxyResolver.html" title="GProxyResolver">GProxyResolver</a>
1275
+ </dt>
1276
+ <dd></dd>
1277
+ <dt>
1278
+ <a class="link" href="GProxyResolver.html#g-proxy-resolver-lookup" title="g_proxy_resolver_lookup ()">g_proxy_resolver_lookup</a>, function in <a class="link" href="GProxyResolver.html" title="GProxyResolver">GProxyResolver</a>
1279
+ </dt>
1280
+ <dd></dd>
1281
+ <dt>
1282
+ <a class="link" href="GProxyResolver.html#g-proxy-resolver-lookup-async" title="g_proxy_resolver_lookup_async ()">g_proxy_resolver_lookup_async</a>, function in <a class="link" href="GProxyResolver.html" title="GProxyResolver">GProxyResolver</a>
1283
+ </dt>
1284
+ <dd></dd>
1285
+ <dt>
1286
+ <a class="link" href="GProxyResolver.html#g-proxy-resolver-lookup-finish" title="g_proxy_resolver_lookup_finish ()">g_proxy_resolver_lookup_finish</a>, function in <a class="link" href="GProxyResolver.html" title="GProxyResolver">GProxyResolver</a>
1287
+ </dt>
1288
+ <dd></dd>
1289
+ <dt>
1290
+ <a class="link" href="GProxy.html#g-proxy-supports-hostname" title="g_proxy_supports_hostname ()">g_proxy_supports_hostname</a>, function in <a class="link" href="GProxy.html" title="GProxy">GProxy</a>
1291
+ </dt>
1292
+ <dd></dd>
1293
+ <a name="idxS"></a><h3 class="title">S</h3>
1294
+ <dt>
1295
+ <a class="link" href="GSettingsBackend.html#g-settings-backend-changed" title="g_settings_backend_changed ()">g_settings_backend_changed</a>, function in <a class="link" href="GSettingsBackend.html" title="GSettingsBackend">GSettingsBackend</a>
1296
+ </dt>
1297
+ <dd></dd>
1298
+ <dt>
1299
+ <a class="link" href="GSettingsBackend.html#g-settings-backend-changed-tree" title="g_settings_backend_changed_tree ()">g_settings_backend_changed_tree</a>, function in <a class="link" href="GSettingsBackend.html" title="GSettingsBackend">GSettingsBackend</a>
1300
+ </dt>
1301
+ <dd></dd>
1302
+ <dt>
1303
+ <a class="link" href="GSettingsBackend.html#g-settings-backend-flatten-tree" title="g_settings_backend_flatten_tree ()">g_settings_backend_flatten_tree</a>, function in <a class="link" href="GSettingsBackend.html" title="GSettingsBackend">GSettingsBackend</a>
1304
+ </dt>
1305
+ <dd></dd>
1306
+ <dt>
1307
+ <a class="link" href="GSettingsBackend.html#g-settings-backend-keys-changed" title="g_settings_backend_keys_changed ()">g_settings_backend_keys_changed</a>, function in <a class="link" href="GSettingsBackend.html" title="GSettingsBackend">GSettingsBackend</a>
1308
+ </dt>
1309
+ <dd></dd>
1310
+ <dt>
1311
+ <a class="link" href="GSettingsBackend.html#g-settings-backend-path-changed" title="g_settings_backend_path_changed ()">g_settings_backend_path_changed</a>, function in <a class="link" href="GSettingsBackend.html" title="GSettingsBackend">GSettingsBackend</a>
1312
+ </dt>
1313
+ <dd></dd>
1314
+ <dt>
1315
+ <a class="link" href="GSettingsBackend.html#g-settings-backend-path-writable-changed" title="g_settings_backend_path_writable_changed ()">g_settings_backend_path_writable_changed</a>, function in <a class="link" href="GSettingsBackend.html" title="GSettingsBackend">GSettingsBackend</a>
1316
+ </dt>
1317
+ <dd></dd>
1318
+ <dt>
1319
+ <a class="link" href="GSettingsBackend.html#g-settings-backend-writable-changed" title="g_settings_backend_writable_changed ()">g_settings_backend_writable_changed</a>, function in <a class="link" href="GSettingsBackend.html" title="GSettingsBackend">GSettingsBackend</a>
1320
+ </dt>
1321
+ <dd></dd>
1322
+ <dt>
1323
+ <a class="link" href="GSettings.html#g-settings-bind" title="g_settings_bind ()">g_settings_bind</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1324
+ </dt>
1325
+ <dd></dd>
1326
+ <dt>
1327
+ <a class="link" href="GSettings.html#g-settings-bind-with-mapping" title="g_settings_bind_with_mapping ()">g_settings_bind_with_mapping</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1328
+ </dt>
1329
+ <dd></dd>
1330
+ <dt>
1331
+ <a class="link" href="GSettings.html#g-settings-bind-writable" title="g_settings_bind_writable ()">g_settings_bind_writable</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1332
+ </dt>
1333
+ <dd></dd>
1334
+ <dt>
1335
+ <a class="link" href="GSettings.html#g-settings-delay" title="g_settings_delay ()">g_settings_delay</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1336
+ </dt>
1337
+ <dd></dd>
1338
+ <dt>
1339
+ <a class="link" href="GSettings.html#g-settings-get" title="g_settings_get ()">g_settings_get</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1340
+ </dt>
1341
+ <dd></dd>
1342
+ <dt>
1343
+ <a class="link" href="GSettings.html#g-settings-get-boolean" title="g_settings_get_boolean ()">g_settings_get_boolean</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1344
+ </dt>
1345
+ <dd></dd>
1346
+ <dt>
1347
+ <a class="link" href="GSettings.html#g-settings-get-child" title="g_settings_get_child ()">g_settings_get_child</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1348
+ </dt>
1349
+ <dd></dd>
1350
+ <dt>
1351
+ <a class="link" href="GSettings.html#g-settings-get-double" title="g_settings_get_double ()">g_settings_get_double</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1352
+ </dt>
1353
+ <dd></dd>
1354
+ <dt>
1355
+ <a class="link" href="GSettings.html#g-settings-get-enum" title="g_settings_get_enum ()">g_settings_get_enum</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1356
+ </dt>
1357
+ <dd></dd>
1358
+ <dt>
1359
+ <a class="link" href="GSettings.html#g-settings-get-flags" title="g_settings_get_flags ()">g_settings_get_flags</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1360
+ </dt>
1361
+ <dd></dd>
1362
+ <dt>
1363
+ <a class="link" href="GSettings.html#g-settings-get-has-unapplied" title="g_settings_get_has_unapplied ()">g_settings_get_has_unapplied</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1364
+ </dt>
1365
+ <dd></dd>
1366
+ <dt>
1367
+ <a class="link" href="GSettings.html#g-settings-get-int" title="g_settings_get_int ()">g_settings_get_int</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1368
+ </dt>
1369
+ <dd></dd>
1370
+ <dt>
1371
+ <a class="link" href="GSettings.html#g-settings-get-string" title="g_settings_get_string ()">g_settings_get_string</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1372
+ </dt>
1373
+ <dd></dd>
1374
+ <dt>
1375
+ <a class="link" href="GSettings.html#g-settings-get-strv" title="g_settings_get_strv ()">g_settings_get_strv</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1376
+ </dt>
1377
+ <dd></dd>
1378
+ <dt>
1379
+ <a class="link" href="GSettings.html#g-settings-get-value" title="g_settings_get_value ()">g_settings_get_value</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1380
+ </dt>
1381
+ <dd></dd>
1382
+ <dt>
1383
+ <a class="link" href="GSettings.html#g-settings-is-writable" title="g_settings_is_writable ()">g_settings_is_writable</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1384
+ </dt>
1385
+ <dd></dd>
1386
+ <dt>
1387
+ <a class="link" href="GSettings.html#g-settings-new" title="g_settings_new ()">g_settings_new</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1388
+ </dt>
1389
+ <dd></dd>
1390
+ <dt>
1391
+ <a class="link" href="GSettings.html#g-settings-new-with-backend" title="g_settings_new_with_backend ()">g_settings_new_with_backend</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1392
+ </dt>
1393
+ <dd></dd>
1394
+ <dt>
1395
+ <a class="link" href="GSettings.html#g-settings-new-with-backend-and-path" title="g_settings_new_with_backend_and_path ()">g_settings_new_with_backend_and_path</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1396
+ </dt>
1397
+ <dd></dd>
1398
+ <dt>
1399
+ <a class="link" href="GSettings.html#g-settings-new-with-path" title="g_settings_new_with_path ()">g_settings_new_with_path</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1400
+ </dt>
1401
+ <dd></dd>
1402
+ <dt>
1403
+ <a class="link" href="GSettings.html#g-settings-set" title="g_settings_set ()">g_settings_set</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1404
+ </dt>
1405
+ <dd></dd>
1406
+ <dt>
1407
+ <a class="link" href="GSettings.html#g-settings-set-boolean" title="g_settings_set_boolean ()">g_settings_set_boolean</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1408
+ </dt>
1409
+ <dd></dd>
1410
+ <dt>
1411
+ <a class="link" href="GSettings.html#g-settings-set-double" title="g_settings_set_double ()">g_settings_set_double</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1412
+ </dt>
1413
+ <dd></dd>
1414
+ <dt>
1415
+ <a class="link" href="GSettings.html#g-settings-set-int" title="g_settings_set_int ()">g_settings_set_int</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1416
+ </dt>
1417
+ <dd></dd>
1418
+ <dt>
1419
+ <a class="link" href="GSettings.html#g-settings-set-string" title="g_settings_set_string ()">g_settings_set_string</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1420
+ </dt>
1421
+ <dd></dd>
1422
+ <dt>
1423
+ <a class="link" href="GSettings.html#g-settings-set-strv" title="g_settings_set_strv ()">g_settings_set_strv</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1424
+ </dt>
1425
+ <dd></dd>
1426
+ <dt>
1427
+ <a class="link" href="GSettings.html#g-settings-set-value" title="g_settings_set_value ()">g_settings_set_value</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1428
+ </dt>
1429
+ <dd></dd>
1430
+ <dt>
1431
+ <a class="link" href="GSettings.html#g-settings-unbind" title="g_settings_unbind ()">g_settings_unbind</a>, function in <a class="link" href="GSettings.html" title="GSettings">GSettings</a>
1432
+ </dt>
1433
+ <dd></dd>
1434
+ <dt>
1435
+ <a class="link" href="GSimplePermission.html#g-simple-permission-new" title="g_simple_permission_new ()">g_simple_permission_new</a>, function in <a class="link" href="GSimplePermission.html" title="GSimplePermission">GSimplePermission</a>
1436
+ </dt>
1437
+ <dd></dd>
1438
+ <dt>
1439
+ <a class="link" href="GSocket.html#GSocket--timeout" title='The "timeout" property'>GSocket:timeout</a>, object property in <a class="link" href="GSocket.html" title="GSocket">GSocket</a>
1440
+ </dt>
1441
+ <dd></dd>
1442
+ <dt>
1443
+ <a class="link" href="GSocketClient.html#g-socket-client-connect-to-uri" title="g_socket_client_connect_to_uri ()">g_socket_client_connect_to_uri</a>, function in <a class="link" href="GSocketClient.html" title="GSocketClient">GSocketClient</a>
1444
+ </dt>
1445
+ <dd></dd>
1446
+ <dt>
1447
+ <a class="link" href="GSocketClient.html#g-socket-client-connect-to-uri-async" title="g_socket_client_connect_to_uri_async ()">g_socket_client_connect_to_uri_async</a>, function in <a class="link" href="GSocketClient.html" title="GSocketClient">GSocketClient</a>
1448
+ </dt>
1449
+ <dd></dd>
1450
+ <dt>
1451
+ <a class="link" href="GSocketClient.html#g-socket-client-connect-to-uri-finish" title="g_socket_client_connect_to_uri_finish ()">g_socket_client_connect_to_uri_finish</a>, function in <a class="link" href="GSocketClient.html" title="GSocketClient">GSocketClient</a>
1452
+ </dt>
1453
+ <dd></dd>
1454
+ <dt>
1455
+ <a class="link" href="GSocketClient.html#g-socket-client-get-enable-proxy" title="g_socket_client_get_enable_proxy ()">g_socket_client_get_enable_proxy</a>, function in <a class="link" href="GSocketClient.html" title="GSocketClient">GSocketClient</a>
1456
+ </dt>
1457
+ <dd></dd>
1458
+ <dt>
1459
+ <a class="link" href="GSocketClient.html#g-socket-client-get-timeout" title="g_socket_client_get_timeout ()">g_socket_client_get_timeout</a>, function in <a class="link" href="GSocketClient.html" title="GSocketClient">GSocketClient</a>
1460
+ </dt>
1461
+ <dd></dd>
1462
+ <dt>
1463
+ <a class="link" href="GSocketClient.html#g-socket-client-set-enable-proxy" title="g_socket_client_set_enable_proxy ()">g_socket_client_set_enable_proxy</a>, function in <a class="link" href="GSocketClient.html" title="GSocketClient">GSocketClient</a>
1464
+ </dt>
1465
+ <dd></dd>
1466
+ <dt>
1467
+ <a class="link" href="GSocketClient.html#g-socket-client-set-timeout" title="g_socket_client_set_timeout ()">g_socket_client_set_timeout</a>, function in <a class="link" href="GSocketClient.html" title="GSocketClient">GSocketClient</a>
1468
+ </dt>
1469
+ <dd></dd>
1470
+ <dt>
1471
+ <a class="link" href="GSocketConnectable.html#g-socket-connectable-proxy-enumerate" title="g_socket_connectable_proxy_enumerate ()">g_socket_connectable_proxy_enumerate</a>, function in <a class="link" href="GSocketConnectable.html" title="GSocketConnectable">GSocketConnectable</a>
1472
+ </dt>
1473
+ <dd></dd>
1474
+ <dt>
1475
+ <a class="link" href="GSocket.html#g-socket-get-credentials" title="g_socket_get_credentials ()">g_socket_get_credentials</a>, function in <a class="link" href="GSocket.html" title="GSocket">GSocket</a>
1476
+ </dt>
1477
+ <dd></dd>
1478
+ <dt>
1479
+ <a class="link" href="GSocket.html#g-socket-get-timeout" title="g_socket_get_timeout ()">g_socket_get_timeout</a>, function in <a class="link" href="GSocket.html" title="GSocket">GSocket</a>
1480
+ </dt>
1481
+ <dd></dd>
1482
+ <dt>
1483
+ <a class="link" href="GSocket.html#g-socket-receive-with-blocking" title="g_socket_receive_with_blocking ()">g_socket_receive_with_blocking</a>, function in <a class="link" href="GSocket.html" title="GSocket">GSocket</a>
1484
+ </dt>
1485
+ <dd></dd>
1486
+ <dt>
1487
+ <a class="link" href="GSocket.html#g-socket-send-with-blocking" title="g_socket_send_with_blocking ()">g_socket_send_with_blocking</a>, function in <a class="link" href="GSocket.html" title="GSocket">GSocket</a>
1488
+ </dt>
1489
+ <dd></dd>
1490
+ <dt>
1491
+ <a class="link" href="GSocket.html#g-socket-set-timeout" title="g_socket_set_timeout ()">g_socket_set_timeout</a>, function in <a class="link" href="GSocket.html" title="GSocket">GSocket</a>
1492
+ </dt>
1493
+ <dd></dd>
1494
+ <a name="idxT"></a><h3 class="title">T</h3>
1495
+ <dt>
1496
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-ANNOTATION-INFO:CAPS" title="G_TYPE_DBUS_ANNOTATION_INFO">G_TYPE_DBUS_ANNOTATION_INFO</a>, macro in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1497
+ </dt>
1498
+ <dd></dd>
1499
+ <dt>
1500
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-ARG-INFO:CAPS" title="G_TYPE_DBUS_ARG_INFO">G_TYPE_DBUS_ARG_INFO</a>, macro in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1501
+ </dt>
1502
+ <dd></dd>
1503
+ <dt>
1504
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-INTERFACE-INFO:CAPS" title="G_TYPE_DBUS_INTERFACE_INFO">G_TYPE_DBUS_INTERFACE_INFO</a>, macro in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1505
+ </dt>
1506
+ <dd></dd>
1507
+ <dt>
1508
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-METHOD-INFO:CAPS" title="G_TYPE_DBUS_METHOD_INFO">G_TYPE_DBUS_METHOD_INFO</a>, macro in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1509
+ </dt>
1510
+ <dd></dd>
1511
+ <dt>
1512
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-NODE-INFO:CAPS" title="G_TYPE_DBUS_NODE_INFO">G_TYPE_DBUS_NODE_INFO</a>, macro in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1513
+ </dt>
1514
+ <dd></dd>
1515
+ <dt>
1516
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-PROPERTY-INFO:CAPS" title="G_TYPE_DBUS_PROPERTY_INFO">G_TYPE_DBUS_PROPERTY_INFO</a>, macro in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1517
+ </dt>
1518
+ <dd></dd>
1519
+ <dt>
1520
+ <a class="link" href="gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-SIGNAL-INFO:CAPS" title="G_TYPE_DBUS_SIGNAL_INFO">G_TYPE_DBUS_SIGNAL_INFO</a>, macro in <a class="link" href="gio-D-Bus-Introspection-Data.html" title="D-Bus Introspection Data">D-Bus Introspection Data</a>
1521
+ </dt>
1522
+ <dd></dd>
1523
+ <a name="idxU"></a><h3 class="title">U</h3>
1524
+ <dt>
1525
+ <a class="link" href="GUnixCredentialsMessage.html#GUnixCredentialsMessage-struct" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>, struct in <a class="link" href="GUnixCredentialsMessage.html" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>
1526
+ </dt>
1527
+ <dd></dd>
1528
+ <dt>
1529
+ <a class="link" href="GUnixCredentialsMessage.html#GUnixCredentialsMessage--credentials" title='The "credentials" property'>GUnixCredentialsMessage:credentials</a>, object property in <a class="link" href="GUnixCredentialsMessage.html" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>
1530
+ </dt>
1531
+ <dd></dd>
1532
+ <dt>
1533
+ <a class="link" href="GUnixCredentialsMessage.html#GUnixCredentialsMessageClass" title="GUnixCredentialsMessageClass">GUnixCredentialsMessageClass</a>, struct in <a class="link" href="GUnixCredentialsMessage.html" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>
1534
+ </dt>
1535
+ <dd></dd>
1536
+ <dt>
1537
+ <a class="link" href="GUnixSocketAddress.html#GUnixSocketAddressType" title="enum GUnixSocketAddressType">GUnixSocketAddressType</a>, enum in <a class="link" href="GUnixSocketAddress.html" title="GUnixSocketAddress">GUnixSocketAddress</a>
1538
+ </dt>
1539
+ <dd></dd>
1540
+ <dt>
1541
+ <a class="link" href="GUnixConnection.html#g-unix-connection-receive-credentials" title="g_unix_connection_receive_credentials ()">g_unix_connection_receive_credentials</a>, function in <a class="link" href="GUnixConnection.html" title="GUnixConnection">GUnixConnection</a>
1542
+ </dt>
1543
+ <dd></dd>
1544
+ <dt>
1545
+ <a class="link" href="GUnixConnection.html#g-unix-connection-send-credentials" title="g_unix_connection_send_credentials ()">g_unix_connection_send_credentials</a>, function in <a class="link" href="GUnixConnection.html" title="GUnixConnection">GUnixConnection</a>
1546
+ </dt>
1547
+ <dd></dd>
1548
+ <dt>
1549
+ <a class="link" href="GUnixCredentialsMessage.html#g-unix-credentials-message-get-credentials" title="g_unix_credentials_message_get_credentials ()">g_unix_credentials_message_get_credentials</a>, function in <a class="link" href="GUnixCredentialsMessage.html" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>
1550
+ </dt>
1551
+ <dd></dd>
1552
+ <dt>
1553
+ <a class="link" href="GUnixCredentialsMessage.html#g-unix-credentials-message-is-supported" title="g_unix_credentials_message_is_supported ()">g_unix_credentials_message_is_supported</a>, function in <a class="link" href="GUnixCredentialsMessage.html" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>
1554
+ </dt>
1555
+ <dd></dd>
1556
+ <dt>
1557
+ <a class="link" href="GUnixCredentialsMessage.html#g-unix-credentials-message-new" title="g_unix_credentials_message_new ()">g_unix_credentials_message_new</a>, function in <a class="link" href="GUnixCredentialsMessage.html" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>
1558
+ </dt>
1559
+ <dd></dd>
1560
+ <dt>
1561
+ <a class="link" href="GUnixCredentialsMessage.html#g-unix-credentials-message-new-with-credentials" title="g_unix_credentials_message_new_with_credentials ()">g_unix_credentials_message_new_with_credentials</a>, function in <a class="link" href="GUnixCredentialsMessage.html" title="GUnixCredentialsMessage">GUnixCredentialsMessage</a>
1562
+ </dt>
1563
+ <dd></dd>
1564
+ <dt>
1565
+ <a class="link" href="GUnixSocketAddress.html#g-unix-socket-address-get-address-type" title="g_unix_socket_address_get_address_type ()">g_unix_socket_address_get_address_type</a>, function in <a class="link" href="GUnixSocketAddress.html" title="GUnixSocketAddress">GUnixSocketAddress</a>
1566
+ </dt>
1567
+ <dd></dd>
1568
+ <dt>
1569
+ <a class="link" href="GUnixSocketAddress.html#g-unix-socket-address-new-with-type" title="g_unix_socket_address_new_with_type ()">g_unix_socket_address_new_with_type</a>, function in <a class="link" href="GUnixSocketAddress.html" title="GUnixSocketAddress">GUnixSocketAddress</a>
1570
+ </dt>
1571
+ <dd></dd>
1572
+ <a name="idxZ"></a><h3 class="title">Z</h3>
1573
+ <dt>
1574
+ <a class="link" href="GZlibCompressor.html#GZlibCompressor--file-info" title='The "file-info" property'>GZlibCompressor:file-info</a>, object property in <a class="link" href="GZlibCompressor.html" title="GZlibCompressor">GZlibCompressor</a>
1575
+ </dt>
1576
+ <dd></dd>
1577
+ <dt>
1578
+ <a class="link" href="GZlibDecompressor.html#GZlibDecompressor--file-info" title='The "file-info" property'>GZlibDecompressor:file-info</a>, object property in <a class="link" href="GZlibDecompressor.html" title="GZlibDecompressor">GZlibDecompressor</a>
1579
+ </dt>
1580
+ <dd></dd>
1581
+ <dt>
1582
+ <a class="link" href="GZlibCompressor.html#g-zlib-compressor-get-file-info" title="g_zlib_compressor_get_file_info ()">g_zlib_compressor_get_file_info</a>, function in <a class="link" href="GZlibCompressor.html" title="GZlibCompressor">GZlibCompressor</a>
1583
+ </dt>
1584
+ <dd></dd>
1585
+ <dt>
1586
+ <a class="link" href="GZlibCompressor.html#g-zlib-compressor-set-file-info" title="g_zlib_compressor_set_file_info ()">g_zlib_compressor_set_file_info</a>, function in <a class="link" href="GZlibCompressor.html" title="GZlibCompressor">GZlibCompressor</a>
1587
+ </dt>
1588
+ <dd></dd>
1589
+ <dt>
1590
+ <a class="link" href="GZlibDecompressor.html#g-zlib-decompressor-get-file-info" title="g_zlib_decompressor_get_file_info ()">g_zlib_decompressor_get_file_info</a>, function in <a class="link" href="GZlibDecompressor.html" title="GZlibDecompressor">GZlibDecompressor</a>
1591
+ </dt>
1592
+ <dd></dd>
1593
+ </div>
1594
+ <div class="footer">
1595
+ <hr>
1596
+ Generated by GTK-Doc V1.15.1</div>
1597
+ </body>
1598
+ </html>