@img/sharp-libvips-dev 1.2.2 → 1.2.3

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 (51) hide show
  1. package/include/expat.h +37 -24
  2. package/include/expat_config.h +9 -9
  3. package/include/expat_external.h +62 -61
  4. package/include/libxml2/libxml/HTMLparser.h +159 -101
  5. package/include/libxml2/libxml/HTMLtree.h +49 -74
  6. package/include/libxml2/libxml/SAX.h +8 -5
  7. package/include/libxml2/libxml/SAX2.h +18 -15
  8. package/include/libxml2/libxml/c14n.h +30 -29
  9. package/include/libxml2/libxml/catalog.h +47 -22
  10. package/include/libxml2/libxml/chvalid.h +52 -64
  11. package/include/libxml2/libxml/debugXML.h +18 -15
  12. package/include/libxml2/libxml/dict.h +22 -19
  13. package/include/libxml2/libxml/encoding.h +144 -111
  14. package/include/libxml2/libxml/entities.h +95 -75
  15. package/include/libxml2/libxml/globals.h +7 -4
  16. package/include/libxml2/libxml/hash.h +61 -64
  17. package/include/libxml2/libxml/list.h +59 -51
  18. package/include/libxml2/libxml/nanoftp.h +7 -4
  19. package/include/libxml2/libxml/nanohttp.h +10 -7
  20. package/include/libxml2/libxml/parser.h +1091 -563
  21. package/include/libxml2/libxml/parserInternals.h +167 -214
  22. package/include/libxml2/libxml/pattern.h +29 -31
  23. package/include/libxml2/libxml/relaxng.h +59 -58
  24. package/include/libxml2/libxml/schemasInternals.h +114 -268
  25. package/include/libxml2/libxml/schematron.h +59 -51
  26. package/include/libxml2/libxml/threads.h +19 -20
  27. package/include/libxml2/libxml/tree.h +873 -623
  28. package/include/libxml2/libxml/uri.h +21 -22
  29. package/include/libxml2/libxml/valid.h +170 -199
  30. package/include/libxml2/libxml/xinclude.h +24 -43
  31. package/include/libxml2/libxml/xlink.h +55 -51
  32. package/include/libxml2/libxml/xmlIO.h +133 -151
  33. package/include/libxml2/libxml/xmlautomata.h +66 -65
  34. package/include/libxml2/libxml/xmlerror.h +197 -94
  35. package/include/libxml2/libxml/xmlexports.h +17 -19
  36. package/include/libxml2/libxml/xmlmemory.h +44 -29
  37. package/include/libxml2/libxml/xmlmodule.h +14 -15
  38. package/include/libxml2/libxml/xmlreader.h +137 -131
  39. package/include/libxml2/libxml/xmlregexp.h +28 -31
  40. package/include/libxml2/libxml/xmlsave.h +81 -36
  41. package/include/libxml2/libxml/xmlschemas.h +61 -67
  42. package/include/libxml2/libxml/xmlschemastypes.h +60 -54
  43. package/include/libxml2/libxml/xmlstring.h +8 -9
  44. package/include/libxml2/libxml/xmlunicode.h +6 -3
  45. package/include/libxml2/libxml/xmlversion.h +44 -121
  46. package/include/libxml2/libxml/xmlwriter.h +97 -97
  47. package/include/libxml2/libxml/xpath.h +235 -232
  48. package/include/libxml2/libxml/xpathInternals.h +247 -277
  49. package/include/libxml2/libxml/xpointer.h +21 -17
  50. package/package.json +1 -1
  51. package/versions.json +2 -2
@@ -1,35 +1,33 @@
1
- /*
2
- * Summary: macros for marking symbols as exportable/importable.
3
- * Description: macros for marking symbols as exportable/importable.
1
+ /**
2
+ * @file
3
+ *
4
+ * @brief macros for marking symbols as exportable/importable.
5
+ *
6
+ * macros for marking symbols as exportable/importable.
4
7
  *
5
- * Copy: See Copyright for the status of this software.
8
+ * @copyright See Copyright for the status of this software.
6
9
  */
7
10
 
8
11
  #ifndef __XML_EXPORTS_H__
9
12
  #define __XML_EXPORTS_H__
10
13
 
11
- /** DOC_DISABLE */
12
-
13
14
  /*
14
15
  * Symbol visibility
15
16
  */
16
17
 
17
- #if defined(_WIN32) || defined(__CYGWIN__)
18
- #ifdef LIBXML_STATIC
19
- #define XMLPUBLIC
20
- #elif defined(IN_LIBXML)
21
- #define XMLPUBLIC __declspec(dllexport)
18
+ #if (defined(_WIN32) || defined(__CYGWIN__)) && !defined(LIBXML_STATIC)
19
+ #if defined(IN_LIBXML)
20
+ #define XMLPUBFUN __declspec(dllexport)
21
+ #define XMLPUBVAR __declspec(dllexport) extern
22
22
  #else
