@img/sharp-libvips-dev 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (656) hide show
  1. package/README.md +47 -0
  2. package/cplusplus/VConnection.cpp +151 -0
  3. package/cplusplus/VError.cpp +49 -0
  4. package/cplusplus/VImage.cpp +1548 -0
  5. package/cplusplus/VInterpolate.cpp +62 -0
  6. package/cplusplus/VRegion.cpp +27 -0
  7. package/cplusplus/index.js +1 -0
  8. package/cplusplus/vips-operators.cpp +3760 -0
  9. package/include/aom/aom.h +127 -0
  10. package/include/aom/aom_codec.h +573 -0
  11. package/include/aom/aom_decoder.h +257 -0
  12. package/include/aom/aom_encoder.h +1137 -0
  13. package/include/aom/aom_external_partition.h +452 -0
  14. package/include/aom/aom_frame_buffer.h +84 -0
  15. package/include/aom/aom_image.h +448 -0
  16. package/include/aom/aom_integer.h +68 -0
  17. package/include/aom/aomcx.h +2112 -0
  18. package/include/aom/aomdx.h +604 -0
  19. package/include/archive.h +1212 -0
  20. package/include/archive_entry.h +723 -0
  21. package/include/cairo/cairo-deprecated.h +123 -0
  22. package/include/cairo/cairo-features.h +29 -0
  23. package/include/cairo/cairo-ft.h +118 -0
  24. package/include/cairo/cairo-gobject.h +192 -0
  25. package/include/cairo/cairo-svg.h +130 -0
  26. package/include/cairo/cairo-version.h +8 -0
  27. package/include/cairo/cairo.h +3281 -0
  28. package/include/cgif.h +80 -0
  29. package/include/expat.h +1064 -0
  30. package/include/expat_config.h +140 -0
  31. package/include/expat_external.h +165 -0
  32. package/include/ffi.h +531 -0
  33. package/include/ffitarget.h +164 -0
  34. package/include/fontconfig/fcfreetype.h +59 -0
  35. package/include/fontconfig/fcprivate.h +134 -0
  36. package/include/fontconfig/fontconfig.h +1158 -0
  37. package/include/freetype2/freetype/config/ftconfig.h +51 -0
  38. package/include/freetype2/freetype/config/ftheader.h +836 -0
  39. package/include/freetype2/freetype/config/ftmodule.h +21 -0
  40. package/include/freetype2/freetype/config/ftoption.h +1014 -0
  41. package/include/freetype2/freetype/config/ftstdlib.h +185 -0
  42. package/include/freetype2/freetype/config/integer-types.h +250 -0
  43. package/include/freetype2/freetype/config/mac-support.h +49 -0
  44. package/include/freetype2/freetype/config/public-macros.h +138 -0
  45. package/include/freetype2/freetype/freetype.h +5337 -0
  46. package/include/freetype2/freetype/ftadvanc.h +188 -0
  47. package/include/freetype2/freetype/ftbbox.h +101 -0
  48. package/include/freetype2/freetype/ftbdf.h +212 -0
  49. package/include/freetype2/freetype/ftbitmap.h +329 -0
  50. package/include/freetype2/freetype/ftbzip2.h +102 -0
  51. package/include/freetype2/freetype/ftcache.h +1087 -0
  52. package/include/freetype2/freetype/ftchapters.h +168 -0
  53. package/include/freetype2/freetype/ftcid.h +167 -0
  54. package/include/freetype2/freetype/ftcolor.h +1667 -0
  55. package/include/freetype2/freetype/ftdriver.h +1246 -0
  56. package/include/freetype2/freetype/fterrdef.h +283 -0
  57. package/include/freetype2/freetype/fterrors.h +296 -0
  58. package/include/freetype2/freetype/ftfntfmt.h +93 -0
  59. package/include/freetype2/freetype/ftgasp.h +143 -0
  60. package/include/freetype2/freetype/ftglyph.h +750 -0
  61. package/include/freetype2/freetype/ftgxval.h +354 -0
  62. package/include/freetype2/freetype/ftgzip.h +151 -0
  63. package/include/freetype2/freetype/ftimage.h +1284 -0
  64. package/include/freetype2/freetype/ftincrem.h +348 -0
  65. package/include/freetype2/freetype/ftlcdfil.h +323 -0
  66. package/include/freetype2/freetype/ftlist.h +296 -0
  67. package/include/freetype2/freetype/ftlzw.h +100 -0
  68. package/include/freetype2/freetype/ftmac.h +289 -0
  69. package/include/freetype2/freetype/ftmm.h +805 -0
  70. package/include/freetype2/freetype/ftmodapi.h +807 -0
  71. package/include/freetype2/freetype/ftmoderr.h +204 -0
  72. package/include/freetype2/freetype/ftotval.h +206 -0
  73. package/include/freetype2/freetype/ftoutln.h +588 -0
  74. package/include/freetype2/freetype/ftparams.h +218 -0
  75. package/include/freetype2/freetype/ftpfr.h +179 -0
  76. package/include/freetype2/freetype/ftrender.h +244 -0
  77. package/include/freetype2/freetype/ftsizes.h +159 -0
  78. package/include/freetype2/freetype/ftsnames.h +272 -0
  79. package/include/freetype2/freetype/ftstroke.h +773 -0
  80. package/include/freetype2/freetype/ftsynth.h +104 -0
  81. package/include/freetype2/freetype/ftsystem.h +350 -0
  82. package/include/freetype2/freetype/fttrigon.h +350 -0
  83. package/include/freetype2/freetype/fttypes.h +617 -0
  84. package/include/freetype2/freetype/ftwinfnt.h +276 -0
  85. package/include/freetype2/freetype/otsvg.h +336 -0
  86. package/include/freetype2/freetype/t1tables.h +793 -0
  87. package/include/freetype2/freetype/ttnameid.h +1235 -0
  88. package/include/freetype2/freetype/tttables.h +855 -0
  89. package/include/freetype2/freetype/tttags.h +124 -0
  90. package/include/freetype2/ft2build.h +42 -0
  91. package/include/fribidi/fribidi-arabic.h +81 -0
  92. package/include/fribidi/fribidi-begindecls.h +3 -0
  93. package/include/fribidi/fribidi-bidi-types-list.h +96 -0
  94. package/include/fribidi/fribidi-bidi-types.h +405 -0
  95. package/include/fribidi/fribidi-bidi.h +142 -0
  96. package/include/fribidi/fribidi-brackets.h +89 -0
  97. package/include/fribidi/fribidi-char-sets-list.h +54 -0
  98. package/include/fribidi/fribidi-char-sets.h +106 -0
  99. package/include/fribidi/fribidi-common.h +152 -0
  100. package/include/fribidi/fribidi-config.h +23 -0
  101. package/include/fribidi/fribidi-deprecated.h +175 -0
  102. package/include/fribidi/fribidi-enddecls.h +3 -0
  103. package/include/fribidi/fribidi-flags.h +72 -0
  104. package/include/fribidi/fribidi-joining-types-list.h +44 -0
  105. package/include/fribidi/fribidi-joining-types.h +249 -0
  106. package/include/fribidi/fribidi-joining.h +74 -0
  107. package/include/fribidi/fribidi-mirroring.h +86 -0
  108. package/include/fribidi/fribidi-shape.h +71 -0
  109. package/include/fribidi/fribidi-types.h +79 -0
  110. package/include/fribidi/fribidi-unicode-version.h +10 -0
  111. package/include/fribidi/fribidi-unicode.h +105 -0
  112. package/include/fribidi/fribidi.h +129 -0
  113. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h +221 -0
  114. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h +37 -0
  115. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h +525 -0
  116. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h +40 -0
  117. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h +115 -0
  118. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h +481 -0
  119. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h +113 -0
  120. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h +718 -0
  121. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-marshal.h +33 -0
  122. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h +70 -0
  123. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h +168 -0
  124. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h +46 -0
  125. package/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixdata.h +165 -0
  126. package/include/gio-unix-2.0/gio/gdesktopappinfo.h +200 -0
  127. package/include/gio-unix-2.0/gio/gfiledescriptorbased.h +67 -0
  128. package/include/gio-unix-2.0/gio/gunixfdmessage.h +86 -0
  129. package/include/gio-unix-2.0/gio/gunixinputstream.h +85 -0
  130. package/include/gio-unix-2.0/gio/gunixmounts.h +172 -0
  131. package/include/gio-unix-2.0/gio/gunixoutputstream.h +84 -0
  132. package/include/glib-2.0/gio/gaction.h +100 -0
  133. package/include/glib-2.0/gio/gactiongroup.h +163 -0
  134. package/include/glib-2.0/gio/gactiongroupexporter.h +47 -0
  135. package/include/glib-2.0/gio/gactionmap.h +101 -0
  136. package/include/glib-2.0/gio/gappinfo.h +369 -0
  137. package/include/glib-2.0/gio/gapplication.h +257 -0
  138. package/include/glib-2.0/gio/gapplicationcommandline.h +124 -0
  139. package/include/glib-2.0/gio/gasyncinitable.h +132 -0
  140. package/include/glib-2.0/gio/gasyncresult.h +87 -0
  141. package/include/glib-2.0/gio/gbufferedinputstream.h +135 -0
  142. package/include/glib-2.0/gio/gbufferedoutputstream.h +88 -0
  143. package/include/glib-2.0/gio/gbytesicon.h +54 -0
  144. package/include/glib-2.0/gio/gcancellable.h +120 -0
  145. package/include/glib-2.0/gio/gcharsetconverter.h +65 -0
  146. package/include/glib-2.0/gio/gcontenttype.h +84 -0
  147. package/include/glib-2.0/gio/gconverter.h +98 -0
  148. package/include/glib-2.0/gio/gconverterinputstream.h +82 -0
  149. package/include/glib-2.0/gio/gconverteroutputstream.h +82 -0
  150. package/include/glib-2.0/gio/gcredentials.h +87 -0
  151. package/include/glib-2.0/gio/gdatagrambased.h +146 -0
  152. package/include/glib-2.0/gio/gdatainputstream.h +182 -0
  153. package/include/glib-2.0/gio/gdataoutputstream.h +127 -0
  154. package/include/glib-2.0/gio/gdbusactiongroup.h +56 -0
  155. package/include/glib-2.0/gio/gdbusaddress.h +67 -0
  156. package/include/glib-2.0/gio/gdbusauthobserver.h +53 -0
  157. package/include/glib-2.0/gio/gdbusconnection.h +691 -0
  158. package/include/glib-2.0/gio/gdbuserror.h +111 -0
  159. package/include/glib-2.0/gio/gdbusinterface.h +83 -0
  160. package/include/glib-2.0/gio/gdbusinterfaceskeleton.h +129 -0
  161. package/include/glib-2.0/gio/gdbusintrospection.h +327 -0
  162. package/include/glib-2.0/gio/gdbusmenumodel.h +47 -0
  163. package/include/glib-2.0/gio/gdbusmessage.h +204 -0
  164. package/include/glib-2.0/gio/gdbusmethodinvocation.h +136 -0
  165. package/include/glib-2.0/gio/gdbusnameowning.h +117 -0
  166. package/include/glib-2.0/gio/gdbusnamewatching.h +104 -0
  167. package/include/glib-2.0/gio/gdbusobject.h +80 -0
  168. package/include/glib-2.0/gio/gdbusobjectmanager.h +96 -0
  169. package/include/glib-2.0/gio/gdbusobjectmanagerclient.h +148 -0
  170. package/include/glib-2.0/gio/gdbusobjectmanagerserver.h +95 -0
  171. package/include/glib-2.0/gio/gdbusobjectproxy.h +81 -0
  172. package/include/glib-2.0/gio/gdbusobjectskeleton.h +98 -0
  173. package/include/glib-2.0/gio/gdbusproxy.h +220 -0
  174. package/include/glib-2.0/gio/gdbusserver.h +62 -0
  175. package/include/glib-2.0/gio/gdbusutils.h +65 -0
  176. package/include/glib-2.0/gio/gdebugcontroller.h +81 -0
  177. package/include/glib-2.0/gio/gdebugcontrollerdbus.h +71 -0
  178. package/include/glib-2.0/gio/gdrive.h +274 -0
  179. package/include/glib-2.0/gio/gdtlsclientconnection.h +77 -0
  180. package/include/glib-2.0/gio/gdtlsconnection.h +230 -0
  181. package/include/glib-2.0/gio/gdtlsserverconnection.h +71 -0
  182. package/include/glib-2.0/gio/gemblem.h +63 -0
  183. package/include/glib-2.0/gio/gemblemedicon.h +83 -0
  184. package/include/glib-2.0/gio/gfile.h +1359 -0
  185. package/include/glib-2.0/gio/gfileattribute.h +86 -0
  186. package/include/glib-2.0/gio/gfileenumerator.h +154 -0
  187. package/include/glib-2.0/gio/gfileicon.h +59 -0
  188. package/include/glib-2.0/gio/gfileinfo.h +1546 -0
  189. package/include/glib-2.0/gio/gfileinputstream.h +116 -0
  190. package/include/glib-2.0/gio/gfileiostream.h +123 -0
  191. package/include/glib-2.0/gio/gfilemonitor.h +100 -0
  192. package/include/glib-2.0/gio/gfilenamecompleter.h +81 -0
  193. package/include/glib-2.0/gio/gfileoutputstream.h +124 -0
  194. package/include/glib-2.0/gio/gfilterinputstream.h +80 -0
  195. package/include/glib-2.0/gio/gfilteroutputstream.h +80 -0
  196. package/include/glib-2.0/gio/gicon.h +133 -0
  197. package/include/glib-2.0/gio/ginetaddress.h +125 -0
  198. package/include/glib-2.0/gio/ginetaddressmask.h +86 -0
  199. package/include/glib-2.0/gio/ginetsocketaddress.h +80 -0
  200. package/include/glib-2.0/gio/ginitable.h +107 -0
  201. package/include/glib-2.0/gio/ginputstream.h +218 -0
  202. package/include/glib-2.0/gio/gio-autocleanups.h +155 -0
  203. package/include/glib-2.0/gio/gio-visibility.h +952 -0
  204. package/include/glib-2.0/gio/gio.h +186 -0
  205. package/include/glib-2.0/gio/gioenums.h +2149 -0
  206. package/include/glib-2.0/gio/gioenumtypes.h +207 -0
  207. package/include/glib-2.0/gio/gioerror.h +58 -0
  208. package/include/glib-2.0/gio/giomodule.h +199 -0
  209. package/include/glib-2.0/gio/gioscheduler.h +56 -0
  210. package/include/glib-2.0/gio/giostream.h +137 -0
  211. package/include/glib-2.0/gio/giotypes.h +660 -0
  212. package/include/glib-2.0/gio/glistmodel.h +74 -0
  213. package/include/glib-2.0/gio/gliststore.h +97 -0
  214. package/include/glib-2.0/gio/gloadableicon.h +101 -0
  215. package/include/glib-2.0/gio/gmemoryinputstream.h +92 -0
  216. package/include/glib-2.0/gio/gmemorymonitor.h +64 -0
  217. package/include/glib-2.0/gio/gmemoryoutputstream.h +109 -0
  218. package/include/glib-2.0/gio/gmenu.h +184 -0
  219. package/include/glib-2.0/gio/gmenuexporter.h +55 -0
  220. package/include/glib-2.0/gio/gmenumodel.h +307 -0
  221. package/include/glib-2.0/gio/gmount.h +278 -0
  222. package/include/glib-2.0/gio/gmountoperation.h +179 -0
  223. package/include/glib-2.0/gio/gnativesocketaddress.h +67 -0
  224. package/include/glib-2.0/gio/gnativevolumemonitor.h +63 -0
  225. package/include/glib-2.0/gio/gnetworkaddress.h +82 -0
  226. package/include/glib-2.0/gio/gnetworking.h +81 -0
  227. package/include/glib-2.0/gio/gnetworkmonitor.h +101 -0
  228. package/include/glib-2.0/gio/gnetworkservice.h +77 -0
  229. package/include/glib-2.0/gio/gnotification.h +103 -0
  230. package/include/glib-2.0/gio/goutputstream.h +334 -0
  231. package/include/glib-2.0/gio/gpermission.h +129 -0
  232. package/include/glib-2.0/gio/gpollableinputstream.h +106 -0
  233. package/include/glib-2.0/gio/gpollableoutputstream.h +127 -0
  234. package/include/glib-2.0/gio/gpollableutils.h +66 -0
  235. package/include/glib-2.0/gio/gpowerprofilemonitor.h +65 -0
  236. package/include/glib-2.0/gio/gpropertyaction.h +49 -0
  237. package/include/glib-2.0/gio/gproxy.h +130 -0
  238. package/include/glib-2.0/gio/gproxyaddress.h +88 -0
  239. package/include/glib-2.0/gio/gproxyaddressenumerator.h +83 -0
  240. package/include/glib-2.0/gio/gproxyresolver.h +97 -0
  241. package/include/glib-2.0/gio/gremoteactiongroup.h +77 -0
  242. package/include/glib-2.0/gio/gresolver.h +299 -0
  243. package/include/glib-2.0/gio/gresource.h +132 -0
  244. package/include/glib-2.0/gio/gseekable.h +105 -0
  245. package/include/glib-2.0/gio/gsettings.h +347 -0
  246. package/include/glib-2.0/gio/gsettingsbackend.h +176 -0
  247. package/include/glib-2.0/gio/gsettingsschema.h +115 -0
  248. package/include/glib-2.0/gio/gsimpleaction.h +65 -0
  249. package/include/glib-2.0/gio/gsimpleactiongroup.h +99 -0
  250. package/include/glib-2.0/gio/gsimpleasyncresult.h +164 -0
  251. package/include/glib-2.0/gio/gsimpleiostream.h +47 -0
  252. package/include/glib-2.0/gio/gsimplepermission.h +47 -0
  253. package/include/glib-2.0/gio/gsimpleproxyresolver.h +91 -0
  254. package/include/glib-2.0/gio/gsocket.h +330 -0
  255. package/include/glib-2.0/gio/gsocketaddress.h +84 -0
  256. package/include/glib-2.0/gio/gsocketaddressenumerator.h +103 -0
  257. package/include/glib-2.0/gio/gsocketclient.h +199 -0
  258. package/include/glib-2.0/gio/gsocketconnectable.h +83 -0
  259. package/include/glib-2.0/gio/gsocketconnection.h +117 -0
  260. package/include/glib-2.0/gio/gsocketcontrolmessage.h +113 -0
  261. package/include/glib-2.0/gio/gsocketlistener.h +157 -0
  262. package/include/glib-2.0/gio/gsocketservice.h +95 -0
  263. package/include/glib-2.0/gio/gsrvtarget.h +60 -0
  264. package/include/glib-2.0/gio/gsubprocess.h +169 -0
  265. package/include/glib-2.0/gio/gsubprocesslauncher.h +121 -0
  266. package/include/glib-2.0/gio/gtask.h +207 -0
  267. package/include/glib-2.0/gio/gtcpconnection.h +71 -0
  268. package/include/glib-2.0/gio/gtcpwrapperconnection.h +71 -0
  269. package/include/glib-2.0/gio/gtestdbus.h +74 -0
  270. package/include/glib-2.0/gio/gthemedicon.h +70 -0
  271. package/include/glib-2.0/gio/gthreadedsocketservice.h +83 -0
  272. package/include/glib-2.0/gio/gtlsbackend.h +115 -0
  273. package/include/glib-2.0/gio/gtlscertificate.h +125 -0
  274. package/include/glib-2.0/gio/gtlsclientconnection.h +88 -0
  275. package/include/glib-2.0/gio/gtlsconnection.h +214 -0
  276. package/include/glib-2.0/gio/gtlsdatabase.h +249 -0
  277. package/include/glib-2.0/gio/gtlsfiledatabase.h +60 -0
  278. package/include/glib-2.0/gio/gtlsinteraction.h +150 -0
  279. package/include/glib-2.0/gio/gtlspassword.h +121 -0
  280. package/include/glib-2.0/gio/gtlsserverconnection.h +71 -0
  281. package/include/glib-2.0/gio/gunixconnection.h +102 -0
  282. package/include/glib-2.0/gio/gunixcredentialsmessage.h +89 -0
  283. package/include/glib-2.0/gio/gunixfdlist.h +97 -0
  284. package/include/glib-2.0/gio/gunixsocketaddress.h +83 -0
  285. package/include/glib-2.0/gio/gvfs.h +170 -0
  286. package/include/glib-2.0/gio/gvolume.h +255 -0
  287. package/include/glib-2.0/gio/gvolumemonitor.h +156 -0
  288. package/include/glib-2.0/gio/gzlibcompressor.h +64 -0
  289. package/include/glib-2.0/gio/gzlibdecompressor.h +60 -0
  290. package/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
  291. package/include/glib-2.0/glib/deprecated/gcache.h +77 -0
  292. package/include/glib-2.0/glib/deprecated/gcompletion.h +85 -0
  293. package/include/glib-2.0/glib/deprecated/gmain.h +137 -0
  294. package/include/glib-2.0/glib/deprecated/grel.h +107 -0
  295. package/include/glib-2.0/glib/deprecated/gthread.h +295 -0
  296. package/include/glib-2.0/glib/galloca.h +147 -0
  297. package/include/glib-2.0/glib/garray.h +323 -0
  298. package/include/glib-2.0/glib/gasyncqueue.h +126 -0
  299. package/include/glib-2.0/glib/gatomic.h +587 -0
  300. package/include/glib-2.0/glib/gbacktrace.h +74 -0
  301. package/include/glib-2.0/glib/gbase64.h +63 -0
  302. package/include/glib-2.0/glib/gbitlock.h +78 -0
  303. package/include/glib-2.0/glib/gbookmarkfile.h +300 -0
  304. package/include/glib-2.0/glib/gbytes.h +99 -0
  305. package/include/glib-2.0/glib/gcharset.h +49 -0
  306. package/include/glib-2.0/glib/gchecksum.h +106 -0
  307. package/include/glib-2.0/glib/gconvert.h +179 -0
  308. package/include/glib-2.0/glib/gdataset.h +156 -0
  309. package/include/glib-2.0/glib/gdate.h +309 -0
  310. package/include/glib-2.0/glib/gdatetime.h +275 -0
  311. package/include/glib-2.0/glib/gdir.h +54 -0
  312. package/include/glib-2.0/glib/genviron.h +65 -0
  313. package/include/glib-2.0/glib/gerror.h +263 -0
  314. package/include/glib-2.0/glib/gfileutils.h +223 -0
  315. package/include/glib-2.0/glib/ggettext.h +65 -0
  316. package/include/glib-2.0/glib/ghash.h +206 -0
  317. package/include/glib-2.0/glib/ghmac.h +85 -0
  318. package/include/glib-2.0/glib/ghook.h +204 -0
  319. package/include/glib-2.0/glib/ghostutils.h +45 -0
  320. package/include/glib-2.0/glib/gi18n-lib.h +38 -0
  321. package/include/glib-2.0/glib/gi18n.h +34 -0
  322. package/include/glib-2.0/glib/giochannel.h +407 -0
  323. package/include/glib-2.0/glib/gkeyfile.h +332 -0
  324. package/include/glib-2.0/glib/glib-autocleanups.h +105 -0
  325. package/include/glib-2.0/glib/glib-typeof.h +47 -0
  326. package/include/glib-2.0/glib/glib-visibility.h +952 -0
  327. package/include/glib-2.0/glib/glist.h +179 -0
  328. package/include/glib-2.0/glib/gmacros.h +1425 -0
  329. package/include/glib-2.0/glib/gmain.h +862 -0
  330. package/include/glib-2.0/glib/gmappedfile.h +60 -0
  331. package/include/glib-2.0/glib/gmarkup.h +265 -0
  332. package/include/glib-2.0/glib/gmem.h +425 -0
  333. package/include/glib-2.0/glib/gmessages.h +690 -0
  334. package/include/glib-2.0/glib/gnode.h +309 -0
  335. package/include/glib-2.0/glib/goption.h +409 -0
  336. package/include/glib-2.0/glib/gpathbuf.h +90 -0
  337. package/include/glib-2.0/glib/gpattern.h +65 -0
  338. package/include/glib-2.0/glib/gpoll.h +122 -0
  339. package/include/glib-2.0/glib/gprimes.h +52 -0
  340. package/include/glib-2.0/glib/gprintf.h +59 -0
  341. package/include/glib-2.0/glib/gqsort.h +47 -0
  342. package/include/glib-2.0/glib/gquark.h +70 -0
  343. package/include/glib-2.0/glib/gqueue.h +205 -0
  344. package/include/glib-2.0/glib/grand.h +101 -0
  345. package/include/glib-2.0/glib/grcbox.h +91 -0
  346. package/include/glib-2.0/glib/grefcount.h +179 -0
  347. package/include/glib-2.0/glib/grefstring.h +59 -0
  348. package/include/glib-2.0/glib/gscanner.h +301 -0
  349. package/include/glib-2.0/glib/gsequence.h +175 -0
  350. package/include/glib-2.0/glib/gshell.h +59 -0
  351. package/include/glib-2.0/glib/gslice.h +117 -0
  352. package/include/glib-2.0/glib/gslist.h +166 -0
  353. package/include/glib-2.0/glib/gspawn.h +323 -0
  354. package/include/glib-2.0/glib/gstdio.h +231 -0
  355. package/include/glib-2.0/glib/gstrfuncs.h +504 -0
  356. package/include/glib-2.0/glib/gstring.h +296 -0
  357. package/include/glib-2.0/glib/gstringchunk.h +59 -0
  358. package/include/glib-2.0/glib/gstrvbuilder.h +69 -0
  359. package/include/glib-2.0/glib/gtestutils.h +763 -0
  360. package/include/glib-2.0/glib/gthread.h +603 -0
  361. package/include/glib-2.0/glib/gthreadpool.h +105 -0
  362. package/include/glib-2.0/glib/gtimer.h +80 -0
  363. package/include/glib-2.0/glib/gtimezone.h +98 -0
  364. package/include/glib-2.0/glib/gtrashstack.h +60 -0
  365. package/include/glib-2.0/glib/gtree.h +181 -0
  366. package/include/glib-2.0/glib/gtypes.h +591 -0
  367. package/include/glib-2.0/glib/gunicode.h +974 -0
  368. package/include/glib-2.0/glib/guri.h +420 -0
  369. package/include/glib-2.0/glib/gutils.h +479 -0
  370. package/include/glib-2.0/glib/guuid.h +42 -0
  371. package/include/glib-2.0/glib/gvariant.h +541 -0
  372. package/include/glib-2.0/glib/gvarianttype.h +384 -0
  373. package/include/glib-2.0/glib/gversion.h +57 -0
  374. package/include/glib-2.0/glib/gversionmacros.h +490 -0
  375. package/include/glib-2.0/glib/gwin32.h +142 -0
  376. package/include/glib-2.0/glib-object.h +46 -0
  377. package/include/glib-2.0/glib-unix.h +125 -0
  378. package/include/glib-2.0/glib.h +121 -0
  379. package/include/glib-2.0/gmodule/gmodule-visibility.h +952 -0
  380. package/include/glib-2.0/gmodule.h +147 -0
  381. package/include/glib-2.0/gobject/gbinding.h +156 -0
  382. package/include/glib-2.0/gobject/gbindinggroup.h +85 -0
  383. package/include/glib-2.0/gobject/gboxed.h +124 -0
  384. package/include/glib-2.0/gobject/gclosure.h +323 -0
  385. package/include/glib-2.0/gobject/genums.h +381 -0
  386. package/include/glib-2.0/gobject/glib-enumtypes.h +25 -0
  387. package/include/glib-2.0/gobject/glib-types.h +400 -0
  388. package/include/glib-2.0/gobject/gmarshal.h +434 -0
  389. package/include/glib-2.0/gobject/gobject-autocleanups.h +33 -0
  390. package/include/glib-2.0/gobject/gobject-visibility.h +952 -0
  391. package/include/glib-2.0/gobject/gobject.h +953 -0
  392. package/include/glib-2.0/gobject/gobjectnotifyqueue.c +199 -0
  393. package/include/glib-2.0/gobject/gparam.h +476 -0
  394. package/include/glib-2.0/gobject/gparamspecs.h +1151 -0
  395. package/include/glib-2.0/gobject/gsignal.h +647 -0
  396. package/include/glib-2.0/gobject/gsignalgroup.h +98 -0
  397. package/include/glib-2.0/gobject/gsourceclosure.h +40 -0
  398. package/include/glib-2.0/gobject/gtype.h +2703 -0
  399. package/include/glib-2.0/gobject/gtypemodule.h +302 -0
  400. package/include/glib-2.0/gobject/gtypeplugin.h +136 -0
  401. package/include/glib-2.0/gobject/gvalue.h +212 -0
  402. package/include/glib-2.0/gobject/gvaluearray.h +106 -0
  403. package/include/glib-2.0/gobject/gvaluecollector.h +290 -0
  404. package/include/glib-2.0/gobject/gvaluetypes.h +318 -0
  405. package/include/harfbuzz/hb-aat-layout.h +795 -0
  406. package/include/harfbuzz/hb-aat.h +38 -0
  407. package/include/harfbuzz/hb-blob.h +160 -0
  408. package/include/harfbuzz/hb-buffer.h +799 -0
  409. package/include/harfbuzz/hb-common.h +938 -0
  410. package/include/harfbuzz/hb-cplusplus.hh +223 -0
  411. package/include/harfbuzz/hb-deprecated.h +309 -0
  412. package/include/harfbuzz/hb-draw.h +340 -0
  413. package/include/harfbuzz/hb-face.h +187 -0
  414. package/include/harfbuzz/hb-features.h +119 -0
  415. package/include/harfbuzz/hb-font.h +1153 -0
  416. package/include/harfbuzz/hb-ft.h +145 -0
  417. package/include/harfbuzz/hb-glib.h +56 -0
  418. package/include/harfbuzz/hb-map.h +143 -0
  419. package/include/harfbuzz/hb-ot-color.h +155 -0
  420. package/include/harfbuzz/hb-ot-deprecated.h +147 -0
  421. package/include/harfbuzz/hb-ot-font.h +45 -0
  422. package/include/harfbuzz/hb-ot-layout.h +549 -0
  423. package/include/harfbuzz/hb-ot-math.h +333 -0
  424. package/include/harfbuzz/hb-ot-meta.h +72 -0
  425. package/include/harfbuzz/hb-ot-metrics.h +129 -0
  426. package/include/harfbuzz/hb-ot-name.h +164 -0
  427. package/include/harfbuzz/hb-ot-shape.h +53 -0
  428. package/include/harfbuzz/hb-ot-var.h +191 -0
  429. package/include/harfbuzz/hb-ot.h +49 -0
  430. package/include/harfbuzz/hb-paint.h +1029 -0
  431. package/include/harfbuzz/hb-set.h +203 -0
  432. package/include/harfbuzz/hb-shape-plan.h +122 -0
  433. package/include/harfbuzz/hb-shape.h +74 -0
  434. package/include/harfbuzz/hb-style.h +81 -0
  435. package/include/harfbuzz/hb-subset-repacker.h +81 -0
  436. package/include/harfbuzz/hb-subset.h +241 -0
  437. package/include/harfbuzz/hb-unicode.h +643 -0
  438. package/include/harfbuzz/hb-version.h +95 -0
  439. package/include/harfbuzz/hb.h +51 -0
  440. package/include/index.js +1 -0
  441. package/include/jconfig.h +37 -0
  442. package/include/jerror.h +335 -0
  443. package/include/jmorecfg.h +382 -0
  444. package/include/jpeglib.h +1210 -0
  445. package/include/lcms2.h +1958 -0
  446. package/include/lcms2_plugin.h +700 -0
  447. package/include/libexif/_stdint.h +2 -0
  448. package/include/libexif/exif-byte-order.h +48 -0
  449. package/include/libexif/exif-content.h +181 -0
  450. package/include/libexif/exif-data-type.h +46 -0
  451. package/include/libexif/exif-data.h +267 -0
  452. package/include/libexif/exif-entry.h +186 -0
  453. package/include/libexif/exif-format.h +65 -0
  454. package/include/libexif/exif-ifd.h +51 -0
  455. package/include/libexif/exif-loader.h +128 -0
  456. package/include/libexif/exif-log.h +116 -0
  457. package/include/libexif/exif-mem.h +91 -0
  458. package/include/libexif/exif-mnote-data.h +122 -0
  459. package/include/libexif/exif-tag.h +307 -0
  460. package/include/libexif/exif-utils.h +194 -0
  461. package/include/libheif/heif.h +2092 -0
  462. package/include/libheif/heif_cxx.h +1359 -0
  463. package/include/libheif/heif_plugin.h +306 -0
  464. package/include/libheif/heif_version.h +38 -0
  465. package/include/libimagequant.h +111 -0
  466. package/include/libpng16/png.h +3247 -0
  467. package/include/libpng16/pngconf.h +623 -0
  468. package/include/libpng16/pnglibconf.h +219 -0
  469. package/include/librsvg-2.0/librsvg/rsvg-cairo.h +395 -0
  470. package/include/librsvg-2.0/librsvg/rsvg-features.h +184 -0
  471. package/include/librsvg-2.0/librsvg/rsvg-version.h +13 -0
  472. package/include/librsvg-2.0/librsvg/rsvg.h +1456 -0
  473. package/include/libxml2/libxml/HTMLparser.h +320 -0
  474. package/include/libxml2/libxml/HTMLtree.h +147 -0
  475. package/include/libxml2/libxml/SAX.h +204 -0
  476. package/include/libxml2/libxml/SAX2.h +173 -0
  477. package/include/libxml2/libxml/c14n.h +128 -0
  478. package/include/libxml2/libxml/catalog.h +182 -0
  479. package/include/libxml2/libxml/chvalid.h +230 -0
  480. package/include/libxml2/libxml/debugXML.h +217 -0
  481. package/include/libxml2/libxml/dict.h +81 -0
  482. package/include/libxml2/libxml/encoding.h +233 -0
  483. package/include/libxml2/libxml/entities.h +151 -0
  484. package/include/libxml2/libxml/globals.h +529 -0
  485. package/include/libxml2/libxml/hash.h +236 -0
  486. package/include/libxml2/libxml/list.h +137 -0
  487. package/include/libxml2/libxml/nanoftp.h +186 -0
  488. package/include/libxml2/libxml/nanohttp.h +81 -0
  489. package/include/libxml2/libxml/parser.h +1265 -0
  490. package/include/libxml2/libxml/parserInternals.h +662 -0
  491. package/include/libxml2/libxml/pattern.h +100 -0
  492. package/include/libxml2/libxml/relaxng.h +218 -0
  493. package/include/libxml2/libxml/schemasInternals.h +958 -0
  494. package/include/libxml2/libxml/schematron.h +142 -0
  495. package/include/libxml2/libxml/threads.h +94 -0
  496. package/include/libxml2/libxml/tree.h +1314 -0
  497. package/include/libxml2/libxml/uri.h +94 -0
  498. package/include/libxml2/libxml/valid.h +448 -0
  499. package/include/libxml2/libxml/xinclude.h +129 -0
  500. package/include/libxml2/libxml/xlink.h +189 -0
  501. package/include/libxml2/libxml/xmlIO.h +369 -0
  502. package/include/libxml2/libxml/xmlautomata.h +146 -0
  503. package/include/libxml2/libxml/xmlerror.h +919 -0
  504. package/include/libxml2/libxml/xmlexports.h +50 -0
  505. package/include/libxml2/libxml/xmlmemory.h +228 -0
  506. package/include/libxml2/libxml/xmlmodule.h +57 -0
  507. package/include/libxml2/libxml/xmlreader.h +428 -0
  508. package/include/libxml2/libxml/xmlregexp.h +222 -0
  509. package/include/libxml2/libxml/xmlsave.h +88 -0
  510. package/include/libxml2/libxml/xmlschemas.h +246 -0
  511. package/include/libxml2/libxml/xmlschemastypes.h +152 -0
  512. package/include/libxml2/libxml/xmlstring.h +140 -0
  513. package/include/libxml2/libxml/xmlunicode.h +202 -0
  514. package/include/libxml2/libxml/xmlversion.h +526 -0
  515. package/include/libxml2/libxml/xmlwriter.h +488 -0
  516. package/include/libxml2/libxml/xpath.h +575 -0
  517. package/include/libxml2/libxml/xpathInternals.h +632 -0
  518. package/include/libxml2/libxml/xpointer.h +137 -0
  519. package/include/orc-0.4/orc/orc-stdint.h +1 -0
  520. package/include/orc-0.4/orc/orc.h +16 -0
  521. package/include/orc-0.4/orc/orcarm.h +879 -0
  522. package/include/orc-0.4/orc/orcbytecode.h +35 -0
  523. package/include/orc-0.4/orc/orcbytecodes.h +255 -0
  524. package/include/orc-0.4/orc/orccode.h +53 -0
  525. package/include/orc-0.4/orc/orccompiler.h +176 -0
  526. package/include/orc-0.4/orc/orcconstant.h +39 -0
  527. package/include/orc-0.4/orc/orccpu.h +21 -0
  528. package/include/orc-0.4/orc/orccpuinsn.h +40 -0
  529. package/include/orc-0.4/orc/orcdebug.h +158 -0
  530. package/include/orc-0.4/orc/orcemulateopcodes.h +203 -0
  531. package/include/orc-0.4/orc/orcexecutor.h +135 -0
  532. package/include/orc-0.4/orc/orcfunctions.h +93 -0
  533. package/include/orc-0.4/orc/orcinstruction.h +39 -0
  534. package/include/orc-0.4/orc/orcinternal.h +46 -0
  535. package/include/orc-0.4/orc/orclimits.h +94 -0
  536. package/include/orc-0.4/orc/orcmips.h +229 -0
  537. package/include/orc-0.4/orc/orcmmx.h +79 -0
  538. package/include/orc-0.4/orc/orcneon.h +43 -0
  539. package/include/orc-0.4/orc/orconce.h +166 -0
  540. package/include/orc-0.4/orc/orcopcode.h +63 -0
  541. package/include/orc-0.4/orc/orcparse.h +27 -0
  542. package/include/orc-0.4/orc/orcpowerpc.h +209 -0
  543. package/include/orc-0.4/orc/orcprogram.h +192 -0
  544. package/include/orc-0.4/orc/orcrule.h +52 -0
  545. package/include/orc-0.4/orc/orcsse.h +55 -0
  546. package/include/orc-0.4/orc/orctarget.h +115 -0
  547. package/include/orc-0.4/orc/orcutils.h +238 -0
  548. package/include/orc-0.4/orc/orcvariable.h +81 -0
  549. package/include/orc-0.4/orc/orcx86.h +199 -0
  550. package/include/orc-0.4/orc/orcx86insn.h +672 -0
  551. package/include/pango-1.0/pango/pango-attributes.h +748 -0
  552. package/include/pango-1.0/pango/pango-bidi-type.h +117 -0
  553. package/include/pango-1.0/pango/pango-break.h +144 -0
  554. package/include/pango-1.0/pango/pango-color.h +75 -0
  555. package/include/pango-1.0/pango/pango-context.h +116 -0
  556. package/include/pango-1.0/pango/pango-coverage.h +108 -0
  557. package/include/pango-1.0/pango/pango-direction.h +72 -0
  558. package/include/pango-1.0/pango/pango-engine.h +457 -0
  559. package/include/pango-1.0/pango/pango-enum-types.h +120 -0
  560. package/include/pango-1.0/pango/pango-features.h +10 -0
  561. package/include/pango-1.0/pango/pango-font.h +699 -0
  562. package/include/pango-1.0/pango/pango-fontmap.h +132 -0
  563. package/include/pango-1.0/pango/pango-fontset-simple.h +64 -0
  564. package/include/pango-1.0/pango/pango-fontset.h +134 -0
  565. package/include/pango-1.0/pango/pango-glyph-item.h +175 -0
  566. package/include/pango-1.0/pango/pango-glyph.h +270 -0
  567. package/include/pango-1.0/pango/pango-gravity.h +137 -0
  568. package/include/pango-1.0/pango/pango-item.h +165 -0
  569. package/include/pango-1.0/pango/pango-language.h +70 -0
  570. package/include/pango-1.0/pango/pango-layout.h +554 -0
  571. package/include/pango-1.0/pango/pango-markup.h +52 -0
  572. package/include/pango-1.0/pango/pango-matrix.h +130 -0
  573. package/include/pango-1.0/pango/pango-modules.h +84 -0
  574. package/include/pango-1.0/pango/pango-ot.h +427 -0
  575. package/include/pango-1.0/pango/pango-renderer.h +290 -0
  576. package/include/pango-1.0/pango/pango-script.h +335 -0
  577. package/include/pango-1.0/pango/pango-tabs.h +117 -0
  578. package/include/pango-1.0/pango/pango-types.h +244 -0
  579. package/include/pango-1.0/pango/pango-utils.h +187 -0
  580. package/include/pango-1.0/pango/pango-version-macros.h +756 -0
  581. package/include/pango-1.0/pango/pango.h +54 -0
  582. package/include/pango-1.0/pango/pangocairo.h +220 -0
  583. package/include/pango-1.0/pango/pangofc-decoder.h +122 -0
  584. package/include/pango-1.0/pango/pangofc-font.h +120 -0
  585. package/include/pango-1.0/pango/pangofc-fontmap.h +244 -0
  586. package/include/pango-1.0/pango/pangoft2.h +158 -0
  587. package/include/pixman-1/pixman-version.h +54 -0
  588. package/include/pixman-1/pixman.h +1419 -0
  589. package/include/png.h +3247 -0
  590. package/include/pngconf.h +623 -0
  591. package/include/pnglibconf.h +219 -0
  592. package/include/spng.h +537 -0
  593. package/include/tiff.h +899 -0
  594. package/include/tiffconf.h +145 -0
  595. package/include/tiffio.h +653 -0
  596. package/include/tiffvers.h +36 -0
  597. package/include/vips/VConnection8.h +150 -0
  598. package/include/vips/VError8.h +76 -0
  599. package/include/vips/VImage8.h +6065 -0
  600. package/include/vips/VInterpolate8.h +77 -0
  601. package/include/vips/VRegion8.h +155 -0
  602. package/include/vips/arithmetic.h +571 -0
  603. package/include/vips/basic.h +113 -0
  604. package/include/vips/buf.h +118 -0
  605. package/include/vips/colour.h +306 -0
  606. package/include/vips/connection.h +570 -0
  607. package/include/vips/conversion.h +357 -0
  608. package/include/vips/convolution.h +95 -0
  609. package/include/vips/create.h +161 -0
  610. package/include/vips/dbuf.h +103 -0
  611. package/include/vips/debug.h +74 -0
  612. package/include/vips/draw.h +113 -0
  613. package/include/vips/enumtypes.h +181 -0
  614. package/include/vips/error.h +142 -0
  615. package/include/vips/foreign.h +993 -0
  616. package/include/vips/format.h +135 -0
  617. package/include/vips/freqfilt.h +64 -0
  618. package/include/vips/gate.h +82 -0
  619. package/include/vips/generate.h +92 -0
  620. package/include/vips/header.h +312 -0
  621. package/include/vips/histogram.h +85 -0
  622. package/include/vips/image.h +605 -0
  623. package/include/vips/interpolate.h +141 -0
  624. package/include/vips/memory.h +96 -0
  625. package/include/vips/morphology.h +73 -0
  626. package/include/vips/mosaicing.h +80 -0
  627. package/include/vips/object.h +706 -0
  628. package/include/vips/operation.h +182 -0
  629. package/include/vips/private.h +227 -0
  630. package/include/vips/rect.h +80 -0
  631. package/include/vips/region.h +238 -0
  632. package/include/vips/resample.h +123 -0
  633. package/include/vips/sbuf.h +144 -0
  634. package/include/vips/semaphore.h +77 -0
  635. package/include/vips/thread.h +72 -0
  636. package/include/vips/threadpool.h +160 -0
  637. package/include/vips/transform.h +89 -0
  638. package/include/vips/type.h +305 -0
  639. package/include/vips/util.h +406 -0
  640. package/include/vips/vector.h +183 -0
  641. package/include/vips/version.h +26 -0
  642. package/include/vips/vips.h +194 -0
  643. package/include/vips/vips8 +60 -0
  644. package/include/webp/decode.h +504 -0
  645. package/include/webp/demux.h +363 -0
  646. package/include/webp/encode.h +552 -0
  647. package/include/webp/mux.h +530 -0
  648. package/include/webp/mux_types.h +98 -0
  649. package/include/webp/sharpyuv/sharpyuv.h +103 -0
  650. package/include/webp/sharpyuv/sharpyuv_csp.h +60 -0
  651. package/include/webp/types.h +72 -0
  652. package/include/zconf.h +203 -0
  653. package/include/zlib.h +1855 -0
  654. package/include/zlib_name_mangling.h +8 -0
  655. package/package.json +30 -0
  656. package/versions.json +31 -0
