@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,1425 @@
1
+ /* GLIB - Library of useful routines for C programming
2
+ * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3
+ *
4
+ * SPDX-License-Identifier: LGPL-2.1-or-later
5
+ *
6
+ * This library is free software; you can redistribute it and/or
7
+ * modify it under the terms of the GNU Lesser General Public
8
+ * License as published by the Free Software Foundation; either
9
+ * version 2.1 of the License, or (at your option) any later version.
10
+ *
11
+ * This library is distributed in the hope that it will be useful,
12
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
+ * Lesser General Public License for more details.
15
+ *
16
+ * You should have received a copy of the GNU Lesser General Public
17
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18
+ */
19
+
20
+ /*
21
+ * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22
+ * file for a list of people on the GLib Team. See the ChangeLog
23
+ * files for a list of changes. These files are distributed with
24
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
25
+ */
26
+
27
+ /* This file must not include any other glib header file and must thus
28
+ * not refer to variables from glibconfig.h
29
+ */
30
+
31
+ #ifndef __G_MACROS_H__
32
+ #define __G_MACROS_H__
33
+
34
+ #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
35
+ #error "Only <glib.h> can be included directly."
36
+ #endif
37
+
38
+ /* We include stddef.h to get the system's definition of NULL
39
+ */
40
+ #include <stddef.h>
41
+
42
+ /*
43
+ * Note: Clang (but not clang-cl) defines __GNUC__ and __GNUC_MINOR__.
44
+ * Both Clang 11.1 on current Arch Linux and Apple's Clang 12.0 define
45
+ * __GNUC__ = 4 and __GNUC_MINOR__ = 2. So G_GNUC_CHECK_VERSION(4, 2) on
46
+ * current Clang will be 1.
47
+ */
48
+ #ifdef __GNUC__
49
+ #define G_GNUC_CHECK_VERSION(major, minor) \
50
+ ((__GNUC__ > (major)) || \
51
+ ((__GNUC__ == (major)) && \
52
+ (__GNUC_MINOR__ >= (minor))))
53
+ #else
54
+ #define G_GNUC_CHECK_VERSION(major, minor) 0
55
+ #endif
56
+
57
+ /* Here we provide G_GNUC_EXTENSION as an alias for __extension__,
58
+ * where this is valid. This allows for warningless compilation of
59
+ * "long long" types even in the presence of '-ansi -pedantic'.
60
+ */
61
+ #if G_GNUC_CHECK_VERSION(2, 8)
62
+ #define G_GNUC_EXTENSION __extension__
63
+ #else
64
+ #define G_GNUC_EXTENSION
65
+ #endif
66
+
67
+ #if !defined (__cplusplus)
68
+
69
+ # undef G_CXX_STD_VERSION
70
+ # define G_CXX_STD_CHECK_VERSION(version) (0)
71
+
72
+ # if defined (__STDC_VERSION__)
73
+ # define G_C_STD_VERSION __STDC_VERSION__
74
+ # else
75
+ # define G_C_STD_VERSION 199000L
76
+ # endif /* defined (__STDC_VERSION__) */
77
+
78
+ # define G_C_STD_CHECK_VERSION(version) ( \
79
+ ((version) >= 199000L && (version) <= G_C_STD_VERSION) || \
80
+ ((version) == 89 && G_C_STD_VERSION >= 199000L) || \
81
+ ((version) == 90 && G_C_STD_VERSION >= 199000L) || \
82
+ ((version) == 99 && G_C_STD_VERSION >= 199901L) || \
83
+ ((version) == 11 && G_C_STD_VERSION >= 201112L) || \
84
+ ((version) == 17 && G_C_STD_VERSION >= 201710L) || \
85
+ 0)
86
+
87
+ #else /* defined (__cplusplus) */
88
+
89
+ # undef G_C_STD_VERSION
90
+ # define G_C_STD_CHECK_VERSION(version) (0)
91
+
92
+ # if defined (_MSVC_LANG)
93
+ # define G_CXX_STD_VERSION (_MSVC_LANG > __cplusplus ? _MSVC_LANG : __cplusplus)
94
+ # else
95
+ # define G_CXX_STD_VERSION __cplusplus
96
+ # endif /* defined(_MSVC_LANG) */
97
+
98
+ # define G_CXX_STD_CHECK_VERSION(version) ( \
99
+ ((version) >= 199711L && (version) <= G_CXX_STD_VERSION) || \
100
+ ((version) == 98 && G_CXX_STD_VERSION >= 199711L) || \
101
+ ((version) == 03 && G_CXX_STD_VERSION >= 199711L) || \
102
+ ((version) == 11 && G_CXX_STD_VERSION >= 201103L) || \
103
+ ((version) == 14 && G_CXX_STD_VERSION >= 201402L) || \
104
+ ((version) == 17 && G_CXX_STD_VERSION >= 201703L) || \
105
+ ((version) == 20 && G_CXX_STD_VERSION >= 202002L) || \
106
+ 0)
107
+
108
+ #endif /* !defined (__cplusplus) */
109
+
110
+ /* Every compiler that we target supports inlining, but some of them may
111
+ * complain about it if we don't say "__inline". If we have C99, or if
112
+ * we are using C++, then we can use "inline" directly.
113
+ * Otherwise, we say "__inline" to avoid the warning.
114
+ * Unfortunately Visual Studio does not define __STDC_VERSION__ (if not
115
+ * using /std:cXX) so we need to check whether we are on Visual Studio 2013
116
+ * or earlier to see whether we need to say "__inline" in C mode.
117
+ */
118
+ #define G_CAN_INLINE
119
+ #ifdef G_C_STD_VERSION
120
+ # ifdef _MSC_VER
121
+ # if (_MSC_VER < 1900)
122
+ # define G_INLINE_DEFINE_NEEDED
123
+ # endif
124
+ # elif !G_C_STD_CHECK_VERSION (99)
125
+ # define G_INLINE_DEFINE_NEEDED
126
+ # endif
127
+ #endif
128
+
129
+ #ifdef G_INLINE_DEFINE_NEEDED
130
+ # undef inline
131
+ # define inline __inline
132
+ #endif
133
+
134
+ #undef G_INLINE_DEFINE_NEEDED
135
+
136
+ /**
137
+ * G_INLINE_FUNC:
138
+ *
139
+ * This macro used to be used to conditionally define inline functions
140
+ * in a compatible way before this feature was supported in all
141
+ * compilers. These days, GLib requires inlining support from the
142
+ * compiler, so your GLib-using programs can safely assume that the
143
+ * "inline" keyword works properly.
144
+ *
145
+ * Never use this macro anymore. Just say "static inline".
146
+ *
147
+ * Deprecated: 2.48: Use "static inline" instead
148
+ */
149
+
150
+ /* For historical reasons we need to continue to support those who
151
+ * define G_IMPLEMENT_INLINES to mean "don't implement this here".
152
+ */
153
+ #ifdef G_IMPLEMENT_INLINES
154
+ # define G_INLINE_FUNC extern GLIB_DEPRECATED_MACRO_IN_2_48_FOR(static inline)
155
+ # undef G_CAN_INLINE
156
+ #else
157
+ # define G_INLINE_FUNC static inline GLIB_DEPRECATED_MACRO_IN_2_48_FOR(static inline)
158
+ #endif /* G_IMPLEMENT_INLINES */
159
+
160
+ /*
161
+ * Attribute support detection. Works on clang and GCC >= 5
162
+ * https://clang.llvm.org/docs/LanguageExtensions.html#has-attribute
163
+ * https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005fattribute.html
164
+ */
165
+
166
+ #ifdef __has_attribute
167
+ #define g_macro__has_attribute __has_attribute
168
+ #else
169
+
170
+ /*
171
+ * Fallback for GCC < 5 and other compilers not supporting __has_attribute.
172
+ */
173
+ #define g_macro__has_attribute(x) g_macro__has_attribute_##x
174
+
175
+ #define g_macro__has_attribute___alloc_size__ G_GNUC_CHECK_VERSION (4, 3)
176
+ #define g_macro__has_attribute___always_inline__ G_GNUC_CHECK_VERSION (2, 0)
177
+ #define g_macro__has_attribute___const__ G_GNUC_CHECK_VERSION (2, 4)
178
+ #define g_macro__has_attribute___deprecated__ G_GNUC_CHECK_VERSION (3, 1)
179
+ #define g_macro__has_attribute___format__ G_GNUC_CHECK_VERSION (2, 4)
180
+ #define g_macro__has_attribute___format_arg__ G_GNUC_CHECK_VERSION (2, 4)
181
+ #define g_macro__has_attribute___malloc__ G_GNUC_CHECK_VERSION (2, 96)
182
+ #define g_macro__has_attribute___no_instrument_function__ G_GNUC_CHECK_VERSION (2, 4)
183
+ #define g_macro__has_attribute___noinline__ G_GNUC_CHECK_VERSION (2, 96)
184
+ #define g_macro__has_attribute___noreturn__ (G_GNUC_CHECK_VERSION (2, 8) || (0x5110 <= __SUNPRO_C))
185
+ #define g_macro__has_attribute___pure__ G_GNUC_CHECK_VERSION (2, 96)
186
+ #define g_macro__has_attribute___sentinel__ G_GNUC_CHECK_VERSION (4, 0)
187
+ #define g_macro__has_attribute___unused__ G_GNUC_CHECK_VERSION (2, 4)
188
+ #define g_macro__has_attribute_cleanup G_GNUC_CHECK_VERSION (3, 3)
189
+ #define g_macro__has_attribute_fallthrough G_GNUC_CHECK_VERSION (6, 0)
190
+ #define g_macro__has_attribute_may_alias G_GNUC_CHECK_VERSION (3, 3)
191
+ #define g_macro__has_attribute_warn_unused_result G_GNUC_CHECK_VERSION (3, 4)
192
+
193
+ #endif
194
+
195
+ /* Provide macros to feature the GCC function attribute.
196
+ */
197
+
198
+ /**
199
+ * G_GNUC_PURE:
200
+ *
201
+ * Expands to the GNU C `pure` function attribute if the compiler is gcc.
202
+ * Declaring a function as `pure` enables better optimization of calls to
203
+ * the function. A `pure` function has no effects except its return value
204
+ * and the return value depends only on the parameters and/or global
205
+ * variables.
206
+ *
207
+ * Place the attribute after the declaration, just before the semicolon.
208
+ *
209
+ * |[<!-- language="C" -->
210
+ * gboolean g_type_check_value (const GValue *value) G_GNUC_PURE;
211
+ * ]|
212
+ *
213
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-pure-function-attribute) for more details.
214
+ */
215
+
216
+ /**
217
+ * G_GNUC_MALLOC:
218
+ *
219
+ * Expands to the
220
+ * [GNU C `malloc` function attribute](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-functions-that-behave-like-malloc)
221
+ * if the compiler is gcc.
222
+ * Declaring a function as `malloc` enables better optimization of the function,
223
+ * but must only be done if the allocation behaviour of the function is fully
224
+ * understood, otherwise miscompilation can result.
225
+ *
226
+ * A function can have the `malloc` attribute if it returns a pointer which is
227
+ * guaranteed to not alias with any other pointer valid when the function
228
+ * returns, and moreover no pointers to valid objects occur in any storage
229
+ * addressed by the returned pointer.
230
+ *
231
+ * In practice, this means that `G_GNUC_MALLOC` can be used with any function
232
+ * which returns unallocated or zeroed-out memory, but not with functions which
233
+ * return initialised structures containing other pointers, or with functions
234
+ * that reallocate memory. This definition changed in GLib 2.58 to match the
235
+ * stricter definition introduced around GCC 5.
236
+ *
237
+ * Place the attribute after the declaration, just before the semicolon.
238
+ *
239
+ * |[<!-- language="C" -->
240
+ * gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
241
+ * ]|
242
+ *
243
+ * See the
244
+ * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-functions-that-behave-like-malloc)
245
+ * for more details.
246
+ *
247
+ * Since: 2.6
248
+ */
249
+
250
+ /**
251
+ * G_GNUC_NO_INLINE:
252
+ *
253
+ * Expands to the GNU C `noinline` function attribute if the compiler is gcc.
254
+ * If the compiler is not gcc, this macro expands to nothing.
255
+ *
256
+ * Declaring a function as `noinline` prevents the function from being
257
+ * considered for inlining.
258
+ *
259
+ * This macro is provided for retro-compatibility and will be eventually
260
+ * deprecated, but %G_NO_INLINE should be used instead.
261
+ *
262
+ * The attribute may be placed before the declaration or definition,
263
+ * right before the `static` keyword.
264
+ *
265
+ * |[<!-- language="C" -->
266
+ * G_GNUC_NO_INLINE
267
+ * static int
268
+ * do_not_inline_this (void)
269
+ * {
270
+ * ...
271
+ * }
272
+ * ]|
273
+ *
274
+ * See the
275
+ * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-noinline-function-attribute)
276
+ * for more details.
277
+ *
278
+ * See also: %G_NO_INLINE, %G_ALWAYS_INLINE.
279
+ *
280
+ * Since: 2.58
281
+ */
282
+
283
+ #if g_macro__has_attribute(__pure__)
284
+ #define G_GNUC_PURE __attribute__((__pure__))
285
+ #else
286
+ #define G_GNUC_PURE
287
+ #endif
288
+
289
+ #if g_macro__has_attribute(__malloc__)
290
+ #define G_GNUC_MALLOC __attribute__ ((__malloc__))
291
+ #else
292
+ #define G_GNUC_MALLOC
293
+ #endif
294
+
295
+ #if g_macro__has_attribute(__noinline__)
296
+ #define G_GNUC_NO_INLINE __attribute__ ((__noinline__)) \
297
+ GLIB_AVAILABLE_MACRO_IN_2_58
298
+ #else
299
+ #define G_GNUC_NO_INLINE \
300
+ GLIB_AVAILABLE_MACRO_IN_2_58
301
+ #endif
302
+
303
+ /**
304
+ * G_GNUC_NULL_TERMINATED:
305
+ *
306
+ * Expands to the GNU C `sentinel` function attribute if the compiler is gcc.
307
+ * This function attribute only applies to variadic functions and instructs
308
+ * the compiler to check that the argument list is terminated with an
309
+ * explicit %NULL.
310
+ *
311
+ * Place the attribute after the declaration, just before the semicolon.
312
+ *
313
+ * |[<!-- language="C" -->
314
+ * gchar *g_strconcat (const gchar *string1,
315
+ * ...) G_GNUC_NULL_TERMINATED;
316
+ * ]|
317
+ *
318
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-sentinel-function-attribute) for more details.
319
+ *
320
+ * Since: 2.8
321
+ */
322
+ #if g_macro__has_attribute(__sentinel__)
323
+ #define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
324
+ #else
325
+ #define G_GNUC_NULL_TERMINATED
326
+ #endif
327
+
328
+ /*
329
+ * Clang feature detection: http://clang.llvm.org/docs/LanguageExtensions.html
330
+ * These are not available on GCC, but since the pre-processor doesn't do
331
+ * operator short-circuiting, we can't use it in a statement or we'll get:
332
+ *
333
+ * error: missing binary operator before token "("
334
+ *
335
+ * So we define it to 0 to satisfy the pre-processor.
336
+ */
337
+
338
+ #ifdef __has_feature
339
+ #define g_macro__has_feature __has_feature
340
+ #else
341
+ #define g_macro__has_feature(x) 0
342
+ #endif
343
+
344
+ #ifdef __has_builtin
345
+ #define g_macro__has_builtin __has_builtin
346
+ #else
347
+ #define g_macro__has_builtin(x) 0
348
+ #endif
349
+
350
+ #ifdef __has_extension
351
+ #define g_macro__has_extension __has_extension
352
+ #else
353
+ #define g_macro__has_extension(x) 0
354
+ #endif
355
+
356
+ /**
357
+ * G_GNUC_ALLOC_SIZE:
358
+ * @x: the index of the argument specifying the allocation size
359
+ *
360
+ * Expands to the GNU C `alloc_size` function attribute if the compiler
361
+ * is a new enough gcc. This attribute tells the compiler that the
362
+ * function returns a pointer to memory of a size that is specified
363
+ * by the @xth function parameter.
364
+ *
365
+ * Place the attribute after the function declaration, just before the
366
+ * semicolon.
367
+ *
368
+ * |[<!-- language="C" -->
369
+ * gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
370
+ * ]|
371
+ *
372
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute) for more details.
373
+ *
374
+ * Since: 2.18
375
+ */
376
+
377
+ /**
378
+ * G_GNUC_ALLOC_SIZE2:
379
+ * @x: the index of the argument specifying one factor of the allocation size
380
+ * @y: the index of the argument specifying the second factor of the allocation size
381
+ *
382
+ * Expands to the GNU C `alloc_size` function attribute if the compiler is a
383
+ * new enough gcc. This attribute tells the compiler that the function returns
384
+ * a pointer to memory of a size that is specified by the product of two
385
+ * function parameters.
386
+ *
387
+ * Place the attribute after the function declaration, just before the
388
+ * semicolon.
389
+ *
390
+ * |[<!-- language="C" -->
391
+ * gpointer g_malloc_n (gsize n_blocks,
392
+ * gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1, 2);
393
+ * ]|
394
+ *
395
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute) for more details.
396
+ *
397
+ * Since: 2.18
398
+ */
399
+ #if g_macro__has_attribute(__alloc_size__)
400
+ #define G_GNUC_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
401
+ #define G_GNUC_ALLOC_SIZE2(x,y) __attribute__((__alloc_size__(x,y)))
402
+ #else
403
+ #define G_GNUC_ALLOC_SIZE(x)
404
+ #define G_GNUC_ALLOC_SIZE2(x,y)
405
+ #endif
406
+
407
+ /**
408
+ * G_GNUC_PRINTF:
409
+ * @format_idx: the index of the argument corresponding to the
410
+ * format string (the arguments are numbered from 1)
411
+ * @arg_idx: the index of the first of the format arguments, or 0 if
412
+ * there are no format arguments
413
+ *
414
+ * Expands to the GNU C `format` function attribute if the compiler is gcc.
415
+ * This is used for declaring functions which take a variable number of
416
+ * arguments, with the same syntax as `printf()`. It allows the compiler
417
+ * to type-check the arguments passed to the function.
418
+ *
419
+ * Place the attribute after the function declaration, just before the
420
+ * semicolon.
421
+ *
422
+ * See the
423
+ * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
424
+ * for more details.
425
+ *
426
+ * |[<!-- language="C" -->
427
+ * gint g_snprintf (gchar *string,
428
+ * gulong n,
429
+ * gchar const *format,
430
+ * ...) G_GNUC_PRINTF (3, 4);
431
+ * ]|
432
+ */
433
+
434
+ /**
435
+ * G_GNUC_SCANF:
436
+ * @format_idx: the index of the argument corresponding to
437
+ * the format string (the arguments are numbered from 1)
438
+ * @arg_idx: the index of the first of the format arguments, or 0 if
439
+ * there are no format arguments
440
+ *
441
+ * Expands to the GNU C `format` function attribute if the compiler is gcc.
442
+ * This is used for declaring functions which take a variable number of
443
+ * arguments, with the same syntax as `scanf()`. It allows the compiler
444
+ * to type-check the arguments passed to the function.
445
+ *
446
+ * |[<!-- language="C" -->
447
+ * int my_scanf (MyStream *stream,
448
+ * const char *format,
449
+ * ...) G_GNUC_SCANF (2, 3);
450
+ * int my_vscanf (MyStream *stream,
451
+ * const char *format,
452
+ * va_list ap) G_GNUC_SCANF (2, 0);
453
+ * ]|
454
+ *
455
+ * See the
456
+ * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
457
+ * for details.
458
+ */
459
+
460
+ /**
461
+ * G_GNUC_STRFTIME:
462
+ * @format_idx: the index of the argument corresponding to
463
+ * the format string (the arguments are numbered from 1)
464
+ *
465
+ * Expands to the GNU C `strftime` format function attribute if the compiler
466
+ * is gcc. This is used for declaring functions which take a format argument
467
+ * which is passed to `strftime()` or an API implementing its formats. It allows
468
+ * the compiler check the format passed to the function.
469
+ *
470
+ * |[<!-- language="C" -->
471
+ * gsize my_strftime (MyBuffer *buffer,
472
+ * const char *format,
473
+ * const struct tm *tm) G_GNUC_STRFTIME (2);
474
+ * ]|
475
+ *
476
+ * See the
477
+ * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
478
+ * for details.
479
+ *
480
+ * Since: 2.60
481
+ */
482
+
483
+ /**
484
+ * G_GNUC_FORMAT:
485
+ * @arg_idx: the index of the argument
486
+ *
487
+ * Expands to the GNU C `format_arg` function attribute if the compiler
488
+ * is gcc. This function attribute specifies that a function takes a
489
+ * format string for a `printf()`, `scanf()`, `strftime()` or `strfmon()` style
490
+ * function and modifies it, so that the result can be passed to a `printf()`,
491
+ * `scanf()`, `strftime()` or `strfmon()` style function (with the remaining
492
+ * arguments to the format function the same as they would have been
493
+ * for the unmodified string).
494
+ *
495
+ * Place the attribute after the function declaration, just before the
496
+ * semicolon.
497
+ *
498
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-nonliteral-1) for more details.
499
+ *
500
+ * |[<!-- language="C" -->
501
+ * gchar *g_dgettext (gchar *domain_name, gchar *msgid) G_GNUC_FORMAT (2);
502
+ * ]|
503
+ */
504
+
505
+ /**
506
+ * G_GNUC_NORETURN:
507
+ *
508
+ * Expands to the GNU C `noreturn` function attribute if the compiler is gcc.
509
+ * It is used for declaring functions which never return. It enables
510
+ * optimization of the function, and avoids possible compiler warnings.
511
+ *
512
+ * Since 2.68, it is recommended that code uses %G_NORETURN instead of
513
+ * %G_GNUC_NORETURN, as that works on more platforms and compilers (in
514
+ * particular, MSVC and C++11) than %G_GNUC_NORETURN, which works with GCC and
515
+ * Clang only. %G_GNUC_NORETURN continues to work, so has not been deprecated
516
+ * yet.
517
+ *
518
+ * Place the attribute after the declaration, just before the semicolon.
519
+ *
520
+ * |[<!-- language="C" -->
521
+ * void g_abort (void) G_GNUC_NORETURN;
522
+ * ]|
523
+ *
524
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-noreturn-function-attribute) for more details.
525
+ */
526
+
527
+ /**
528
+ * G_GNUC_CONST:
529
+ *
530
+ * Expands to the GNU C `const` function attribute if the compiler is gcc.
531
+ * Declaring a function as `const` enables better optimization of calls to
532
+ * the function. A `const` function doesn't examine any values except its
533
+ * parameters, and has no effects except its return value.
534
+ *
535
+ * Place the attribute after the declaration, just before the semicolon.
536
+ *
537
+ * |[<!-- language="C" -->
538
+ * gchar g_ascii_tolower (gchar c) G_GNUC_CONST;
539
+ * ]|
540
+ *
541
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-const-function-attribute) for more details.
542
+ *
543
+ * A function that has pointer arguments and examines the data pointed to
544
+ * must not be declared `const`. Likewise, a function that calls a non-`const`
545
+ * function usually must not be `const`. It doesn't make sense for a `const`
546
+ * function to return `void`.
547
+ */
548
+
549
+ /**
550
+ * G_GNUC_UNUSED:
551
+ *
552
+ * Expands to the GNU C `unused` function attribute if the compiler is gcc.
553
+ * It is used for declaring functions and arguments which may never be used.
554
+ * It avoids possible compiler warnings.
555
+ *
556
+ * For functions, place the attribute after the declaration, just before the
557
+ * semicolon. For arguments, place the attribute at the beginning of the
558
+ * argument declaration.
559
+ *
560
+ * |[<!-- language="C" -->
561
+ * void my_unused_function (G_GNUC_UNUSED gint unused_argument,
562
+ * gint other_argument) G_GNUC_UNUSED;
563
+ * ]|
564
+ *
565
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-unused-function-attribute) for more details.
566
+ */
567
+
568
+ /**
569
+ * G_GNUC_NO_INSTRUMENT:
570
+ *
571
+ * Expands to the GNU C `no_instrument_function` function attribute if the
572
+ * compiler is gcc. Functions with this attribute will not be instrumented
573
+ * for profiling, when the compiler is called with the
574
+ * `-finstrument-functions` option.
575
+ *
576
+ * Place the attribute after the declaration, just before the semicolon.
577
+ *
578
+ * |[<!-- language="C" -->
579
+ * int do_uninteresting_things (void) G_GNUC_NO_INSTRUMENT;
580
+ * ]|
581
+ *
582
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-no_005finstrument_005ffunction-function-attribute) for more details.
583
+ */
584
+
585
+ #if g_macro__has_attribute(__format__)
586
+
587
+ #if !defined (__clang__) && G_GNUC_CHECK_VERSION (4, 4)
588
+ #define G_GNUC_PRINTF( format_idx, arg_idx ) \
589
+ __attribute__((__format__ (gnu_printf, format_idx, arg_idx)))
590
+ #define G_GNUC_SCANF( format_idx, arg_idx ) \
591
+ __attribute__((__format__ (gnu_scanf, format_idx, arg_idx)))
592
+ #define G_GNUC_STRFTIME( format_idx ) \
593
+ __attribute__((__format__ (gnu_strftime, format_idx, 0))) \
594
+ GLIB_AVAILABLE_MACRO_IN_2_60
595
+ #else
596
+ #define G_GNUC_PRINTF( format_idx, arg_idx ) \
597
+ __attribute__((__format__ (__printf__, format_idx, arg_idx)))
598
+ #define G_GNUC_SCANF( format_idx, arg_idx ) \
599
+ __attribute__((__format__ (__scanf__, format_idx, arg_idx)))
600
+ #define G_GNUC_STRFTIME( format_idx ) \
601
+ __attribute__((__format__ (__strftime__, format_idx, 0))) \
602
+ GLIB_AVAILABLE_MACRO_IN_2_60
603
+ #endif
604
+
605
+ #else
606
+
607
+ #define G_GNUC_PRINTF( format_idx, arg_idx )
608
+ #define G_GNUC_SCANF( format_idx, arg_idx )
609
+ #define G_GNUC_STRFTIME( format_idx ) \
610
+ GLIB_AVAILABLE_MACRO_IN_2_60
611
+
612
+ #endif
613
+
614
+ #if g_macro__has_attribute(__format_arg__)
615
+ #define G_GNUC_FORMAT(arg_idx) \
616
+ __attribute__ ((__format_arg__ (arg_idx)))
617
+ #else
618
+ #define G_GNUC_FORMAT( arg_idx )
619
+ #endif
620
+
621
+ #if g_macro__has_attribute(__noreturn__)
622
+ #define G_GNUC_NORETURN \
623
+ __attribute__ ((__noreturn__))
624
+ #else
625
+ /* NOTE: MSVC has __declspec(noreturn) but unlike GCC __attribute__,
626
+ * __declspec can only be placed at the start of the function prototype
627
+ * and not at the end, so we can't use it without breaking API.
628
+ */
629
+ #define G_GNUC_NORETURN
630
+ #endif
631
+
632
+ #if g_macro__has_attribute(__const__)
633
+ #define G_GNUC_CONST \
634
+ __attribute__ ((__const__))
635
+ #else
636
+ #define G_GNUC_CONST
637
+ #endif
638
+
639
+ #if g_macro__has_attribute(__unused__)
640
+ #define G_GNUC_UNUSED \
641
+ __attribute__ ((__unused__))
642
+ #else
643
+ #define G_GNUC_UNUSED
644
+ #endif
645
+
646
+ #if g_macro__has_attribute(__no_instrument_function__)
647
+ #define G_GNUC_NO_INSTRUMENT \
648
+ __attribute__ ((__no_instrument_function__))
649
+ #else
650
+ #define G_GNUC_NO_INSTRUMENT
651
+ #endif
652
+
653
+ /**
654
+ * G_GNUC_FALLTHROUGH:
655
+ *
656
+ * Expands to the GNU C `fallthrough` statement attribute if the compiler supports it.
657
+ * This allows declaring case statement to explicitly fall through in switch
658
+ * statements. To enable this feature, use `-Wimplicit-fallthrough` during
659
+ * compilation.
660
+ *
661
+ * Put the attribute right before the case statement you want to fall through
662
+ * to.
663
+ *
664
+ * |[<!-- language="C" -->
665
+ * switch (foo)
666
+ * {
667
+ * case 1:
668
+ * g_message ("it's 1");
669
+ * G_GNUC_FALLTHROUGH;
670
+ * case 2:
671
+ * g_message ("it's either 1 or 2");
672
+ * break;
673
+ * }
674
+ * ]|
675
+ *
676
+ *
677
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Statement-Attributes.html#index-fallthrough-statement-attribute) for more details.
678
+ *
679
+ * Since: 2.60
680
+ */
681
+ #if g_macro__has_attribute(fallthrough)
682
+ #define G_GNUC_FALLTHROUGH __attribute__((fallthrough)) \
683
+ GLIB_AVAILABLE_MACRO_IN_2_60
684
+ #else
685
+ #define G_GNUC_FALLTHROUGH \
686
+ GLIB_AVAILABLE_MACRO_IN_2_60
687
+ #endif
688
+
689
+ /**
690
+ * G_GNUC_DEPRECATED:
691
+ *
692
+ * Expands to the GNU C `deprecated` attribute if the compiler is gcc.
693
+ * It can be used to mark `typedef`s, variables and functions as deprecated.
694
+ * When called with the `-Wdeprecated-declarations` option,
695
+ * gcc will generate warnings when deprecated interfaces are used.
696
+ *
697
+ * Place the attribute after the declaration, just before the semicolon.
698
+ *
699
+ * |[<!-- language="C" -->
700
+ * int my_mistake (void) G_GNUC_DEPRECATED;
701
+ * ]|
702
+ *
703
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-deprecated-function-attribute) for more details.
704
+ *
705
+ * Since: 2.2
706
+ */
707
+ #if g_macro__has_attribute(__deprecated__)
708
+ #define G_GNUC_DEPRECATED __attribute__((__deprecated__))
709
+ #else
710
+ #define G_GNUC_DEPRECATED
711
+ #endif /* __GNUC__ */
712
+
713
+ /**
714
+ * G_GNUC_DEPRECATED_FOR:
715
+ * @f: the intended replacement for the deprecated symbol,
716
+ * such as the name of a function
717
+ *
718
+ * Like %G_GNUC_DEPRECATED, but names the intended replacement for the
719
+ * deprecated symbol if the version of gcc in use is new enough to support
720
+ * custom deprecation messages.
721
+ *
722
+ * Place the attribute after the declaration, just before the semicolon.
723
+ *
724
+ * |[<!-- language="C" -->
725
+ * int my_mistake (void) G_GNUC_DEPRECATED_FOR(my_replacement);
726
+ * ]|
727
+ *
728
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-deprecated-function-attribute) for more details.
729
+ *
730
+ * Note that if @f is a macro, it will be expanded in the warning message.
731
+ * You can enclose it in quotes to prevent this. (The quotes will show up
732
+ * in the warning, but it's better than showing the macro expansion.)
733
+ *
734
+ * Since: 2.26
735
+ */
736
+ #if G_GNUC_CHECK_VERSION(4, 5) || defined(__clang__)
737
+ #define G_GNUC_DEPRECATED_FOR(f) \
738
+ __attribute__((deprecated("Use " #f " instead"))) \
739
+ GLIB_AVAILABLE_MACRO_IN_2_26
740
+ #else
741
+ #define G_GNUC_DEPRECATED_FOR(f) G_GNUC_DEPRECATED \
742
+ GLIB_AVAILABLE_MACRO_IN_2_26
743
+ #endif /* __GNUC__ */
744
+
745
+ #ifdef __ICC
746
+ #define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
747
+ _Pragma ("warning (push)") \
748
+ _Pragma ("warning (disable:1478)")
749
+ #define G_GNUC_END_IGNORE_DEPRECATIONS \
750
+ _Pragma ("warning (pop)")
751
+ #elif G_GNUC_CHECK_VERSION(4, 6)
752
+ #define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
753
+ _Pragma ("GCC diagnostic push") \
754
+ _Pragma ("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
755
+ #define G_GNUC_END_IGNORE_DEPRECATIONS \
756
+ _Pragma ("GCC diagnostic pop")
757
+ #elif defined (_MSC_VER) && (_MSC_VER >= 1500) && !defined (__clang__)
758
+ #define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
759
+ __pragma (warning (push)) \
760
+ __pragma (warning (disable : 4996))
761
+ #define G_GNUC_END_IGNORE_DEPRECATIONS \
762
+ __pragma (warning (pop))
763
+ #elif defined (__clang__)
764
+ #define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
765
+ _Pragma("clang diagnostic push") \
766
+ _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"")
767
+ #define G_GNUC_END_IGNORE_DEPRECATIONS \
768
+ _Pragma("clang diagnostic pop")
769
+ #else
770
+ #define G_GNUC_BEGIN_IGNORE_DEPRECATIONS
771
+ #define G_GNUC_END_IGNORE_DEPRECATIONS
772
+ #define GLIB_CANNOT_IGNORE_DEPRECATIONS
773
+ #endif
774
+
775
+ /**
776
+ * G_GNUC_MAY_ALIAS:
777
+ *
778
+ * Expands to the GNU C `may_alias` type attribute if the compiler is gcc.
779
+ * Types with this attribute will not be subjected to type-based alias
780
+ * analysis, but are assumed to alias with any other type, just like `char`.
781
+ *
782
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Type-Attributes.html#index-may_005falias-type-attribute) for details.
783
+ *
784
+ * Since: 2.14
785
+ */
786
+ #if g_macro__has_attribute(may_alias)
787
+ #define G_GNUC_MAY_ALIAS __attribute__((may_alias))
788
+ #else
789
+ #define G_GNUC_MAY_ALIAS
790
+ #endif
791
+
792
+ /**
793
+ * G_GNUC_WARN_UNUSED_RESULT:
794
+ *
795
+ * Expands to the GNU C `warn_unused_result` function attribute if the compiler
796
+ * is gcc. This function attribute makes the compiler emit a warning if the
797
+ * result of a function call is ignored.
798
+ *
799
+ * Place the attribute after the declaration, just before the semicolon.
800
+ *
801
+ * |[<!-- language="C" -->
802
+ * GList *g_list_append (GList *list,
803
+ * gpointer data) G_GNUC_WARN_UNUSED_RESULT;
804
+ * ]|
805
+ *
806
+ * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-warn_005funused_005fresult-function-attribute) for more details.
807
+ *
808
+ * Since: 2.10
809
+ */
810
+ #if g_macro__has_attribute(warn_unused_result)
811
+ #define G_GNUC_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
812
+ #else
813
+ #define G_GNUC_WARN_UNUSED_RESULT
814
+ #endif /* __GNUC__ */
815
+
816
+ /**
817
+ * G_GNUC_FUNCTION:
818
+ *
819
+ * Expands to "" on all modern compilers, and to __FUNCTION__ on gcc
820
+ * version 2.x. Don't use it.
821
+ *
822
+ * Deprecated: 2.16: Use G_STRFUNC() instead
823
+ */
824
+
825
+ /**
826
+ * G_GNUC_PRETTY_FUNCTION:
827
+ *
828
+ * Expands to "" on all modern compilers, and to __PRETTY_FUNCTION__
829
+ * on gcc version 2.x. Don't use it.
830
+ *
831
+ * Deprecated: 2.16: Use G_STRFUNC() instead
832
+ */
833
+
834
+ /* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with
835
+ * macros, so we can refer to them as strings unconditionally.
836
+ * usage not-recommended since gcc-3.0
837
+ *
838
+ * Mark them as deprecated since 2.26, since that’s when version macros were
839
+ * introduced.
840
+ */
841
+ #if defined (__GNUC__) && (__GNUC__ < 3)
842
+ #define G_GNUC_FUNCTION __FUNCTION__ GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
843
+ #define G_GNUC_PRETTY_FUNCTION __PRETTY_FUNCTION__ GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
844
+ #else /* !__GNUC__ */
845
+ #define G_GNUC_FUNCTION "" GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
846
+ #define G_GNUC_PRETTY_FUNCTION "" GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
847
+ #endif /* !__GNUC__ */
848
+
849
+ #if g_macro__has_feature(attribute_analyzer_noreturn) && defined(__clang_analyzer__)
850
+ #define G_ANALYZER_ANALYZING 1
851
+ #define G_ANALYZER_NORETURN __attribute__((analyzer_noreturn))
852
+ #elif defined(__COVERITY__)
853
+ #define G_ANALYZER_ANALYZING 1
854
+ #define G_ANALYZER_NORETURN __attribute__((noreturn))
855
+ #else
856
+ #define G_ANALYZER_ANALYZING 0
857
+ #define G_ANALYZER_NORETURN
858
+ #endif
859
+
860
+ #define G_STRINGIFY(macro_or_string) G_STRINGIFY_ARG (macro_or_string)
861
+ #define G_STRINGIFY_ARG(contents) #contents
862
+
863
+ #ifndef __GI_SCANNER__ /* The static assert macro really confuses the introspection parser */
864
+ #define G_PASTE_ARGS(identifier1,identifier2) identifier1 ## identifier2
865
+ #define G_PASTE(identifier1,identifier2) G_PASTE_ARGS (identifier1, identifier2)
866
+ #if G_CXX_STD_CHECK_VERSION (11)
867
+ #define G_STATIC_ASSERT(expr) static_assert (expr, "Expression evaluates to false")
868
+ #elif (G_C_STD_CHECK_VERSION (11) || \
869
+ g_macro__has_feature(c_static_assert) || g_macro__has_extension(c_static_assert))
870
+ #define G_STATIC_ASSERT(expr) _Static_assert (expr, "Expression evaluates to false")
871
+ #else
872
+ #ifdef __COUNTER__
873
+ #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
874
+ #else
875
+ #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __LINE__)[(expr) ? 1 : -1] G_GNUC_UNUSED
876
+ #endif
877
+ #endif /* G_CXX_STD_CHECK_VERSION (11) */
878
+ #define G_STATIC_ASSERT_EXPR(expr) ((void) sizeof (char[(expr) ? 1 : -1]))
879
+ #endif /* !__GI_SCANNER__ */
880
+
881
+ /* Provide a string identifying the current code position */
882
+ #if defined (__GNUC__) && (__GNUC__ < 3) && !defined (G_CXX_STD_VERSION)
883
+ #define G_STRLOC __FILE__ ":" G_STRINGIFY (__LINE__) ":" __PRETTY_FUNCTION__ "()"
884
+ #else
885
+ #define G_STRLOC __FILE__ ":" G_STRINGIFY (__LINE__)
886
+ #endif
887
+
888
+ /* Provide a string identifying the current function, non-concatenatable */
889
+ #if defined (__GNUC__) && defined (G_CXX_STD_VERSION)
890
+ #define G_STRFUNC ((const char*) (__PRETTY_FUNCTION__))
891
+ #elif G_C_STD_CHECK_VERSION (99)
892
+ #define G_STRFUNC ((const char*) (__func__))
893
+ #elif defined (__GNUC__) || (defined(_MSC_VER) && (_MSC_VER > 1300))
894
+ #define G_STRFUNC ((const char*) (__FUNCTION__))
895
+ #else
896
+ #define G_STRFUNC ((const char*) ("???"))
897
+ #endif
898
+
899
+ /* Guard C code in headers, while including them from C++ */
900
+ #ifdef G_CXX_STD_VERSION
901
+ #define G_BEGIN_DECLS extern "C" {
902
+ #define G_END_DECLS }
903
+ #else
904
+ #define G_BEGIN_DECLS
905
+ #define G_END_DECLS
906
+ #endif
907
+
908
+ /* Provide definitions for some commonly used macros.
909
+ * Some of them are only provided if they haven't already
910
+ * been defined. It is assumed that if they are already
911
+ * defined then the current definition is correct.
912
+ */
913
+ #ifndef NULL
914
+ # if G_CXX_STD_CHECK_VERSION (11)
915
+ # define NULL (nullptr)
916
+ # elif defined (G_CXX_STD_VERSION)
917
+ # define NULL (0L)
918
+ # else
919
+ # define NULL ((void*) 0)
920
+ # endif /* G_CXX_STD_CHECK_VERSION (11) */
921
+ #endif
922
+
923
+ #ifndef FALSE
924
+ #define FALSE (0)
925
+ #endif
926
+
927
+ #ifndef TRUE
928
+ #define TRUE (!FALSE)
929
+ #endif
930
+
931
+ #undef MAX
932
+ #define MAX(a, b) (((a) > (b)) ? (a) : (b))
933
+
934
+ #undef MIN
935
+ #define MIN(a, b) (((a) < (b)) ? (a) : (b))
936
+
937
+ #undef ABS
938
+ #define ABS(a) (((a) < 0) ? -(a) : (a))
939
+
940
+ #undef CLAMP
941
+ #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
942
+
943
+ #define G_APPROX_VALUE(a, b, epsilon) \
944
+ (((a) > (b) ? (a) - (b) : (b) - (a)) < (epsilon))
945
+
946
+ /* Count the number of elements in an array. The array must be defined
947
+ * as such; using this with a dynamically allocated array will give
948
+ * incorrect results.
949
+ */
950
+ #define G_N_ELEMENTS(arr) (sizeof (arr) / sizeof ((arr)[0]))
951
+
952
+ /* Macros by analogy to GINT_TO_POINTER, GPOINTER_TO_INT
953
+ */
954
+ #define GPOINTER_TO_SIZE(p) ((gsize) (p))
955
+ #define GSIZE_TO_POINTER(s) ((gpointer) (gsize) (s))
956
+
957
+ /* Provide convenience macros for handling structure
958
+ * fields through their offsets.
959
+ */
960
+
961
+ #if G_GNUC_CHECK_VERSION(4, 0) || defined(_MSC_VER)
962
+ #define G_STRUCT_OFFSET(struct_type, member) \
963
+ ((glong) offsetof (struct_type, member))
964
+ #else
965
+ #define G_STRUCT_OFFSET(struct_type, member) \
966
+ ((glong) ((guint8*) &((struct_type*) 0)->member))
967
+ #endif
968
+
969
+ #define G_STRUCT_MEMBER_P(struct_p, struct_offset) \
970
+ ((gpointer) ((guint8*) (struct_p) + (glong) (struct_offset)))
971
+ #define G_STRUCT_MEMBER(member_type, struct_p, struct_offset) \
972
+ (*(member_type*) G_STRUCT_MEMBER_P ((struct_p), (struct_offset)))
973
+
974
+ /* Provide simple macro statement wrappers:
975
+ * G_STMT_START { statements; } G_STMT_END;
976
+ * This can be used as a single statement, like:
977
+ * if (x) G_STMT_START { ... } G_STMT_END; else ...
978
+ * This intentionally does not use compiler extensions like GCC's '({...})' to
979
+ * avoid portability issue or side effects when compiled with different compilers.
980
+ * MSVC complains about "while(0)": C4127: "Conditional expression is constant",
981
+ * so we use __pragma to avoid the warning since the use here is intentional.
982
+ */
983
+ #if !(defined (G_STMT_START) && defined (G_STMT_END))
984
+ #define G_STMT_START do
985
+ #if defined (_MSC_VER) && (_MSC_VER >= 1500)
986
+ #define G_STMT_END \
987
+ __pragma(warning(push)) \
988
+ __pragma(warning(disable:4127)) \
989
+ while(0) \
990
+ __pragma(warning(pop))
991
+ #else
992
+ #define G_STMT_END while (0)
993
+ #endif
994
+ #endif
995
+
996
+ /* Provide G_ALIGNOF alignment macro.
997
+ *
998
+ * Note we cannot use the gcc __alignof__ operator here, as that returns the
999
+ * preferred alignment rather than the minimal alignment. See
1000
+ * https://gitlab.gnome.org/GNOME/glib/merge_requests/538/diffs#note_390790.
1001
+ */
1002
+
1003
+ /**
1004
+ * G_ALIGNOF
1005
+ * @type: a type-name
1006
+ *
1007
+ * Return the minimal alignment required by the platform ABI for values of the given
1008
+ * type. The address of a variable or struct member of the given type must always be
1009
+ * a multiple of this alignment. For example, most platforms require int variables
1010
+ * to be aligned at a 4-byte boundary, so `G_ALIGNOF (int)` is 4 on most platforms.
1011
+ *
1012
+ * Note this is not necessarily the same as the value returned by GCC’s
1013
+ * `__alignof__` operator, which returns the preferred alignment for a type.
1014
+ * The preferred alignment may be a stricter alignment than the minimal
1015
+ * alignment.
1016
+ *
1017
+ * Since: 2.60
1018
+ */
1019
+ #if G_C_STD_CHECK_VERSION (11)
1020
+ #define G_ALIGNOF(type) _Alignof (type) \
1021
+ GLIB_AVAILABLE_MACRO_IN_2_60
1022
+ #else
1023
+ #define G_ALIGNOF(type) (G_STRUCT_OFFSET (struct { char a; type b; }, b)) \
1024
+ GLIB_AVAILABLE_MACRO_IN_2_60
1025
+ #endif
1026
+
1027
+ /**
1028
+ * G_CONST_RETURN:
1029
+ *
1030
+ * If %G_DISABLE_CONST_RETURNS is defined, this macro expands
1031
+ * to nothing. By default, the macro expands to const. The macro
1032
+ * can be used in place of const for functions that return a value
1033
+ * that should not be modified. The purpose of this macro is to allow
1034
+ * us to turn on const for returned constant strings by default, while
1035
+ * allowing programmers who find that annoying to turn it off. This macro
1036
+ * should only be used for return values and for "out" parameters, it
1037
+ * doesn't make sense for "in" parameters.
1038
+ *
1039
+ * Deprecated: 2.30: API providers should replace all existing uses with
1040
+ * const and API consumers should adjust their code accordingly
1041
+ */
1042
+ #ifdef G_DISABLE_CONST_RETURNS
1043
+ #define G_CONST_RETURN GLIB_DEPRECATED_MACRO_IN_2_30_FOR(const)
1044
+ #else
1045
+ #define G_CONST_RETURN const GLIB_DEPRECATED_MACRO_IN_2_30_FOR(const)
1046
+ #endif
1047
+
1048
+ /**
1049
+ * G_NORETURN:
1050
+ *
1051
+ * Expands to the GNU C or MSVC `noreturn` function attribute depending on
1052
+ * the compiler. It is used for declaring functions which never return.
1053
+ * Enables optimization of the function, and avoids possible compiler warnings.
1054
+ *
1055
+ * Note that %G_NORETURN supersedes the previous %G_GNUC_NORETURN macro, which
1056
+ * will eventually be deprecated. %G_NORETURN supports more platforms.
1057
+ *
1058
+ * Place the attribute before the function declaration as follows:
1059
+ *
1060
+ * |[<!-- language="C" -->
1061
+ * G_NORETURN void g_abort (void);
1062
+ * ]|
1063
+ *
1064
+ * Since: 2.68
1065
+ */
1066
+ /* Note: We can’t annotate this with GLIB_AVAILABLE_MACRO_IN_2_68 because it’s
1067
+ * used within the GLib headers in function declarations which are always
1068
+ * evaluated when a header is included. This results in warnings in third party
1069
+ * code which includes glib.h, even if the third party code doesn’t use the new
1070
+ * macro itself. */
1071
+ #if G_CXX_STD_CHECK_VERSION (11)
1072
+ /* Use ISO C++11 syntax when the compiler supports it. */
1073
+ # define G_NORETURN [[noreturn]]
1074
+ #elif g_macro__has_attribute(__noreturn__)
1075
+ /* For compatibility with G_NORETURN_FUNCPTR on clang, use
1076
+ __attribute__((__noreturn__)), not _Noreturn. */
1077
+ # define G_NORETURN __attribute__ ((__noreturn__))
1078
+ #elif defined (_MSC_VER) && (1200 <= _MSC_VER)
1079
+ /* Use MSVC specific syntax. */
1080
+ # define G_NORETURN __declspec (noreturn)
1081
+ /* Use ISO C11 syntax when the compiler supports it. */
1082
+ #elif G_C_STD_CHECK_VERSION (11)
1083
+ # define G_NORETURN _Noreturn
1084
+ #else
1085
+ # define G_NORETURN /* empty */
1086
+ #endif
1087
+
1088
+ /**
1089
+ * G_NORETURN_FUNCPTR:
1090
+ *
1091
+ * Expands to the GNU C or MSVC `noreturn` function attribute depending on
1092
+ * the compiler. It is used for declaring function pointers which never return.
1093
+ * Enables optimization of the function, and avoids possible compiler warnings.
1094
+ *
1095
+ * Place the attribute before the function declaration as follows:
1096
+ *
1097
+ * |[<!-- language="C" -->
1098
+ * G_NORETURN_FUNCPTR void (*funcptr) (void);
1099
+ * ]|
1100
+ *
1101
+ * Note that if the function is not a function pointer, you can simply use
1102
+ * the %G_NORETURN macro as follows:
1103
+ *
1104
+ * |[<!-- language="C" -->
1105
+ * G_NORETURN void g_abort (void);
1106
+ * ]|
1107
+ *
1108
+ * Since: 2.68
1109
+ */
1110
+ #if g_macro__has_attribute(__noreturn__)
1111
+ # define G_NORETURN_FUNCPTR __attribute__ ((__noreturn__)) \
1112
+ GLIB_AVAILABLE_MACRO_IN_2_68
1113
+ #else
1114
+ # define G_NORETURN_FUNCPTR /* empty */ \
1115
+ GLIB_AVAILABLE_MACRO_IN_2_68
1116
+ #endif
1117
+
1118
+ /**
1119
+ * G_ALWAYS_INLINE:
1120
+ *
1121
+ * Expands to the GNU C `always_inline` or MSVC `__forceinline` function
1122
+ * attribute depending on the compiler. It is used for declaring functions
1123
+ * as always inlined, ignoring the compiler optimization levels.
1124
+ *
1125
+ * The attribute may be placed before the declaration or definition,
1126
+ * right before the `static` keyword.
1127
+ *
1128
+ * |[<!-- language="C" -->
1129
+ * G_ALWAYS_INLINE
1130
+ * static int
1131
+ * do_inline_this (void)
1132
+ * {
1133
+ * ...
1134
+ * }
1135
+ * ]|
1136
+ *
1137
+ * See the
1138
+ * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-always_005finline-function-attribute)
1139
+ * and the
1140
+ * [MSVC documentation](https://docs.microsoft.com/en-us/visualstudio/misc/inline-inline-forceinline)
1141
+ *
1142
+ * Since: 2.74
1143
+ */
1144
+ /* Note: We can’t annotate this with GLIB_AVAILABLE_MACRO_IN_2_74 because it’s
1145
+ * used within the GLib headers in function declarations which are always
1146
+ * evaluated when a header is included. This results in warnings in third party
1147
+ * code which includes glib.h, even if the third party code doesn’t use the new
1148
+ * macro itself. */
1149
+ #if g_macro__has_attribute(__always_inline__)
1150
+ # if G_CXX_STD_CHECK_VERSION (11)
1151
+ /* Use ISO C++11 syntax when the compiler supports it. */
1152
+ # define G_ALWAYS_INLINE [[gnu::always_inline]]
1153
+ # else
1154
+ # define G_ALWAYS_INLINE __attribute__ ((__always_inline__))
1155
+ # endif
1156
+ #elif defined (_MSC_VER)
1157
+ /* Use MSVC specific syntax. */
1158
+ # if G_CXX_STD_CHECK_VERSION (20) && _MSC_VER >= 1927
1159
+ # define G_ALWAYS_INLINE [[msvc::forceinline]]
1160
+ # else
1161
+ # define G_ALWAYS_INLINE __forceinline
1162
+ # endif
1163
+ #else
1164
+ # define G_ALWAYS_INLINE /* empty */
1165
+ #endif
1166
+
1167
+ /**
1168
+ * G_NO_INLINE:
1169
+ *
1170
+ * Expands to the GNU C or MSVC `noinline` function attribute
1171
+ * depending on the compiler. It is used for declaring functions
1172
+ * preventing from being considered for inlining.
1173
+ *
1174
+ * Note that %G_NO_INLINE supersedes the previous %G_GNUC_NO_INLINE
1175
+ * macro, which will eventually be deprecated.
1176
+ * %G_NO_INLINE supports more platforms.
1177
+ *
1178
+ * The attribute may be placed before the declaration or definition,
1179
+ * right before the `static` keyword.
1180
+ *
1181
+ * |[<!-- language="C" -->
1182
+ * G_NO_INLINE
1183
+ * static int
1184
+ * do_not_inline_this (void)
1185
+ * {
1186
+ * ...
1187
+ * }
1188
+ * ]|
1189
+ *
1190
+ * Since: 2.74
1191
+ */
1192
+ /* Note: We can’t annotate this with GLIB_AVAILABLE_MACRO_IN_2_74 because it’s
1193
+ * used within the GLib headers in function declarations which are always
1194
+ * evaluated when a header is included. This results in warnings in third party
1195
+ * code which includes glib.h, even if the third party code doesn’t use the new
1196
+ * macro itself. */
1197
+ #if g_macro__has_attribute(__noinline__)
1198
+ # if G_CXX_STD_CHECK_VERSION (11)
1199
+ /* Use ISO C++11 syntax when the compiler supports it. */
1200
+ # if defined (__GNUC__)
1201
+ # define G_NO_INLINE [[gnu::noinline]]
1202
+ # elif defined (_MSC_VER)
1203
+ # if G_CXX_STD_CHECK_VERSION (20) && _MSC_VER >= 1927
1204
+ # define G_NO_INLINE [[msvc::noinline]]
1205
+ # else
1206
+ # define G_NO_INLINE __declspec (noinline)
1207
+ # endif
1208
+ # endif
1209
+ # else
1210
+ # define G_NO_INLINE __attribute__ ((__noinline__))
1211
+ # endif
1212
+ #elif defined (_MSC_VER) && (1200 <= _MSC_VER)
1213
+ /* Use MSVC specific syntax. */
1214
+ /* Use ISO C++11 syntax when the compiler supports it. */
1215
+ # if G_CXX_STD_CHECK_VERSION (20) && _MSC_VER >= 1927
1216
+ # define G_NO_INLINE [[msvc::noinline]]
1217
+ # else
1218
+ # define G_NO_INLINE __declspec (noinline)
1219
+ # endif
1220
+ #else
1221
+ # define G_NO_INLINE /* empty */
1222
+ #endif
1223
+
1224
+ /*
1225
+ * The G_LIKELY and G_UNLIKELY macros let the programmer give hints to
1226
+ * the compiler about the expected result of an expression. Some compilers
1227
+ * can use this information for optimizations.
1228
+ *
1229
+ * The _G_BOOLEAN_EXPR macro is intended to trigger a gcc warning when
1230
+ * putting assignments in g_return_if_fail ().
1231
+ */
1232
+ #if G_GNUC_CHECK_VERSION(2, 0) && defined(__OPTIMIZE__)
1233
+ #define _G_BOOLEAN_EXPR_IMPL(uniq, expr) \
1234
+ G_GNUC_EXTENSION ({ \
1235
+ int G_PASTE (_g_boolean_var_, uniq); \
1236
+ if (expr) \
1237
+ G_PASTE (_g_boolean_var_, uniq) = 1; \
1238
+ else \
1239
+ G_PASTE (_g_boolean_var_, uniq) = 0; \
1240
+ G_PASTE (_g_boolean_var_, uniq); \
1241
+ })
1242
+ #define _G_BOOLEAN_EXPR(expr) _G_BOOLEAN_EXPR_IMPL (__COUNTER__, expr)
1243
+ #define G_LIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 1))
1244
+ #define G_UNLIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 0))
1245
+ #else
1246
+ #define G_LIKELY(expr) (expr)
1247
+ #define G_UNLIKELY(expr) (expr)
1248
+ #endif
1249
+
1250
+ #if __GNUC__ >= 4 && !defined(_WIN32) && !defined(__CYGWIN__)
1251
+ #define G_HAVE_GNUC_VISIBILITY 1
1252
+ #endif
1253
+
1254
+ /* GLIB_CANNOT_IGNORE_DEPRECATIONS is defined above for compilers that do not
1255
+ * have a way to temporarily suppress deprecation warnings. In these cases,
1256
+ * suppress the deprecated attribute altogether (otherwise a simple #include
1257
+ * <glib.h> will emit a barrage of warnings).
1258
+ */
1259
+ #if defined(GLIB_CANNOT_IGNORE_DEPRECATIONS)
1260
+ #define G_DEPRECATED
1261
+ #elif G_GNUC_CHECK_VERSION(3, 1) || defined(__clang__)
1262
+ #define G_DEPRECATED __attribute__((__deprecated__))
1263
+ #elif defined(_MSC_VER) && (_MSC_VER >= 1300)
1264
+ #define G_DEPRECATED __declspec(deprecated)
1265
+ #else
1266
+ #define G_DEPRECATED
1267
+ #endif
1268
+
1269
+ #if defined(GLIB_CANNOT_IGNORE_DEPRECATIONS)
1270
+ #define G_DEPRECATED_FOR(f) G_DEPRECATED
1271
+ #elif G_GNUC_CHECK_VERSION(4, 5) || defined(__clang__)
1272
+ #define G_DEPRECATED_FOR(f) __attribute__((__deprecated__("Use '" #f "' instead")))
1273
+ #elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
1274
+ #define G_DEPRECATED_FOR(f) __declspec(deprecated("is deprecated. Use '" #f "' instead"))
1275
+ #else
1276
+ #define G_DEPRECATED_FOR(f) G_DEPRECATED
1277
+ #endif
1278
+
1279
+ #if G_GNUC_CHECK_VERSION(4, 5) || defined(__clang__)
1280
+ #define G_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available before " #maj "." #min)))
1281
+ #elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
1282
+ #define G_UNAVAILABLE(maj,min) __declspec(deprecated("is not available before " #maj "." #min))
1283
+ #else
1284
+ #define G_UNAVAILABLE(maj,min) G_DEPRECATED
1285
+ #endif
1286
+
1287
+ /* These macros are used to mark deprecated symbols in GLib headers,
1288
+ * and thus have to be exposed in installed headers. But please
1289
+ * do *not* use them in other projects. Instead, use G_DEPRECATED
1290
+ * or define your own wrappers around it.
1291
+ */
1292
+
1293
+ #if !defined(GLIB_DISABLE_DEPRECATION_WARNINGS) && \
1294
+ (G_GNUC_CHECK_VERSION(4, 6) || \
1295
+ __clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 4))
1296
+ #define _GLIB_GNUC_DO_PRAGMA(x) _Pragma(G_STRINGIFY (x))
1297
+ #define GLIB_DEPRECATED_MACRO _GLIB_GNUC_DO_PRAGMA(GCC warning "Deprecated pre-processor symbol")
1298
+ #define GLIB_DEPRECATED_MACRO_FOR(f) \
1299
+ _GLIB_GNUC_DO_PRAGMA(GCC warning G_STRINGIFY (Deprecated pre-processor symbol: replace with #f))
1300
+ #define GLIB_UNAVAILABLE_MACRO(maj,min) \
1301
+ _GLIB_GNUC_DO_PRAGMA(GCC warning G_STRINGIFY (Not available before maj.min))
1302
+ #else
1303
+ #define GLIB_DEPRECATED_MACRO
1304
+ #define GLIB_DEPRECATED_MACRO_FOR(f)
1305
+ #define GLIB_UNAVAILABLE_MACRO(maj,min)
1306
+ #endif
1307
+
1308
+ #if !defined(GLIB_DISABLE_DEPRECATION_WARNINGS) && \
1309
+ (G_GNUC_CHECK_VERSION(6, 1) || \
1310
+ (defined (__clang_major__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 0))))
1311
+ #define GLIB_DEPRECATED_ENUMERATOR G_DEPRECATED
1312
+ #define GLIB_DEPRECATED_ENUMERATOR_FOR(f) G_DEPRECATED_FOR(f)
1313
+ #define GLIB_UNAVAILABLE_ENUMERATOR(maj,min) G_UNAVAILABLE(maj,min)
1314
+ #else
1315
+ #define GLIB_DEPRECATED_ENUMERATOR
1316
+ #define GLIB_DEPRECATED_ENUMERATOR_FOR(f)
1317
+ #define GLIB_UNAVAILABLE_ENUMERATOR(maj,min)
1318
+ #endif
1319
+
1320
+ #if !defined(GLIB_DISABLE_DEPRECATION_WARNINGS) && \
1321
+ (G_GNUC_CHECK_VERSION(3, 1) || \
1322
+ (defined (__clang_major__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 0))))
1323
+ #define GLIB_DEPRECATED_TYPE G_DEPRECATED
1324
+ #define GLIB_DEPRECATED_TYPE_FOR(f) G_DEPRECATED_FOR(f)
1325
+ #define GLIB_UNAVAILABLE_TYPE(maj,min) G_UNAVAILABLE(maj,min)
1326
+ #else
1327
+ #define GLIB_DEPRECATED_TYPE
1328
+ #define GLIB_DEPRECATED_TYPE_FOR(f)
1329
+ #define GLIB_UNAVAILABLE_TYPE(maj,min)
1330
+ #endif
1331
+
1332
+ #ifndef __GI_SCANNER__
1333
+
1334
+ #if g_macro__has_attribute(cleanup)
1335
+
1336
+ /* these macros are private; note that gstdio.h also uses _GLIB_CLEANUP */
1337
+ #define _GLIB_AUTOPTR_FUNC_NAME(TypeName) glib_autoptr_cleanup_##TypeName
1338
+ #define _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) glib_autoptr_clear_##TypeName
1339
+ #define _GLIB_AUTOPTR_TYPENAME(TypeName) TypeName##_autoptr
1340
+ #define _GLIB_AUTOPTR_LIST_FUNC_NAME(TypeName) glib_listautoptr_cleanup_##TypeName
1341
+ #define _GLIB_AUTOPTR_LIST_TYPENAME(TypeName) TypeName##_listautoptr
1342
+ #define _GLIB_AUTOPTR_SLIST_FUNC_NAME(TypeName) glib_slistautoptr_cleanup_##TypeName
1343
+ #define _GLIB_AUTOPTR_SLIST_TYPENAME(TypeName) TypeName##_slistautoptr
1344
+ #define _GLIB_AUTOPTR_QUEUE_FUNC_NAME(TypeName) glib_queueautoptr_cleanup_##TypeName
1345
+ #define _GLIB_AUTOPTR_QUEUE_TYPENAME(TypeName) TypeName##_queueautoptr
1346
+ #define _GLIB_AUTO_FUNC_NAME(TypeName) glib_auto_cleanup_##TypeName
1347
+ #define _GLIB_CLEANUP(func) __attribute__((cleanup(func)))
1348
+ #define _GLIB_DEFINE_AUTOPTR_CLEANUP_FUNCS(TypeName, ParentName, cleanup) \
1349
+ typedef TypeName *_GLIB_AUTOPTR_TYPENAME(TypeName); \
1350
+ typedef GList *_GLIB_AUTOPTR_LIST_TYPENAME(TypeName); \
1351
+ typedef GSList *_GLIB_AUTOPTR_SLIST_TYPENAME(TypeName); \
1352
+ typedef GQueue *_GLIB_AUTOPTR_QUEUE_TYPENAME(TypeName); \
1353
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
1354
+ static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) (TypeName *_ptr) \
1355
+ { if (_ptr) (cleanup) ((ParentName *) _ptr); } \
1356
+ static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_FUNC_NAME(TypeName) (TypeName **_ptr) \
1357
+ { _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) (*_ptr); } \
1358
+ static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_LIST_FUNC_NAME(TypeName) (GList **_l) \
1359
+ { g_list_free_full (*_l, (GDestroyNotify) (void(*)(void)) cleanup); } \
1360
+ static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_SLIST_FUNC_NAME(TypeName) (GSList **_l) \
1361
+ { g_slist_free_full (*_l, (GDestroyNotify) (void(*)(void)) cleanup); } \
1362
+ static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_QUEUE_FUNC_NAME(TypeName) (GQueue **_q) \
1363
+ { if (*_q) g_queue_free_full (*_q, (GDestroyNotify) (void(*)(void)) cleanup); } \
1364
+ G_GNUC_END_IGNORE_DEPRECATIONS
1365
+ #define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName) \
1366
+ _GLIB_DEFINE_AUTOPTR_CLEANUP_FUNCS(ModuleObjName, ParentName, _GLIB_AUTOPTR_CLEAR_FUNC_NAME(ParentName))
1367
+
1368
+
1369
+ /* these macros are API */
1370
+ #define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func) \
1371
+ _GLIB_DEFINE_AUTOPTR_CLEANUP_FUNCS(TypeName, TypeName, func)
1372
+ #define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func) \
1373
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
1374
+ static G_GNUC_UNUSED inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { (func) (_ptr); } \
1375
+ G_GNUC_END_IGNORE_DEPRECATIONS
1376
+ #define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none) \
1377
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
1378
+ static G_GNUC_UNUSED inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { if (*_ptr != none) (func) (*_ptr); } \
1379
+ G_GNUC_END_IGNORE_DEPRECATIONS
1380
+ #define g_autoptr(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_TYPENAME(TypeName)
1381
+ #define g_autolist(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_LIST_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_LIST_TYPENAME(TypeName)
1382
+ #define g_autoslist(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_SLIST_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_SLIST_TYPENAME(TypeName)
1383
+ #define g_autoqueue(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_QUEUE_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_QUEUE_TYPENAME(TypeName)
1384
+ #define g_auto(TypeName) _GLIB_CLEANUP(_GLIB_AUTO_FUNC_NAME(TypeName)) TypeName
1385
+ #define g_autofree _GLIB_CLEANUP(g_autoptr_cleanup_generic_gfree)
1386
+
1387
+ #else /* not GNU C */
1388
+ /* this (dummy) macro is private */
1389
+ #define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName)
1390
+
1391
+ /* these (dummy) macros are API */
1392
+ #define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func)
1393
+ #define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func)
1394
+ #define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none)
1395
+
1396
+ /* no declaration of g_auto() or g_autoptr() here */
1397
+ #endif /* __GNUC__ */
1398
+
1399
+ #else
1400
+
1401
+ #define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName)
1402
+
1403
+ #define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func)
1404
+ #define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func)
1405
+ #define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none)
1406
+
1407
+ #endif /* __GI_SCANNER__ */
1408
+
1409
+ /**
1410
+ * G_SIZEOF_MEMBER:
1411
+ * @struct_type: a structure type, e.g. #GOutputVector
1412
+ * @member: a field in the structure, e.g. `size`
1413
+ *
1414
+ * Returns the size of @member in the struct definition without having a
1415
+ * declared instance of @struct_type.
1416
+ *
1417
+ * Returns: the size of @member in bytes.
1418
+ *
1419
+ * Since: 2.64
1420
+ */
1421
+ #define G_SIZEOF_MEMBER(struct_type, member) \
1422
+ GLIB_AVAILABLE_MACRO_IN_2_64 \
1423
+ sizeof (((struct_type *) 0)->member)
1424
+
1425
+ #endif /* __G_MACROS_H__ */