23
- #define XMLPUBLIC __declspec(dllimport)
23
+ #define XMLPUBFUN __declspec(dllimport)
24
+ #define XMLPUBVAR __declspec(dllimport) extern
24
25
  #endif
25
26
  #else /* not Windows */
26
- #define XMLPUBLIC
27
+ #define XMLPUBFUN
28
+ #define XMLPUBVAR extern
27
29
  #endif /* platform switch */
28
30
 
29
- #define XMLPUBFUN XMLPUBLIC
30
-
31
- #define XMLPUBVAR XMLPUBLIC extern
32
-
33
31
  /* Compatibility */
34
32
  #define XMLCALL
35
33
  #define XMLCDECL
@@ -58,10 +56,10 @@
58
56
  #if defined(IN_LIBXML)
59
57
  #define XML_DEPRECATED
60
58
  #elif __GNUC__ * 100 + __GNUC_MINOR__ >= 301
61
- #define XML_DEPRECATED __attribute__((deprecated))
59
+ #define XML_DEPRECATED __attribute__((deprecated("See https://gnome.pages.gitlab.gnome.org/libxml2/html/deprecated.html")))
62
60
  #elif defined(_MSC_VER) && _MSC_VER >= 1400
63
61
  /* Available since Visual Studio 2005 */
64
- #define XML_DEPRECATED __declspec(deprecated)
62
+ #define XML_DEPRECATED __declspec(deprecated("See https://gnome.pages.gitlab.gnome.org/libxml2/html/deprecated.html"))
65
63
  #else
66
64
  #define XML_DEPRECATED
67
65
  #endif
@@ -1,11 +1,14 @@
1
- /*
2
- * Summary: interface for the memory allocator
3
- * Description: provides interfaces for the memory allocator,
1
+ /**
2
+ * @file
3
+ *
4
+ * @brief interface for the memory allocator
5
+ *
6
+ * provides interfaces for the memory allocator,
4
7
  * including debugging capabilities.
5
8
  *
6
- * Copy: See Copyright for the status of this software.
9
+ * @copyright See Copyright for the status of this software.
7
10
  *
8
- * Author: Daniel Veillard
11
+ * @author Daniel Veillard
9
12
  */
10
13
 
11
14
 