@@ -0,0 +1,1546 @@
1
+ /* GIO - GLib Input, Output and Streaming Library
2
+ *
3
+ * Copyright (C) 2006-2007 Red Hat, Inc.
4
+ *
5
+ * SPDX-License-Identifier: LGPL-2.1-or-later
6
+ *
7
+ * This library is free software; you can redistribute it and/or
8
+ * modify it under the terms of the GNU Lesser General Public
9
+ * License as published by the Free Software Foundation; either
10
+ * version 2.1 of the License, or (at your option) any later version.
11
+ *
12
+ * This library is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
+ * Lesser General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU Lesser General
18
+ * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19
+ *
20
+ * Author: Alexander Larsson <alexl@redhat.com>
21
+ */
22
+
23
+ #ifndef __G_FILE_INFO_H__
24
+ #define __G_FILE_INFO_H__
25
+
26
+ #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27
+ #error "Only <gio/gio.h> can be included directly."
28
+ #endif
29
+
30
+ #include <gio/giotypes.h>
31
+
32
+ G_BEGIN_DECLS
33
+
34
+ #define G_TYPE_FILE_INFO (g_file_info_get_type ())
35
+ #define G_FILE_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_INFO, GFileInfo))
36
+ #define G_FILE_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_INFO, GFileInfoClass))
37
+ #define G_IS_FILE_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_INFO))
38
+ #define G_IS_FILE_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_INFO))
39
+ #define G_FILE_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_INFO, GFileInfoClass))
40
+
41
+ /**
42
+ * GFileInfo:
43
+ *
44
+ * Stores information about a file system object referenced by a #GFile.
45
+ **/
46
+ typedef struct _GFileInfoClass GFileInfoClass;
47
+
48
+
49
+ /* Common Attributes: */
50
+ /**
51
+ * G_FILE_ATTRIBUTE_STANDARD_TYPE:
52
+ *
53
+ * A key in the "standard" namespace for storing file types.
54
+ *
55
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
56
+ *
57
+ * The value for this key should contain a #GFileType.
58
+ **/
59
+ #define G_FILE_ATTRIBUTE_STANDARD_TYPE "standard::type" /* uint32 (GFileType) */
60
+
61
+ /**
62
+ * G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN:
63
+ *
64
+ * A key in the "standard" namespace for checking if a file is hidden.
65
+ *
66
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
67
+ **/
68
+ #define G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN "standard::is-hidden" /* boolean */
69
+
70
+ /**
71
+ * G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP:
72
+ *
73
+ * A key in the "standard" namespace for checking if a file is a backup file.
74
+ *
75
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
76
+ **/
77
+ #define G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP "standard::is-backup" /* boolean */
78
+
79
+ /**
80
+ * G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK:
81
+ *
82
+ * A key in the "standard" namespace for checking if the file is a symlink.
83
+ * Typically the actual type is something else, if we followed the symlink
84
+ * to get the type.
85
+ *
86
+ * On Windows NTFS mountpoints are considered to be symlinks as well.
87
+ *
88
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
89
+ **/
90
+ #define G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK "standard::is-symlink" /* boolean */
91
+
92
+ /**
93
+ * G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL:
94
+ *
95
+ * A key in the "standard" namespace for checking if a file is virtual.
96
+ *
97
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
98
+ **/
99
+ #define G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL "standard::is-virtual" /* boolean */
100
+
101
+ /**
102
+ * G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE:
103
+ *
104
+ * A key in the "standard" namespace for checking if a file is
105
+ * volatile. This is meant for opaque, non-POSIX-like backends to
106
+ * indicate that the URI is not persistent. Applications should look
107
+ * at %G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET for the persistent URI.
108
+ *
109
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
110
+ *
111
+ * Since: 2.46
112
+ **/
113
+ #define G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE "standard::is-volatile" /* boolean */
114
+
115
+ /**
116
+ * G_FILE_ATTRIBUTE_STANDARD_NAME:
117
+ *
118
+ * A key in the "standard" namespace for getting the name of the file.
119
+ *
120
+ * The name is the on-disk filename which may not be in any known encoding,
121
+ * and can thus not be generally displayed as is. It is guaranteed to be set on
122
+ * every file.
123
+ *
124
+ * Use %G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME if you need to display the
125
+ * name in a user interface.
126
+ *
127
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
128
+ **/
129
+ #define G_FILE_ATTRIBUTE_STANDARD_NAME "standard::name" /* byte string */
130
+
131
+ /**
132
+ * G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME:
133
+ *
134
+ * A key in the "standard" namespace for getting the display name of the file.
135
+ *
136
+ * A display name is guaranteed to be in UTF-8 and can thus be displayed in
137
+ * the UI. It is guaranteed to be set on every file.
138
+ *
139
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
140
+ **/
141
+ #define G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME "standard::display-name" /* string */
142
+
143
+ /**
144
+ * G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME:
145
+ *
146
+ * A key in the "standard" namespace for edit name of the file.
147
+ *
148
+ * An edit name is similar to the display name, but it is meant to be
149
+ * used when you want to rename the file in the UI. The display name
150
+ * might contain information you don't want in the new filename (such as
151
+ * "(invalid unicode)" if the filename was in an invalid encoding).
152
+ *
153
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
154
+ **/
155
+ #define G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME "standard::edit-name" /* string */
156
+
157
+ /**
158
+ * G_FILE_ATTRIBUTE_STANDARD_COPY_NAME:
159
+ *
160
+ * A key in the "standard" namespace for getting the copy name of the file.
161
+ *
162
+ * The copy name is an optional version of the name. If available it's always
163
+ * in UTF8, and corresponds directly to the original filename (only transcoded to
164
+ * UTF8). This is useful if you want to copy the file to another filesystem that
165
+ * might have a different encoding. If the filename is not a valid string in the
166
+ * encoding selected for the filesystem it is in then the copy name will not be set.
167
+ *
168
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
169
+ **/
170
+ #define G_FILE_ATTRIBUTE_STANDARD_COPY_NAME "standard::copy-name" /* string */
171
+
172
+ /**
173
+ * G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION:
174
+ *
175
+ * A key in the "standard" namespace for getting the description of the file.
176
+ *
177
+ * The description is a utf8 string that describes the file, generally containing
178
+ * the filename, but can also contain further information. Example descriptions
179
+ * could be "filename (on hostname)" for a remote file or "filename (in trash)"
180
+ * for a file in the trash. This is useful for instance as the window title
181
+ * when displaying a directory or for a bookmarks menu.
182
+ *
183
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
184
+ **/
185
+ #define G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION "standard::description" /* string */
186
+
187
+ /**
188
+ * G_FILE_ATTRIBUTE_STANDARD_ICON:
189
+ *
190
+ * A key in the "standard" namespace for getting the icon for the file.
191
+ *
192
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT.
193
+ *
194
+ * The value for this key should contain a #GIcon.
195
+ **/
196
+ #define G_FILE_ATTRIBUTE_STANDARD_ICON "standard::icon" /* object (GIcon) */
197
+
198
+ /**
199
+ * G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON:
200
+ *
201
+ * A key in the "standard" namespace for getting the symbolic icon for the file.
202
+ *
203
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT.
204
+ *
205
+ * The value for this key should contain a #GIcon.
206
+ *
207
+ * Since: 2.34
208
+ **/
209
+ #define G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON "standard::symbolic-icon" /* object (GIcon) */
210
+
211
+ /**
212
+ * G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE:
213
+ *
214
+ * A key in the "standard" namespace for getting the content type of the file.
215
+ *
216
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
217
+ *
218
+ * The value for this key should contain a valid content type.
219
+ **/
220
+ #define G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE "standard::content-type" /* string */
221
+
222
+ /**
223
+ * G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE:
224
+ *
225
+ * A key in the "standard" namespace for getting the fast content type.
226
+ *
227
+ * The fast content type isn't as reliable as the regular one, as it
228
+ * only uses the filename to guess it, but it is faster to calculate than the
229
+ * regular content type.
230
+ *
231
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
232
+ *
233
+ **/
234
+ #define G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE "standard::fast-content-type" /* string */
235
+
236
+ /**
237
+ * G_FILE_ATTRIBUTE_STANDARD_SIZE:
238
+ *
239
+ * A key in the "standard" namespace for getting the file's size (in bytes).
240
+ *
241
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
242
+ **/
243
+ #define G_FILE_ATTRIBUTE_STANDARD_SIZE "standard::size" /* uint64 */
244
+
245
+ /**
246
+ * G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE:
247
+ *
248
+ * A key in the "standard" namespace for getting the amount of disk space
249
+ * that is consumed by the file (in bytes).
250
+ *
251
+ * This will generally be larger than the file size (due to block size
252
+ * overhead) but can occasionally be smaller (for example, for sparse files).
253
+ *
254
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
255
+ *
256
+ * Since: 2.20
257
+ **/
258
+ #define G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE "standard::allocated-size" /* uint64 */
259
+
260
+ /**
261
+ * G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET:
262
+ *
263
+ * A key in the "standard" namespace for getting the symlink target, if the file
264
+ * is a symlink.
265
+ *
266
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
267
+ **/
268
+ #define G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET "standard::symlink-target" /* byte string */
269
+
270
+ /**
271
+ * G_FILE_ATTRIBUTE_STANDARD_TARGET_URI:
272
+ *
273
+ * A key in the "standard" namespace for getting the target URI for the file, in
274
+ * the case of %G_FILE_TYPE_SHORTCUT or %G_FILE_TYPE_MOUNTABLE files.
275
+ *
276
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
277
+ **/
278
+ #define G_FILE_ATTRIBUTE_STANDARD_TARGET_URI "standard::target-uri" /* string */
279
+
280
+ /**
281
+ * G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER:
282
+ *
283
+ * A key in the "standard" namespace for setting the sort order of a file.
284
+ *
285
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_INT32.
286
+ *
287
+ * An example use would be in file managers, which would use this key
288
+ * to set the order files are displayed. Files with smaller sort order
289
+ * should be sorted first, and files without sort order as if sort order
290
+ * was zero.
291
+ **/
292
+ #define G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER "standard::sort-order" /* int32 */
293
+
294
+ /* Entity tags, used to avoid missing updates on save */
295
+
296
+ /**
297
+ * G_FILE_ATTRIBUTE_ETAG_VALUE:
298
+ *
299
+ * A key in the "etag" namespace for getting the value of the file's
300
+ * entity tag.
301
+ *
302
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
303
+ **/
304
+ #define G_FILE_ATTRIBUTE_ETAG_VALUE "etag::value" /* string */
305
+
306
+ /* File identifier, for e.g. avoiding loops when doing recursive
307
+ * directory scanning
308
+ */
309
+
310
+ /**
311
+ * G_FILE_ATTRIBUTE_ID_FILE:
312
+ *
313
+ * A key in the "id" namespace for getting a file identifier.
314
+ *
315
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
316
+ *
317
+ * An example use would be during listing files, to avoid recursive
318
+ * directory scanning.
319
+ **/
320
+ #define G_FILE_ATTRIBUTE_ID_FILE "id::file" /* string */
321
+
322
+ /**
323
+ * G_FILE_ATTRIBUTE_ID_FILESYSTEM:
324
+ *
325
+ * A key in the "id" namespace for getting the file system identifier.
326
+ *
327
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
328
+ *
329
+ * An example use would be during drag and drop to see if the source
330
+ * and target are on the same filesystem (default to move) or not (default
331
+ * to copy).
332
+ **/
333
+ #define G_FILE_ATTRIBUTE_ID_FILESYSTEM "id::filesystem" /* string */
334
+
335
+ /* Calculated Access Rights for current user */
336
+
337
+ /**
338
+ * G_FILE_ATTRIBUTE_ACCESS_CAN_READ:
339
+ *
340
+ * A key in the "access" namespace for getting read privileges.
341
+ *
342
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
343
+ *
344
+ * This attribute will be %TRUE if the user is able to read the file.
345
+ **/
346
+ #define G_FILE_ATTRIBUTE_ACCESS_CAN_READ "access::can-read" /* boolean */
347
+
348
+ /**
349
+ * G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE:
350
+ *
351
+ * A key in the "access" namespace for getting write privileges.
352
+ *
353
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
354
+ *
355
+ * This attribute will be %TRUE if the user is able to write to the file.
356
+ **/
357
+ #define G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE "access::can-write" /* boolean */
358
+
359
+ /**
360
+ * G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE:
361
+ *
362
+ * A key in the "access" namespace for getting execution privileges.
363
+ *
364
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
365
+ *
366
+ * This attribute will be %TRUE if the user is able to execute the file.
367
+ **/
368
+ #define G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE "access::can-execute" /* boolean */
369
+
370
+ /**
371
+ * G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE:
372
+ *
373
+ * A key in the "access" namespace for checking deletion privileges.
374
+ *
375
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
376
+ *
377
+ * This attribute will be %TRUE if the user is able to delete the file.
378
+ **/
379
+ #define G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE "access::can-delete" /* boolean */
380
+
381
+ /**
382
+ * G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH:
383
+ *
384
+ * A key in the "access" namespace for checking trashing privileges.
385
+ *
386
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
387
+ *
388
+ * This attribute will be %TRUE if the user is able to move the file to
389
+ * the trash.
390
+ **/
391
+ #define G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH "access::can-trash" /* boolean */
392
+
393
+ /**
394
+ * G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME:
395
+ *
396
+ * A key in the "access" namespace for checking renaming privileges.
397
+ *
398
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
399
+ *
400
+ * This attribute will be %TRUE if the user is able to rename the file.
401
+ **/
402
+ #define G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME "access::can-rename" /* boolean */
403
+
404
+ /* TODO: Should we have special version for directories? can_enumerate, etc */
405
+
406
+ /* Mountable attributes */
407
+
408
+ /**
409
+ * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT:
410
+ *
411
+ * A key in the "mountable" namespace for checking if a file (of
412
+ * type G_FILE_TYPE_MOUNTABLE) is mountable.
413
+ *
414
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
415
+ **/
416
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT "mountable::can-mount" /* boolean */
417
+
418
+ /**
419
+ * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT:
420
+ *
421
+ * A key in the "mountable" namespace for checking if a file (of
422
+ * type G_FILE_TYPE_MOUNTABLE) is unmountable.
423
+ *
424
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
425
+ **/
426
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT "mountable::can-unmount" /* boolean */
427
+
428
+ /**
429
+ * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT:
430
+ *
431
+ * A key in the "mountable" namespace for checking if a file (of
432
+ * type G_FILE_TYPE_MOUNTABLE) can be ejected.
433
+ *
434
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
435
+ **/
436
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT "mountable::can-eject" /* boolean */
437
+
438
+ /**
439
+ * G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE:
440
+ *
441
+ * A key in the "mountable" namespace for getting the unix device.
442
+ *
443
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
444
+ **/
445
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE "mountable::unix-device" /* uint32 */
446
+
447
+ /**
448
+ * G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE:
449
+ *
450
+ * A key in the "mountable" namespace for getting the unix device file.
451
+ *
452
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
453
+ *
454
+ * Since: 2.22
455
+ **/
456
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE "mountable::unix-device-file" /* string */
457
+
458
+ /**
459
+ * G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI:
460
+ *
461
+ * A key in the "mountable" namespace for getting the HAL UDI for the mountable
462
+ * file.
463
+ *
464
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
465
+ **/
466
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI "mountable::hal-udi" /* string */
467
+
468
+ /**
469
+ * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START:
470
+ *
471
+ * A key in the "mountable" namespace for checking if a file (of
472
+ * type G_FILE_TYPE_MOUNTABLE) can be started.
473
+ *
474
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
475
+ *
476
+ * Since: 2.22
477
+ */
478
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START "mountable::can-start" /* boolean */
479
+
480
+ /**
481
+ * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED:
482
+ *
483
+ * A key in the "mountable" namespace for checking if a file (of
484
+ * type G_FILE_TYPE_MOUNTABLE) can be started degraded.
485
+ *
486
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
487
+ *
488
+ * Since: 2.22
489
+ */
490
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED "mountable::can-start-degraded" /* boolean */
491
+
492
+ /**
493
+ * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP:
494
+ *
495
+ * A key in the "mountable" namespace for checking if a file (of
496
+ * type G_FILE_TYPE_MOUNTABLE) can be stopped.
497
+ *
498
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
499
+ *
500
+ * Since: 2.22
501
+ */
502
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP "mountable::can-stop" /* boolean */
503
+
504
+ /**
505
+ * G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE:
506
+ *
507
+ * A key in the "mountable" namespace for getting the #GDriveStartStopType.
508
+ *
509
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
510
+ *
511
+ * Since: 2.22
512
+ */
513
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE "mountable::start-stop-type" /* uint32 (GDriveStartStopType) */
514
+
515
+ /**
516
+ * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL:
517
+ *
518
+ * A key in the "mountable" namespace for checking if a file (of
519
+ * type G_FILE_TYPE_MOUNTABLE) can be polled.
520
+ *
521
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
522
+ *
523
+ * Since: 2.22
524
+ */
525
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL "mountable::can-poll" /* boolean */
526
+
527
+ /**
528
+ * G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC:
529
+ *
530
+ * A key in the "mountable" namespace for checking if a file (of
531
+ * type G_FILE_TYPE_MOUNTABLE) is automatically polled for media.
532
+ *
533
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
534
+ *
535
+ * Since: 2.22
536
+ */
537
+ #define G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC "mountable::is-media-check-automatic" /* boolean */
538
+
539
+ /* Time attributes */
540
+
541
+ /**
542
+ * G_FILE_ATTRIBUTE_TIME_MODIFIED:
543
+ *
544
+ * A key in the "time" namespace for getting the time the file was last
545
+ * modified.
546
+ *
547
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64, and
548
+ * contains the time since the file was modified, in seconds since the UNIX
549
+ * epoch.
550
+ **/
551
+ #define G_FILE_ATTRIBUTE_TIME_MODIFIED "time::modified" /* uint64 */
552
+
553
+ /**
554
+ * G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC:
555
+ *
556
+ * A key in the "time" namespace for getting the microseconds of the time
557
+ * the file was last modified.
558
+ *
559
+ * This should be used in conjunction with %G_FILE_ATTRIBUTE_TIME_MODIFIED.
560
+ *
561
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
562
+ **/
563
+ #define G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC "time::modified-usec" /* uint32 */
564
+
565
+ /**
566
+ * G_FILE_ATTRIBUTE_TIME_MODIFIED_NSEC:
567
+ *
568
+ * A key in the "time" namespace for getting the nanoseconds of the time
569
+ * the file was last modified. This should be used in conjunction with
570
+ * #G_FILE_ATTRIBUTE_TIME_MODIFIED. Corresponding #GFileAttributeType is
571
+ * %G_FILE_ATTRIBUTE_TYPE_UINT32.
572
+ *
573
+ * Since: 2.74
574
+ **/
575
+ #define G_FILE_ATTRIBUTE_TIME_MODIFIED_NSEC "time::modified-nsec" /* uint32 */
576
+
577
+ /**
578
+ * G_FILE_ATTRIBUTE_TIME_ACCESS:
579
+ *
580
+ * A key in the "time" namespace for getting the time the file was last
581
+ * accessed.
582
+ *
583
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64, and
584
+ * contains the time since the file was last accessed, in seconds since the
585
+ * UNIX epoch.
586
+ **/
587
+ #define G_FILE_ATTRIBUTE_TIME_ACCESS "time::access" /* uint64 */
588
+
589
+ /**
590
+ * G_FILE_ATTRIBUTE_TIME_ACCESS_USEC:
591
+ *
592
+ * A key in the "time" namespace for getting the microseconds of the time
593
+ * the file was last accessed.
594
+ *
595
+ * This should be used in conjunction with %G_FILE_ATTRIBUTE_TIME_ACCESS.
596
+ *
597
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
598
+ **/
599
+ #define G_FILE_ATTRIBUTE_TIME_ACCESS_USEC "time::access-usec" /* uint32 */
600
+
601
+ /**
602
+ * G_FILE_ATTRIBUTE_TIME_ACCESS_NSEC:
603
+ *
604
+ * A key in the "time" namespace for getting the nanoseconds of the time
605
+ * the file was last accessed. This should be used in conjunction with
606
+ * #G_FILE_ATTRIBUTE_TIME_ACCESS. Corresponding #GFileAttributeType is
607
+ * %G_FILE_ATTRIBUTE_TYPE_UINT32.
608
+ *
609
+ * Since: 2.74
610
+ **/
611
+ #define G_FILE_ATTRIBUTE_TIME_ACCESS_NSEC "time::access-nsec" /* uint32 */
612
+
613
+ /**
614
+ * G_FILE_ATTRIBUTE_TIME_CHANGED:
615
+ *
616
+ * A key in the "time" namespace for getting the time the file was last
617
+ * changed.
618
+ *
619
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64,
620
+ * and contains the time since the file was last changed, in seconds since
621
+ * the UNIX epoch.
622
+ *
623
+ * This corresponds to the traditional UNIX ctime.
624
+ **/
625
+ #define G_FILE_ATTRIBUTE_TIME_CHANGED "time::changed" /* uint64 */
626
+
627
+ /**
628
+ * G_FILE_ATTRIBUTE_TIME_CHANGED_USEC:
629
+ *
630
+ * A key in the "time" namespace for getting the microseconds of the time
631
+ * the file was last changed.
632
+ *
633
+ * This should be used in conjunction with %G_FILE_ATTRIBUTE_TIME_CHANGED.
634
+ *
635
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
636
+ **/
637
+ #define G_FILE_ATTRIBUTE_TIME_CHANGED_USEC "time::changed-usec" /* uint32 */
638
+
639
+ /**
640
+ * G_FILE_ATTRIBUTE_TIME_CHANGED_NSEC:
641
+ *
642
+ * A key in the "time" namespace for getting the nanoseconds of the time
643
+ * the file was last changed. This should be used in conjunction with
644
+ * #G_FILE_ATTRIBUTE_TIME_CHANGED. Corresponding #GFileAttributeType is
645
+ * %G_FILE_ATTRIBUTE_TYPE_UINT32.
646
+ *
647
+ * Since: 2.74
648
+ **/
649
+ #define G_FILE_ATTRIBUTE_TIME_CHANGED_NSEC "time::changed-nsec" /* uint32 */
650
+
651
+ /**
652
+ * G_FILE_ATTRIBUTE_TIME_CREATED:
653
+ *
654
+ * A key in the "time" namespace for getting the time the file was created.
655
+ *
656
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64,
657
+ * and contains the time since the file was created, in seconds since the UNIX
658
+ * epoch.
659
+ *
660
+ * This may correspond to Linux `stx_btime`, FreeBSD `st_birthtim`, NetBSD
661
+ * `st_birthtime` or NTFS `ctime`.
662
+ **/
663
+ #define G_FILE_ATTRIBUTE_TIME_CREATED "time::created" /* uint64 */
664
+
665
+ /**
666
+ * G_FILE_ATTRIBUTE_TIME_CREATED_USEC:
667
+ *
668
+ * A key in the "time" namespace for getting the microseconds of the time
669
+ * the file was created.
670
+ *
671
+ * This should be used in conjunction with %G_FILE_ATTRIBUTE_TIME_CREATED.
672
+ *
673
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
674
+ **/
675
+ #define G_FILE_ATTRIBUTE_TIME_CREATED_USEC "time::created-usec" /* uint32 */
676
+
677
+ /**
678
+ * G_FILE_ATTRIBUTE_TIME_CREATED_NSEC:
679
+ *
680
+ * A key in the "time" namespace for getting the nanoseconds of the time
681
+ * the file was created. This should be used in conjunction with
682
+ * #G_FILE_ATTRIBUTE_TIME_CREATED. Corresponding #GFileAttributeType is
683
+ * %G_FILE_ATTRIBUTE_TYPE_UINT32.
684
+ *
685
+ * Since: 2.74
686
+ **/
687
+ #define G_FILE_ATTRIBUTE_TIME_CREATED_NSEC "time::created-nsec" /* uint32 */
688
+
689
+ /* Unix specific attributes */
690
+
691
+ /**
692
+ * G_FILE_ATTRIBUTE_UNIX_DEVICE:
693
+ *
694
+ * A key in the "unix" namespace for getting the device id of the device the
695
+ * file is located on (see stat() documentation).
696
+ *
697
+ * This attribute is only available for UNIX file systems.
698
+ *
699
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
700
+ **/
701
+ #define G_FILE_ATTRIBUTE_UNIX_DEVICE "unix::device" /* uint32 */
702
+
703
+ /**
704
+ * G_FILE_ATTRIBUTE_UNIX_INODE:
705
+ *
706
+ * A key in the "unix" namespace for getting the inode of the file.
707
+ *
708
+ * This attribute is only available for UNIX file systems.
709
+ *
710
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
711
+ **/
712
+ #define G_FILE_ATTRIBUTE_UNIX_INODE "unix::inode" /* uint64 */
713
+
714
+ /**
715
+ * G_FILE_ATTRIBUTE_UNIX_MODE:
716
+ *
717
+ * A key in the "unix" namespace for getting the mode of the file
718
+ * (e.g. whether the file is a regular file, symlink, etc).
719
+ *
720
+ * See the documentation for `lstat()`: this attribute is equivalent to
721
+ * the `st_mode` member of `struct stat`, and includes both the file type
722
+ * and permissions.
723
+ *
724
+ * This attribute is only available for UNIX file systems.
725
+ *
726
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
727
+ **/
728
+ #define G_FILE_ATTRIBUTE_UNIX_MODE "unix::mode" /* uint32 */
729
+
730
+ /**
731
+ * G_FILE_ATTRIBUTE_UNIX_NLINK:
732
+ *
733
+ * A key in the "unix" namespace for getting the number of hard links
734
+ * for a file.
735
+ *
736
+ * See the documentation for `lstat()`.
737
+ *
738
+ * This attribute is only available for UNIX file systems.
739
+ *
740
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
741
+ **/
742
+ #define G_FILE_ATTRIBUTE_UNIX_NLINK "unix::nlink" /* uint32 */
743
+
744
+ /**
745
+ * G_FILE_ATTRIBUTE_UNIX_UID:
746
+ *
747
+ * A key in the "unix" namespace for getting the user ID for the file.
748
+ *
749
+ * This attribute is only available for UNIX file systems.
750
+ *
751
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
752
+ **/
753
+ #define G_FILE_ATTRIBUTE_UNIX_UID "unix::uid" /* uint32 */
754
+
755
+ /**
756
+ * G_FILE_ATTRIBUTE_UNIX_GID:
757
+ *
758
+ * A key in the "unix" namespace for getting the group ID for the file.
759
+ *
760
+ * This attribute is only available for UNIX file systems.
761
+ *
762
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
763
+ **/
764
+ #define G_FILE_ATTRIBUTE_UNIX_GID "unix::gid" /* uint32 */
765
+
766
+ /**
767
+ * G_FILE_ATTRIBUTE_UNIX_RDEV:
768
+ *
769
+ * A key in the "unix" namespace for getting the device ID for the file
770
+ * (if it is a special file).
771
+ *
772
+ * See the documentation for `lstat()`.
773
+ *
774
+ * This attribute is only available for UNIX file systems.
775
+ *
776
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
777
+ **/
778
+ #define G_FILE_ATTRIBUTE_UNIX_RDEV "unix::rdev" /* uint32 */
779
+
780
+ /**
781
+ * G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE:
782
+ *
783
+ * A key in the "unix" namespace for getting the block size for the file
784
+ * system.
785
+ *
786
+ * This attribute is only available for UNIX file systems.
787
+ *
788
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
789
+ **/
790
+ #define G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE "unix::block-size" /* uint32 */
791
+
792
+ /**
793
+ * G_FILE_ATTRIBUTE_UNIX_BLOCKS:
794
+ *
795
+ * A key in the "unix" namespace for getting the number of blocks allocated
796
+ * for the file.
797
+ *
798
+ * This attribute is only available for UNIX file systems.
799
+ *
800
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
801
+ **/
802
+ #define G_FILE_ATTRIBUTE_UNIX_BLOCKS "unix::blocks" /* uint64 */
803
+
804
+ /**
805
+ * G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT:
806
+ *
807
+ * A key in the "unix" namespace for checking if the file represents a
808
+ * UNIX mount point.
809
+ *
810
+ * This attribute is %TRUE if the file is a UNIX mount point.
811
+ *
812
+ * Since 2.58, `/` is considered to be a mount point.
813
+ *
814
+ * This attribute is only available for UNIX file systems.
815
+ *
816
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
817
+ **/
818
+ #define G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT "unix::is-mountpoint" /* boolean */
819
+
820
+ /* DOS specific attributes */
821
+
822
+ /**
823
+ * G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE:
824
+ *
825
+ * A key in the "dos" namespace for checking if the file's archive flag
826
+ * is set.
827
+ *
828
+ * This attribute is %TRUE if the archive flag is set.
829
+ *
830
+ * This attribute is only available for DOS file systems.
831
+ *
832
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
833
+ **/
834
+ #define G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE "dos::is-archive" /* boolean */
835
+
836
+ /**
837
+ * G_FILE_ATTRIBUTE_DOS_IS_SYSTEM:
838
+ *
839
+ * A key in the "dos" namespace for checking if the file's backup flag
840
+ * is set.
841
+ *
842
+ * This attribute is %TRUE if the backup flag is set.
843
+ *
844
+ * This attribute is only available for DOS file systems.
845
+ *
846
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
847
+ **/
848
+ #define G_FILE_ATTRIBUTE_DOS_IS_SYSTEM "dos::is-system" /* boolean */
849
+
850
+ /**
851
+ * G_FILE_ATTRIBUTE_DOS_IS_MOUNTPOINT:
852
+ *
853
+ * A key in the "dos" namespace for checking if the file is a NTFS mount point
854
+ * (a volume mount or a junction point).
855
+ *
856
+ * This attribute is %TRUE if file is a reparse point of type
857
+ * [IO_REPARSE_TAG_MOUNT_POINT](https://msdn.microsoft.com/en-us/library/dd541667.aspx).
858
+ *
859
+ * This attribute is only available for DOS file systems.
860
+ *
861
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
862
+ *
863
+ * Since: 2.60
864
+ **/
865
+ #define G_FILE_ATTRIBUTE_DOS_IS_MOUNTPOINT "dos::is-mountpoint" /* boolean */
866
+
867
+ /**
868
+ * G_FILE_ATTRIBUTE_DOS_REPARSE_POINT_TAG:
869
+ *
870
+ * A key in the "dos" namespace for getting the file NTFS reparse tag.
871
+ *
872
+ * This value is 0 for files that are not reparse points.
873
+ *
874
+ * See the [Reparse Tags](https://msdn.microsoft.com/en-us/library/dd541667.aspx)
875
+ * page for possible reparse tag values.
876
+ *
877
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
878
+ *
879
+ * Since: 2.60
880
+ **/
881
+ #define G_FILE_ATTRIBUTE_DOS_REPARSE_POINT_TAG "dos::reparse-point-tag" /* uint32 */
882
+
883
+ /* Owner attributes */
884
+
885
+ /**
886
+ * G_FILE_ATTRIBUTE_OWNER_USER:
887
+ *
888
+ * A key in the "owner" namespace for getting the user name of the
889
+ * file's owner.
890
+ *
891
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
892
+ **/
893
+ #define G_FILE_ATTRIBUTE_OWNER_USER "owner::user" /* string */
894
+
895
+ /**
896
+ * G_FILE_ATTRIBUTE_OWNER_USER_REAL:
897
+ *
898
+ * A key in the "owner" namespace for getting the real name of the
899
+ * user that owns the file.
900
+ *
901
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
902
+ **/
903
+ #define G_FILE_ATTRIBUTE_OWNER_USER_REAL "owner::user-real" /* string */
904
+
905
+ /**
906
+ * G_FILE_ATTRIBUTE_OWNER_GROUP:
907
+ *
908
+ * A key in the "owner" namespace for getting the file owner's group.
909
+ *
910
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
911
+ **/
912
+ #define G_FILE_ATTRIBUTE_OWNER_GROUP "owner::group" /* string */
913
+
914
+ /* Thumbnails */
915
+
916
+ /**
917
+ * G_FILE_ATTRIBUTE_THUMBNAIL_PATH:
918
+ *
919
+ * A key in the "thumbnail" namespace for getting the path to the thumbnail
920
+ * image with the biggest size available.
921
+ *
922
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
923
+ **/
924
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_PATH "thumbnail::path" /* bytestring */
925
+ /**
926
+ * G_FILE_ATTRIBUTE_THUMBNAILING_FAILED:
927
+ *
928
+ * A key in the "thumbnail" namespace for checking if thumbnailing failed.
929
+ *
930
+ * This attribute is %TRUE if thumbnailing failed.
931
+ *
932
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
933
+ **/
934
+ #define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED "thumbnail::failed" /* boolean */
935
+ /**
936
+ * G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID:
937
+ *
938
+ * A key in the "thumbnail" namespace for checking whether the thumbnail is outdated.
939
+ *
940
+ * This attribute is %TRUE if the thumbnail is up-to-date with the file it represents,
941
+ * and %FALSE if the file has been modified since the thumbnail was generated.
942
+ *
943
+ * If %G_FILE_ATTRIBUTE_THUMBNAILING_FAILED is %TRUE and this attribute is %FALSE,
944
+ * it indicates that thumbnailing may be attempted again and may succeed.
945
+ *
946
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
947
+ *
948
+ * Since: 2.40
949
+ */
950
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID "thumbnail::is-valid" /* boolean */
951
+
952
+ /**
953
+ * G_FILE_ATTRIBUTE_THUMBNAIL_PATH_NORMAL:
954
+ *
955
+ * A key in the "thumbnail" namespace for getting the path to the normal
956
+ * thumbnail image.
957
+ *
958
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
959
+ *
960
+ * Since: 2.76
961
+ */
962
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_PATH_NORMAL "thumbnail::path-normal" /* bytestring */
963
+ /**
964
+ * G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_NORMAL:
965
+ *
966
+ * A key in the "thumbnail" namespace for checking if thumbnailing failed
967
+ * for the normal image.
968
+ *
969
+ * This attribute is %TRUE if thumbnailing failed.
970
+ *
971
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
972
+ *
973
+ * Since: 2.76
974
+ */
975
+ #define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_NORMAL "thumbnail::failed-normal" /* boolean */
976
+ /**
977
+ * G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_NORMAL:
978
+ *
979
+ * A key in the "thumbnail" namespace for checking whether the normal
980
+ * thumbnail is outdated.
981
+ *
982
+ * This attribute is %TRUE if the normal thumbnail is up-to-date with the file
983
+ * it represents, and %FALSE if the file has been modified since the thumbnail
984
+ * was generated.
985
+ *
986
+ * If %G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_NORMAL is %TRUE and this attribute
987
+ * is %FALSE, it indicates that thumbnailing may be attempted again and may
988
+ * succeed.
989
+ *
990
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
991
+ *
992
+ * Since: 2.76
993
+ */
994
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_NORMAL "thumbnail::is-valid-normal" /* boolean */
995
+
996
+ /**
997
+ * G_FILE_ATTRIBUTE_THUMBNAIL_PATH_LARGE:
998
+ *
999
+ * A key in the "thumbnail" namespace for getting the path to the large
1000
+ * thumbnail image.
1001
+ *
1002
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
1003
+ *
1004
+ * Since: 2.76
1005
+ */
1006
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_PATH_LARGE "thumbnail::path-large" /* bytestring */
1007
+ /**
1008
+ * G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_LARGE:
1009
+ *
1010
+ * A key in the "thumbnail" namespace for checking if thumbnailing failed
1011
+ * for the large image.
1012
+ *
1013
+ * This attribute is %TRUE if thumbnailing failed.
1014
+ *
1015
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1016
+ *
1017
+ * Since: 2.76
1018
+ */
1019
+ #define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_LARGE "thumbnail::failed-large" /* boolean */
1020
+ /**
1021
+ * G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_LARGE:
1022
+ *
1023
+ * A key in the "thumbnail" namespace for checking whether the large
1024
+ * thumbnail is outdated.
1025
+ *
1026
+ * This attribute is %TRUE if the large thumbnail is up-to-date with the file
1027
+ * it represents, and %FALSE if the file has been modified since the thumbnail
1028
+ * was generated.
1029
+ *
1030
+ * If %G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_LARGE is %TRUE and this attribute
1031
+ * is %FALSE, it indicates that thumbnailing may be attempted again and may
1032
+ * succeed.
1033
+ *
1034
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1035
+ *
1036
+ * Since: 2.76
1037
+ */
1038
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_LARGE "thumbnail::is-valid-large" /* boolean */
1039
+
1040
+ /**
1041
+ * G_FILE_ATTRIBUTE_THUMBNAIL_PATH_XLARGE:
1042
+ *
1043
+ * A key in the "thumbnail" namespace for getting the path to the x-large
1044
+ * thumbnail image.
1045
+ *
1046
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
1047
+ *
1048
+ * Since: 2.76
1049
+ */
1050
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_PATH_XLARGE "thumbnail::path-xlarge" /* bytestring */
1051
+ /**
1052
+ * G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_XLARGE:
1053
+ *
1054
+ * A key in the "thumbnail" namespace for checking if thumbnailing failed
1055
+ * for the x-large image.
1056
+ *
1057
+ * This attribute is %TRUE if thumbnailing failed.
1058
+ *
1059
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1060
+ *
1061
+ * Since: 2.76
1062
+ */
1063
+ #define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_XLARGE "thumbnail::failed-xlarge" /* boolean */
1064
+ /**
1065
+ * G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_XLARGE:
1066
+ *
1067
+ * A key in the "thumbnail" namespace for checking whether the x-large
1068
+ * thumbnail is outdated.
1069
+ *
1070
+ * This attribute is %TRUE if the x-large thumbnail is up-to-date with the file
1071
+ * it represents, and %FALSE if the file has been modified since the thumbnail
1072
+ * was generated.
1073
+ *
1074
+ * If %G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_XLARGE is %TRUE and this attribute
1075
+ * is %FALSE, it indicates that thumbnailing may be attempted again and may
1076
+ * succeed.
1077
+ *
1078
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1079
+ *
1080
+ * Since: 2.76
1081
+ */
1082
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_XLARGE "thumbnail::is-valid-xlarge" /* boolean */
1083
+
1084
+ /**
1085
+ * G_FILE_ATTRIBUTE_THUMBNAIL_PATH_XXLARGE:
1086
+ *
1087
+ * A key in the "thumbnail" namespace for getting the path to the xx-large
1088
+ * thumbnail image.
1089
+ *
1090
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
1091
+ *
1092
+ * Since: 2.76
1093
+ */
1094
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_PATH_XXLARGE "thumbnail::path-xxlarge" /* bytestring */
1095
+ /**
1096
+ * G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_XXLARGE:
1097
+ *
1098
+ * A key in the "thumbnail" namespace for checking if thumbnailing failed
1099
+ * for the xx-large image.
1100
+ *
1101
+ * This attribute is %TRUE if thumbnailing failed.
1102
+ *
1103
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1104
+ *
1105
+ * Since: 2.76
1106
+ */
1107
+ #define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_XXLARGE "thumbnail::failed-xxlarge" /* boolean */
1108
+ /**
1109
+ * G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_XXLARGE:
1110
+ *
1111
+ * A key in the "thumbnail" namespace for checking whether the xx-large
1112
+ * thumbnail is outdated.
1113
+ *
1114
+ * This attribute is %TRUE if the x-large thumbnail is up-to-date with the file
1115
+ * it represents, and %FALSE if the file has been modified since the thumbnail
1116
+ * was generated.
1117
+ *
1118
+ * If %G_FILE_ATTRIBUTE_THUMBNAILING_FAILED_XXLARGE is %TRUE and this attribute
1119
+ * is %FALSE, it indicates that thumbnailing may be attempted again and may
1120
+ * succeed.
1121
+ *
1122
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1123
+ *
1124
+ * Since: 2.76
1125
+ */
1126
+ #define G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID_XXLARGE "thumbnail::is-valid-xxlarge" /* boolean */
1127
+
1128
+ /* Preview */
1129
+
1130
+ /**
1131
+ * G_FILE_ATTRIBUTE_PREVIEW_ICON:
1132
+ *
1133
+ * A key in the "preview" namespace for getting a #GIcon that can be
1134
+ * used to get preview of the file.
1135
+ *
1136
+ * For example, it may be a low resolution thumbnail without metadata.
1137
+ *
1138
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT.
1139
+ *
1140
+ * The value for this key should contain a #GIcon.
1141
+ *
1142
+ * Since: 2.20
1143
+ **/
1144
+ #define G_FILE_ATTRIBUTE_PREVIEW_ICON "preview::icon" /* object (GIcon) */
1145
+
1146
+ /* File system info (for g_file_get_filesystem_info) */
1147
+
1148
+ /**
1149
+ * G_FILE_ATTRIBUTE_FILESYSTEM_SIZE:
1150
+ *
1151
+ * A key in the "filesystem" namespace for getting the total size (in
1152
+ * bytes) of the file system, used in g_file_query_filesystem_info().
1153
+ *
1154
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
1155
+ **/
1156
+ #define G_FILE_ATTRIBUTE_FILESYSTEM_SIZE "filesystem::size" /* uint64 */
1157
+
1158
+ /**
1159
+ * G_FILE_ATTRIBUTE_FILESYSTEM_FREE:
1160
+ *
1161
+ * A key in the "filesystem" namespace for getting the number of bytes
1162
+ * of free space left on the file system.
1163
+ *
1164
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
1165
+ **/
1166
+ #define G_FILE_ATTRIBUTE_FILESYSTEM_FREE "filesystem::free" /* uint64 */
1167
+
1168
+ /**
1169
+ * G_FILE_ATTRIBUTE_FILESYSTEM_USED:
1170
+ *
1171
+ * A key in the "filesystem" namespace for getting the number of bytes
1172
+ * used by data on the file system.
1173
+ *
1174
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
1175
+ *
1176
+ * Since: 2.32
1177
+ */
1178
+ #define G_FILE_ATTRIBUTE_FILESYSTEM_USED "filesystem::used" /* uint64 */
1179
+
1180
+ /**
1181
+ * G_FILE_ATTRIBUTE_FILESYSTEM_TYPE:
1182
+ *
1183
+ * A key in the "filesystem" namespace for getting the file system's type.
1184
+ *
1185
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
1186
+ **/
1187
+ #define G_FILE_ATTRIBUTE_FILESYSTEM_TYPE "filesystem::type" /* string */
1188
+
1189
+ /**
1190
+ * G_FILE_ATTRIBUTE_FILESYSTEM_READONLY:
1191
+ *
1192
+ * A key in the "filesystem" namespace for checking if the file system
1193
+ * is read only.
1194
+ *
1195
+ * Is set to %TRUE if the file system is read only.
1196
+ *
1197
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1198
+ **/
1199
+ #define G_FILE_ATTRIBUTE_FILESYSTEM_READONLY "filesystem::readonly" /* boolean */
1200
+
1201
+ /**
1202
+ * G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW:
1203
+ *
1204
+ * A key in the "filesystem" namespace for hinting a file manager
1205
+ * application whether it should preview (e.g. thumbnail) files on the
1206
+ * file system.
1207
+ *
1208
+ * The value for this key contain a #GFilesystemPreviewType.
1209
+ **/
1210
+ #define G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW "filesystem::use-preview" /* uint32 (GFilesystemPreviewType) */
1211
+
1212
+ /**
1213
+ * G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE:
1214
+ *
1215
+ * A key in the "filesystem" namespace for checking if the file system
1216
+ * is remote.
1217
+ *
1218
+ * Is set to %TRUE if the file system is remote.
1219
+ *
1220
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
1221
+ **/
1222
+ #define G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE "filesystem::remote" /* boolean */
1223
+
1224
+ /**
1225
+ * G_FILE_ATTRIBUTE_GVFS_BACKEND:
1226
+ *
1227
+ * A key in the "gvfs" namespace that gets the name of the current
1228
+ * GVFS backend in use.
1229
+ *
1230
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
1231
+ **/
1232
+ #define G_FILE_ATTRIBUTE_GVFS_BACKEND "gvfs::backend" /* string */
1233
+
1234
+ /**
1235
+ * G_FILE_ATTRIBUTE_SELINUX_CONTEXT:
1236
+ *
1237
+ * A key in the "selinux" namespace for getting the file's SELinux
1238
+ * context.
1239
+ *
1240
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
1241
+ *
1242
+ * Note that this attribute is only available if GLib has been built
1243
+ * with SELinux support.
1244
+ **/
1245
+ #define G_FILE_ATTRIBUTE_SELINUX_CONTEXT "selinux::context" /* string */
1246
+
1247
+ /**
1248
+ * G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT:
1249
+ *
1250
+ * A key in the "trash" namespace for getting the number of (toplevel) items
1251
+ * that are present in the `trash:///` folder.
1252
+ *
1253
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
1254
+ **/
1255
+ #define G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT "trash::item-count" /* uint32 */
1256
+
1257
+ /**
1258
+ * G_FILE_ATTRIBUTE_TRASH_ORIG_PATH:
1259
+ *
1260
+ * A key in the "trash" namespace for getting the original path of a file
1261
+ * inside the `trash:///` folder before it was trashed.
1262
+ *
1263
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
1264
+ *
1265
+ * Since: 2.24
1266
+ **/
1267
+ #define G_FILE_ATTRIBUTE_TRASH_ORIG_PATH "trash::orig-path" /* byte string */
1268
+
1269
+ /**
1270
+ * G_FILE_ATTRIBUTE_TRASH_DELETION_DATE:
1271
+ *
1272
+ * A key in the "trash" namespace for getting the deletion date and time
1273
+ * of a file inside the `trash:///` folder.
1274
+ *
1275
+ * The format of the returned string is `YYYY-MM-DDThh:mm:ss`.
1276
+ *
1277
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
1278
+ *
1279
+ * Since: 2.24
1280
+ **/
1281
+ #define G_FILE_ATTRIBUTE_TRASH_DELETION_DATE "trash::deletion-date" /* string */
1282
+
1283
+ /**
1284
+ * G_FILE_ATTRIBUTE_RECENT_MODIFIED:
1285
+ *
1286
+ * A key in the "recent" namespace for getting time, when the metadata for the
1287
+ * file in `recent:///` was last changed.
1288
+ *
1289
+ * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_INT64.
1290
+ *
1291
+ * Since: 2.52
1292
+ **/
1293
+ #define G_FILE_ATTRIBUTE_RECENT_MODIFIED "recent::modified" /* int64 (time_t) */
1294
+
1295
+ GIO_AVAILABLE_IN_ALL
1296
+ GType g_file_info_get_type (void) G_GNUC_CONST;
1297
+
1298
+ GIO_AVAILABLE_IN_ALL
1299
+ GFileInfo * g_file_info_new (void);
1300
+ GIO_AVAILABLE_IN_ALL
1301
+ GFileInfo * g_file_info_dup (GFileInfo *other);
1302
+ GIO_AVAILABLE_IN_ALL
1303
+ void g_file_info_copy_into (GFileInfo *src_info,
1304
+ GFileInfo *dest_info);
1305
+ GIO_AVAILABLE_IN_ALL
1306
+ gboolean g_file_info_has_attribute (GFileInfo *info,
1307
+ const char *attribute);
1308
+ GIO_AVAILABLE_IN_ALL
1309
+ gboolean g_file_info_has_namespace (GFileInfo *info,
1310
+ const char *name_space);
1311
+ GIO_AVAILABLE_IN_ALL
1312
+ char ** g_file_info_list_attributes (GFileInfo *info,
1313
+ const char *name_space);
1314
+ GIO_AVAILABLE_IN_ALL
1315
+ gboolean g_file_info_get_attribute_data (GFileInfo *info,
1316
+ const char *attribute,
1317
+ GFileAttributeType *type,
1318
+ gpointer *value_pp,
1319
+ GFileAttributeStatus *status);
1320
+ GIO_AVAILABLE_IN_ALL
1321
+ GFileAttributeType g_file_info_get_attribute_type (GFileInfo *info,
1322
+ const char *attribute);
1323
+ GIO_AVAILABLE_IN_ALL
1324
+ void g_file_info_remove_attribute (GFileInfo *info,
1325
+ const char *attribute);
1326
+ GIO_AVAILABLE_IN_ALL
1327
+ GFileAttributeStatus g_file_info_get_attribute_status (GFileInfo *info,
1328
+ const char *attribute);
1329
+ GIO_AVAILABLE_IN_ALL
1330
+ gboolean g_file_info_set_attribute_status (GFileInfo *info,
1331
+ const char *attribute,
1332
+ GFileAttributeStatus status);
1333
+ GIO_AVAILABLE_IN_ALL
1334
+ char * g_file_info_get_attribute_as_string (GFileInfo *info,
1335
+ const char *attribute);
1336
+ GIO_AVAILABLE_IN_ALL
1337
+ const char * g_file_info_get_attribute_string (GFileInfo *info,
1338
+ const char *attribute);
1339
+ GIO_AVAILABLE_IN_ALL
1340
+ const char * g_file_info_get_attribute_byte_string (GFileInfo *info,
1341
+ const char *attribute);
1342
+ GIO_AVAILABLE_IN_ALL
1343
+ gboolean g_file_info_get_attribute_boolean (GFileInfo *info,
1344
+ const char *attribute);
1345
+ GIO_AVAILABLE_IN_ALL
1346
+ guint32 g_file_info_get_attribute_uint32 (GFileInfo *info,
1347
+ const char *attribute);
1348
+ GIO_AVAILABLE_IN_ALL
1349
+ gint32 g_file_info_get_attribute_int32 (GFileInfo *info,
1350
+ const char *attribute);
1351
+ GIO_AVAILABLE_IN_ALL
1352
+ guint64 g_file_info_get_attribute_uint64 (GFileInfo *info,
1353
+ const char *attribute);
1354
+ GIO_AVAILABLE_IN_ALL
1355
+ gint64 g_file_info_get_attribute_int64 (GFileInfo *info,
1356
+ const char *attribute);
1357
+ GIO_AVAILABLE_IN_ALL
1358
+ GObject * g_file_info_get_attribute_object (GFileInfo *info,
1359
+ const char *attribute);
1360
+ GIO_AVAILABLE_IN_ALL
1361
+ char ** g_file_info_get_attribute_stringv (GFileInfo *info,
1362
+ const char *attribute);
1363
+ GIO_AVAILABLE_IN_2_78
1364
+ const char * g_file_info_get_attribute_file_path (GFileInfo *info,
1365
+ const char *attribute);
1366
+
1367
+ GIO_AVAILABLE_IN_ALL
1368
+ void g_file_info_set_attribute (GFileInfo *info,
1369
+ const char *attribute,
1370
+ GFileAttributeType type,
1371
+ gpointer value_p);
1372
+ GIO_AVAILABLE_IN_ALL
1373
+ void g_file_info_set_attribute_string (GFileInfo *info,
1374
+ const char *attribute,
1375
+ const char *attr_value);
1376
+ GIO_AVAILABLE_IN_ALL
1377
+ void g_file_info_set_attribute_byte_string (GFileInfo *info,
1378
+ const char *attribute,
1379
+ const char *attr_value);
1380
+ GIO_AVAILABLE_IN_ALL
1381
+ void g_file_info_set_attribute_boolean (GFileInfo *info,
1382
+ const char *attribute,
1383
+ gboolean attr_value);
1384
+ GIO_AVAILABLE_IN_ALL
1385
+ void g_file_info_set_attribute_uint32 (GFileInfo *info,
1386
+ const char *attribute,
1387
+ guint32 attr_value);
1388
+ GIO_AVAILABLE_IN_ALL
1389
+ void g_file_info_set_attribute_int32 (GFileInfo *info,
1390
+ const char *attribute,
1391
+ gint32 attr_value);
1392
+ GIO_AVAILABLE_IN_ALL
1393
+ void g_file_info_set_attribute_uint64 (GFileInfo *info,
1394
+ const char *attribute,
1395
+ guint64 attr_value);
1396
+ GIO_AVAILABLE_IN_ALL
1397
+ void g_file_info_set_attribute_int64 (GFileInfo *info,
1398
+ const char *attribute,
1399
+ gint64 attr_value);
1400
+ GIO_AVAILABLE_IN_ALL
1401
+ void g_file_info_set_attribute_object (GFileInfo *info,
1402
+ const char *attribute,
1403
+ GObject *attr_value);
1404
+ GIO_AVAILABLE_IN_ALL
1405
+ void g_file_info_set_attribute_stringv (GFileInfo *info,
1406
+ const char *attribute,
1407
+ char **attr_value);
1408
+ GIO_AVAILABLE_IN_2_78
1409
+ void g_file_info_set_attribute_file_path (GFileInfo *info,
1410
+ const char *attribute,
1411
+ const char *attr_value);
1412
+
1413
+ GIO_AVAILABLE_IN_ALL
1414
+ void g_file_info_clear_status (GFileInfo *info);
1415
+
1416
+ /* Helper getters: */
1417
+ GIO_AVAILABLE_IN_2_36
1418
+ GDateTime * g_file_info_get_deletion_date (GFileInfo *info);
1419
+ GIO_AVAILABLE_IN_ALL
1420
+ GFileType g_file_info_get_file_type (GFileInfo *info);
1421
+ GIO_AVAILABLE_IN_ALL
1422
+ gboolean g_file_info_get_is_hidden (GFileInfo *info);
1423
+ GIO_AVAILABLE_IN_ALL
1424
+ gboolean g_file_info_get_is_backup (GFileInfo *info);
1425
+ GIO_AVAILABLE_IN_ALL
1426
+ gboolean g_file_info_get_is_symlink (GFileInfo *info);
1427
+ GIO_AVAILABLE_IN_ALL
1428
+ const char * g_file_info_get_name (GFileInfo *info);
1429
+ GIO_AVAILABLE_IN_ALL
1430
+ const char * g_file_info_get_display_name (GFileInfo *info);
1431
+ GIO_AVAILABLE_IN_ALL
1432
+ const char * g_file_info_get_edit_name (GFileInfo *info);
1433
+ GIO_AVAILABLE_IN_ALL
1434
+ GIcon * g_file_info_get_icon (GFileInfo *info);
1435
+ GIO_AVAILABLE_IN_ALL
1436
+ GIcon * g_file_info_get_symbolic_icon (GFileInfo *info);
1437
+ GIO_AVAILABLE_IN_ALL
1438
+ const char * g_file_info_get_content_type (GFileInfo *info);
1439
+ GIO_AVAILABLE_IN_ALL
1440
+ goffset g_file_info_get_size (GFileInfo *info);
1441
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
1442
+ GIO_DEPRECATED_IN_2_62_FOR(g_file_info_get_modification_date_time)
1443
+ void g_file_info_get_modification_time (GFileInfo *info,
1444
+ GTimeVal *result);
1445
+ G_GNUC_END_IGNORE_DEPRECATIONS
1446
+ GIO_AVAILABLE_IN_2_62
1447
+ GDateTime * g_file_info_get_modification_date_time (GFileInfo *info);
1448
+ GIO_AVAILABLE_IN_2_70
1449
+ GDateTime * g_file_info_get_access_date_time (GFileInfo *info);
1450
+ GIO_AVAILABLE_IN_2_70
1451
+ GDateTime * g_file_info_get_creation_date_time (GFileInfo *info);
1452
+ GIO_AVAILABLE_IN_ALL
1453
+ const char * g_file_info_get_symlink_target (GFileInfo *info);
1454
+ GIO_AVAILABLE_IN_ALL
1455
+ const char * g_file_info_get_etag (GFileInfo *info);
1456
+ GIO_AVAILABLE_IN_ALL
1457
+ gint32 g_file_info_get_sort_order (GFileInfo *info);
1458
+
1459
+ GIO_AVAILABLE_IN_ALL
1460
+ void g_file_info_set_attribute_mask (GFileInfo *info,
1461
+ GFileAttributeMatcher *mask);
1462
+ GIO_AVAILABLE_IN_ALL
1463
+ void g_file_info_unset_attribute_mask (GFileInfo *info);
1464
+
1465
+ /* Helper setters: */
1466
+ GIO_AVAILABLE_IN_ALL
1467
+ void g_file_info_set_file_type (GFileInfo *info,
1468
+ GFileType type);
1469
+ GIO_AVAILABLE_IN_ALL
1470
+ void g_file_info_set_is_hidden (GFileInfo *info,
1471
+ gboolean is_hidden);
1472
+ GIO_AVAILABLE_IN_ALL
1473
+ void g_file_info_set_is_symlink (GFileInfo *info,
1474
+ gboolean is_symlink);
1475
+ GIO_AVAILABLE_IN_ALL
1476
+ void g_file_info_set_name (GFileInfo *info,
1477
+ const char *name);
1478
+ GIO_AVAILABLE_IN_ALL
1479
+ void g_file_info_set_display_name (GFileInfo *info,
1480
+ const char *display_name);
1481
+ GIO_AVAILABLE_IN_ALL
1482
+ void g_file_info_set_edit_name (GFileInfo *info,
1483
+ const char *edit_name);
1484
+ GIO_AVAILABLE_IN_ALL
1485
+ void g_file_info_set_icon (GFileInfo *info,
1486
+ GIcon *icon);
1487
+ GIO_AVAILABLE_IN_ALL
1488
+ void g_file_info_set_symbolic_icon (GFileInfo *info,
1489
+ GIcon *icon);
1490
+ GIO_AVAILABLE_IN_ALL
1491
+ void g_file_info_set_content_type (GFileInfo *info,
1492
+ const char *content_type);
1493
+ GIO_AVAILABLE_IN_ALL
1494
+ void g_file_info_set_size (GFileInfo *info,
1495
+ goffset size);
1496
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
1497
+ GIO_DEPRECATED_IN_2_62_FOR(g_file_info_set_modification_date_time)
1498
+ void g_file_info_set_modification_time (GFileInfo *info,
1499
+ GTimeVal *mtime);
1500
+ G_GNUC_END_IGNORE_DEPRECATIONS
1501
+ GIO_AVAILABLE_IN_2_62
1502
+ void g_file_info_set_modification_date_time (GFileInfo *info,
1503
+ GDateTime *mtime);
1504
+ GIO_AVAILABLE_IN_2_70
1505
+ void g_file_info_set_access_date_time (GFileInfo *info,
1506
+ GDateTime *atime);
1507
+ GIO_AVAILABLE_IN_2_70
1508
+ void g_file_info_set_creation_date_time (GFileInfo *info,
1509
+ GDateTime *creation_time);
1510
+ GIO_AVAILABLE_IN_ALL
1511
+ void g_file_info_set_symlink_target (GFileInfo *info,
1512
+ const char *symlink_target);
1513
+ GIO_AVAILABLE_IN_ALL
1514
+ void g_file_info_set_sort_order (GFileInfo *info,
1515
+ gint32 sort_order);
1516
+
1517
+ #define G_TYPE_FILE_ATTRIBUTE_MATCHER (g_file_attribute_matcher_get_type ())
1518
+ GIO_AVAILABLE_IN_ALL
1519
+ GType g_file_attribute_matcher_get_type (void) G_GNUC_CONST;
1520
+
1521
+ GIO_AVAILABLE_IN_ALL
1522
+ GFileAttributeMatcher *g_file_attribute_matcher_new (const char *attributes);
1523
+ GIO_AVAILABLE_IN_ALL
1524
+ GFileAttributeMatcher *g_file_attribute_matcher_ref (GFileAttributeMatcher *matcher);
1525
+ GIO_AVAILABLE_IN_ALL
1526
+ void g_file_attribute_matcher_unref (GFileAttributeMatcher *matcher);
1527
+ GIO_AVAILABLE_IN_ALL
1528
+ GFileAttributeMatcher *g_file_attribute_matcher_subtract (GFileAttributeMatcher *matcher,
1529
+ GFileAttributeMatcher *subtract);
1530
+ GIO_AVAILABLE_IN_ALL
1531
+ gboolean g_file_attribute_matcher_matches (GFileAttributeMatcher *matcher,
1532
+ const char *attribute);
1533
+ GIO_AVAILABLE_IN_ALL
1534
+ gboolean g_file_attribute_matcher_matches_only (GFileAttributeMatcher *matcher,
1535
+ const char *attribute);
1536
+ GIO_AVAILABLE_IN_ALL
1537
+ gboolean g_file_attribute_matcher_enumerate_namespace (GFileAttributeMatcher *matcher,
1538
+ const char *ns);
1539
+ GIO_AVAILABLE_IN_ALL
1540
+ const char * g_file_attribute_matcher_enumerate_next (GFileAttributeMatcher *matcher);
1541
+ GIO_AVAILABLE_IN_2_32
1542
+ char * g_file_attribute_matcher_to_string (GFileAttributeMatcher *matcher);
1543
+
1544
+ G_END_DECLS
1545
+
1546
+ #endif /* __G_FILE_INFO_H__ */