@@ -23,40 +26,33 @@ extern "C" {
23
26
  * The XML memory wrapper support 4 basic overloadable functions.
24
27
  */
25
28
  /**
26
- * xmlFreeFunc:
27
- * @mem: an already allocated block of memory
28
- *
29
29
  * Signature for a free() implementation.
30
+ *
31
+ * @param mem an already allocated block of memory
30
32
  */
31
33
  typedef void (*xmlFreeFunc)(void *mem);
32
34
  /**
33
- * xmlMallocFunc:
34
- * @size: the size requested in bytes
35
- *
36
35
  * Signature for a malloc() implementation.
37
36
  *
38
- * Returns a pointer to the newly allocated block or NULL in case of error.
37
+ * @param size the size requested in bytes
38
+ * @returns a pointer to the newly allocated block or NULL in case of error.
39
39
  */
40
- typedef void *(LIBXML_ATTR_ALLOC_SIZE(1) *xmlMallocFunc)(size_t size);
40
+ typedef void *(*xmlMallocFunc)(size_t size) LIBXML_ATTR_ALLOC_SIZE(1);
41
41
 
42
42
  /**
43
- * xmlReallocFunc:
44
- * @mem: an already allocated block of memory
45
- * @size: the new size requested in bytes
46
- *
47
43
  * Signature for a realloc() implementation.
48
44
  *
49
- * Returns a pointer to the newly reallocated block or NULL in case of error.
45
+ * @param mem an already allocated block of memory
46
+ * @param size the new size requested in bytes
47
+ * @returns a pointer to the newly reallocated block or NULL in case of error.
50
48
  */
51
49
  typedef void *(*xmlReallocFunc)(void *mem, size_t size);
52
50
 
53
51
  /**
54
- * xmlStrdupFunc:
55
- * @str: a zero terminated string
56
- *
57
52
  * Signature for an strdup() implementation.
58
53
  *
59
- * Returns the copy of the string or NULL in case of error.
54
+ * @param str a zero terminated string
55
+ * @returns the copy of the string or NULL in case of error.
60
56
  */
61
57
  typedef char *(*xmlStrdupFunc)(const char *str);
62
58
 
@@ -71,7 +67,6 @@ typedef char *(*xmlStrdupFunc)(const char *str);
71
67
  */
72
68
  #ifdef LIBXML_THREAD_ALLOC_ENABLED
73
69
 
74
- /** DOC_DISABLE */
75
70
  XMLPUBFUN xmlMallocFunc *__xmlMalloc(void);
76
71
  XMLPUBFUN xmlMallocFunc *__xmlMallocAtomic(void);
77
72
  XMLPUBFUN xmlReallocFunc *__xmlRealloc(void);
@@ -85,14 +80,34 @@ XMLPUBFUN xmlStrdupFunc *__xmlMemStrdup(void);
85
80
  #define xmlFree (*__xmlFree())
86
81
  #define xmlMemStrdup (*__xmlMemStrdup())
87
82
  #endif
88
- /** DOC_ENABLE */
89
83
 
90
84
  #else
91
- XMLPUBVAR xmlMallocFunc xmlMalloc;
92
- XMLPUBVAR xmlMallocFunc xmlMallocAtomic;
93
- XMLPUBVAR xmlReallocFunc xmlRealloc;
94
- XMLPUBVAR xmlFreeFunc xmlFree;
95
- XMLPUBVAR xmlStrdupFunc xmlMemStrdup;
85
+
86
+ /**
87
+ * The variable holding the libxml malloc() implementation
88
+ */
89
+ XMLPUBVAR xmlMallocFunc xmlMalloc;
90
+ /**
91
+ * The variable holding the libxml malloc() implementation for atomic
92
+ * data (i.e. blocks not containing pointers), useful when using a
93
+ * garbage collecting allocator.
94
+ *
95
+ * @deprecated Use #xmlMalloc
96
+ */
97
+ XMLPUBVAR xmlMallocFunc xmlMallocAtomic;
98
+ /**
99
+ * The variable holding the libxml realloc() implementation
100
+ */
101
+ XMLPUBVAR xmlReallocFunc xmlRealloc;
102
+ /**
103
+ * The variable holding the libxml free() implementation
104
+ */
105
+ XMLPUBVAR xmlFreeFunc xmlFree;
106
+ /**
107
+ * The variable holding the libxml strdup() implementation
108
+ */
109
+ XMLPUBVAR xmlStrdupFunc xmlMemStrdup;
110
+
96
111
  #endif
97
112
 
98
113
  /*
@@ -1,11 +1,14 @@
1
- /*
2
- * Summary: dynamic module loading
3
- * Description: basic API for dynamic module loading, used by
4
- * libexslt added in 2.6.17
1
+ /**
2
+ * @file
3
+ *
4
+ * @brief Dynamic module loading
5
+ *
6
+ * API for dynamic module loading. Only used by old libxslt versions
7
+ * and subject to removal.
5
8
  *
6
- * Copy: See Copyright for the status of this software.
9
+ * @copyright See Copyright for the status of this software.
7
10
  *
8
- * Author: Joel W. Reed
11
+ * @author Joel W. Reed
9
12
  */
10
13
 
11
14
  #ifndef __XML_MODULE_H__
@@ -20,17 +23,13 @@ extern "C" {
20
23
  #endif
21
24
 
22
25
  /**
23
- * xmlModulePtr:
24
- *
25
26
  * A handle to a dynamically loaded module
26
27
  */
27
28
  typedef struct _xmlModule xmlModule;
28
29
  typedef xmlModule *xmlModulePtr;
29
30
 
30
31
  /**
31
- * xmlModuleOption:
32
- *
33
- * enumeration of options that can be passed down to xmlModuleOpen()
32
+ * enumeration of options that can be passed down to #xmlModuleOpen
34
33
  */
35
34
  typedef enum {
36
35
  XML_MODULE_LAZY = 1, /* lazy binding */
@@ -38,19 +37,19 @@ typedef enum {
38
37
  } xmlModuleOption;
39
38
 
40
39
  XML_DEPRECATED
41
- XMLPUBFUN xmlModulePtr xmlModuleOpen (const char *filename,
40
+ XMLPUBFUN xmlModule *xmlModuleOpen (const char *filename,
42
41
  int options);
43
42
 
44
43
  XML_DEPRECATED
45
- XMLPUBFUN int xmlModuleSymbol (xmlModulePtr module,
44
+ XMLPUBFUN int xmlModuleSymbol (xmlModule *module,
46
45
  const char* name,
47
46
  void **result);
48
47
 
49
48
  XML_DEPRECATED
50
- XMLPUBFUN int xmlModuleClose (xmlModulePtr module);
49
+ XMLPUBFUN int xmlModuleClose (xmlModule *module);
51
50
 
52
51
  XML_DEPRECATED
53
- XMLPUBFUN int xmlModuleFree (xmlModulePtr module);
52
+ XMLPUBFUN int xmlModuleFree (xmlModule *module);
54
53
 
55
54
  #ifdef __cplusplus
56
55
  }