@img/sharp-libvips-dev 1.1.0-rc4 → 1.1.0
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.
- package/include/archive.h +3 -3
- package/include/archive_entry.h +3 -2
- package/include/expat.h +3 -3
- package/include/expat_config.h +3 -3
- package/include/fontconfig/fcfreetype.h +5 -5
- package/include/fontconfig/fcprivate.h +86 -92
- package/include/fontconfig/fontconfig.h +327 -320
- package/include/glib-2.0/gio/gdbusnameowning.h +12 -10
- package/include/glib-2.0/gio/gsettings.h +35 -31
- package/include/glib-2.0/gobject/gsignal.h +33 -8
- package/include/harfbuzz/hb-buffer.h +62 -3
- package/include/harfbuzz/hb-common.h +11 -0
- package/include/harfbuzz/hb-draw.h +10 -2
- package/include/harfbuzz/hb-face.h +14 -0
- package/include/harfbuzz/hb-font.h +6 -0
- package/include/harfbuzz/hb-ft.h +4 -0
- package/include/harfbuzz/hb-paint.h +8 -0
- package/include/harfbuzz/hb-version.h +3 -3
- package/include/librsvg-2.0/librsvg/rsvg-version.h +3 -3
- package/include/libxml2/libxml/HTMLparser.h +33 -30
- package/include/libxml2/libxml/HTMLtree.h +1 -0
- package/include/libxml2/libxml/SAX.h +2 -186
- package/include/libxml2/libxml/SAX2.h +2 -3
- package/include/libxml2/libxml/catalog.h +1 -0
- package/include/libxml2/libxml/debugXML.h +0 -138
- package/include/libxml2/libxml/encoding.h +124 -61
- package/include/libxml2/libxml/entities.h +0 -19
- package/include/libxml2/libxml/globals.h +0 -16
- package/include/libxml2/libxml/nanoftp.h +3 -173
- package/include/libxml2/libxml/parser.h +472 -231
- package/include/libxml2/libxml/parserInternals.h +21 -101
- package/include/libxml2/libxml/relaxng.h +7 -2
- package/include/libxml2/libxml/threads.h +0 -6
- package/include/libxml2/libxml/tree.h +29 -85
- package/include/libxml2/libxml/valid.h +20 -12
- package/include/libxml2/libxml/xinclude.h +5 -0
- package/include/libxml2/libxml/xlink.h +4 -0
- package/include/libxml2/libxml/xmlIO.h +13 -32
- package/include/libxml2/libxml/xmlautomata.h +19 -2
- package/include/libxml2/libxml/xmlerror.h +17 -18
- package/include/libxml2/libxml/xmlexports.h +6 -56
- package/include/libxml2/libxml/xmlmemory.h +19 -19
- package/include/libxml2/libxml/xmlmodule.h +4 -0
- package/include/libxml2/libxml/xmlreader.h +11 -3
- package/include/libxml2/libxml/xmlregexp.h +7 -106
- package/include/libxml2/libxml/xmlsave.h +11 -2
- package/include/libxml2/libxml/xmlschemas.h +10 -5
- package/include/libxml2/libxml/xmlunicode.h +3 -354
- package/include/libxml2/libxml/xmlversion.h +18 -33
- package/include/libxml2/libxml/xpath.h +5 -15
- package/include/libxml2/libxml/xpathInternals.h +9 -3
- package/include/libxml2/libxml/xpointer.h +1 -91
- package/include/pango-1.0/pango/pango-features.h +2 -2
- package/include/pango-1.0/pango/pango-font.h +1 -1
- package/package.json +1 -1
- package/versions.json +8 -8
|
@@ -22,20 +22,4 @@
|
|
|
22
22
|
#include <libxml/xmlsave.h>
|
|
23
23
|
#include <libxml/threads.h>
|
|
24
24
|
|
|
25
|
-
#ifdef __cplusplus
|
|
26
|
-
extern "C" {
|
|
27
|
-
#endif
|
|
28
|
-
|
|
29
|
-
typedef struct _xmlGlobalState xmlGlobalState;
|
|
30
|
-
typedef xmlGlobalState *xmlGlobalStatePtr;
|
|
31
|
-
|
|
32
|
-
XML_DEPRECATED XMLPUBFUN void
|
|
33
|
-
xmlInitializeGlobalState(xmlGlobalStatePtr gs);
|
|
34
|
-
XML_DEPRECATED XMLPUBFUN
|
|
35
|
-
xmlGlobalStatePtr xmlGetGlobalState(void);
|
|
36
|
-
|
|
37
|
-
#ifdef __cplusplus
|
|
38
|
-
}
|
|
39
|
-
#endif
|
|
40
|
-
|
|
41
25
|
#endif /* __XML_GLOBALS_H */
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Summary:
|
|
3
|
-
* Description: minimal FTP implementation allowing to fetch resources
|
|
4
|
-
* like external subset. This module is DEPRECATED, do not
|
|
5
|
-
* use any of its functions.
|
|
2
|
+
* Summary: Removed legacy symbols for an outdated FTP client
|
|
6
3
|
*
|
|
7
4
|
* Copy: See Copyright for the status of this software.
|
|
8
5
|
*
|
|
@@ -12,175 +9,8 @@
|
|
|
12
9
|
#ifndef __NANO_FTP_H__
|
|
13
10
|
#define __NANO_FTP_H__
|
|
14
11
|
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
#if defined(LIBXML_FTP_ENABLED)
|
|
18
|
-
|
|
19
|
-
/* Needed for portability to Windows 64 bits */
|
|
20
|
-
#if defined(_WIN32)
|
|
21
|
-
#include <winsock2.h>
|
|
22
|
-
#else
|
|
23
|
-
/**
|
|
24
|
-
* SOCKET:
|
|
25
|
-
*
|
|
26
|
-
* macro used to provide portability of code to windows sockets
|
|
27
|
-
*/
|
|
28
|
-
#define SOCKET int
|
|
29
|
-
/**
|
|
30
|
-
* INVALID_SOCKET:
|
|
31
|
-
*
|
|
32
|
-
* macro used to provide portability of code to windows sockets
|
|
33
|
-
* the value to be used when the socket is not valid
|
|
34
|
-
*/
|
|
35
|
-
#undef INVALID_SOCKET
|
|
36
|
-
#define INVALID_SOCKET (-1)
|
|
37
|
-
#endif
|
|
38
|
-
|
|
39
|
-
#ifdef __cplusplus
|
|
40
|
-
extern "C" {
|
|
12
|
+
#ifdef __GNUC__
|
|
13
|
+
#warning "libxml/nanoftp.h is deprecated"
|
|
41
14
|
#endif
|
|
42
15
|
|
|
43
|
-
/**
|
|
44
|
-
* ftpListCallback:
|
|
45
|
-
* @userData: user provided data for the callback
|
|
46
|
-
* @filename: the file name (including "->" when links are shown)
|
|
47
|
-
* @attrib: the attribute string
|
|
48
|
-
* @owner: the owner string
|
|
49
|
-
* @group: the group string
|
|
50
|
-
* @size: the file size
|
|
51
|
-
* @links: the link count
|
|
52
|
-
* @year: the year
|
|
53
|
-
* @month: the month
|
|
54
|
-
* @day: the day
|
|
55
|
-
* @hour: the hour
|
|
56
|
-
* @minute: the minute
|
|
57
|
-
*
|
|
58
|
-
* A callback for the xmlNanoFTPList command.
|
|
59
|
-
* Note that only one of year and day:minute are specified.
|
|
60
|
-
*/
|
|
61
|
-
typedef void (*ftpListCallback) (void *userData,
|
|
62
|
-
const char *filename, const char *attrib,
|
|
63
|
-
const char *owner, const char *group,
|
|
64
|
-
unsigned long size, int links, int year,
|
|
65
|
-
const char *month, int day, int hour,
|
|
66
|
-
int minute);
|
|
67
|
-
/**
|
|
68
|
-
* ftpDataCallback:
|
|
69
|
-
* @userData: the user provided context
|
|
70
|
-
* @data: the data received
|
|
71
|
-
* @len: its size in bytes
|
|
72
|
-
*
|
|
73
|
-
* A callback for the xmlNanoFTPGet command.
|
|
74
|
-
*/
|
|
75
|
-
typedef void (*ftpDataCallback) (void *userData,
|
|
76
|
-
const char *data,
|
|
77
|
-
int len);
|
|
78
|
-
|
|
79
|
-
/*
|
|
80
|
-
* Init
|
|
81
|
-
*/
|
|
82
|
-
XML_DEPRECATED
|
|
83
|
-
XMLPUBFUN void
|
|
84
|
-
xmlNanoFTPInit (void);
|
|
85
|
-
XML_DEPRECATED
|
|
86
|
-
XMLPUBFUN void
|
|
87
|
-
xmlNanoFTPCleanup (void);
|
|
88
|
-
|
|
89
|
-
/*
|
|
90
|
-
* Creating/freeing contexts.
|
|
91
|
-
*/
|
|
92
|
-
XML_DEPRECATED
|
|
93
|
-
XMLPUBFUN void *
|
|
94
|
-
xmlNanoFTPNewCtxt (const char *URL);
|
|
95
|
-
XML_DEPRECATED
|
|
96
|
-
XMLPUBFUN void
|
|
97
|
-
xmlNanoFTPFreeCtxt (void * ctx);
|
|
98
|
-
XML_DEPRECATED
|
|
99
|
-
XMLPUBFUN void *
|
|
100
|
-
xmlNanoFTPConnectTo (const char *server,
|
|
101
|
-
int port);
|
|
102
|
-
/*
|
|
103
|
-
* Opening/closing session connections.
|
|
104
|
-
*/
|
|
105
|
-
XML_DEPRECATED
|
|
106
|
-
XMLPUBFUN void *
|
|
107
|
-
xmlNanoFTPOpen (const char *URL);
|
|
108
|
-
XML_DEPRECATED
|
|
109
|
-
XMLPUBFUN int
|
|
110
|
-
xmlNanoFTPConnect (void *ctx);
|
|
111
|
-
XML_DEPRECATED
|
|
112
|
-
XMLPUBFUN int
|
|
113
|
-
xmlNanoFTPClose (void *ctx);
|
|
114
|
-
XML_DEPRECATED
|
|
115
|
-
XMLPUBFUN int
|
|
116
|
-
xmlNanoFTPQuit (void *ctx);
|
|
117
|
-
XML_DEPRECATED
|
|
118
|
-
XMLPUBFUN void
|
|
119
|
-
xmlNanoFTPScanProxy (const char *URL);
|
|
120
|
-
XML_DEPRECATED
|
|
121
|
-
XMLPUBFUN void
|
|
122
|
-
xmlNanoFTPProxy (const char *host,
|
|
123
|
-
int port,
|
|
124
|
-
const char *user,
|
|
125
|
-
const char *passwd,
|
|
126
|
-
int type);
|
|
127
|
-
XML_DEPRECATED
|
|
128
|
-
XMLPUBFUN int
|
|
129
|
-
xmlNanoFTPUpdateURL (void *ctx,
|
|
130
|
-
const char *URL);
|
|
131
|
-
|
|
132
|
-
/*
|
|
133
|
-
* Rather internal commands.
|
|
134
|
-
*/
|
|
135
|
-
XML_DEPRECATED
|
|
136
|
-
XMLPUBFUN int
|
|
137
|
-
xmlNanoFTPGetResponse (void *ctx);
|
|
138
|
-
XML_DEPRECATED
|
|
139
|
-
XMLPUBFUN int
|
|
140
|
-
xmlNanoFTPCheckResponse (void *ctx);
|
|
141
|
-
|
|
142
|
-
/*
|
|
143
|
-
* CD/DIR/GET handlers.
|
|
144
|
-
*/
|
|
145
|
-
XML_DEPRECATED
|
|
146
|
-
XMLPUBFUN int
|
|
147
|
-
xmlNanoFTPCwd (void *ctx,
|
|
148
|
-
const char *directory);
|
|
149
|
-
XML_DEPRECATED
|
|
150
|
-
XMLPUBFUN int
|
|
151
|
-
xmlNanoFTPDele (void *ctx,
|
|
152
|
-
const char *file);
|
|
153
|
-
|
|
154
|
-
XML_DEPRECATED
|
|
155
|
-
XMLPUBFUN SOCKET
|
|
156
|
-
xmlNanoFTPGetConnection (void *ctx);
|
|
157
|
-
XML_DEPRECATED
|
|
158
|
-
XMLPUBFUN int
|
|
159
|
-
xmlNanoFTPCloseConnection(void *ctx);
|
|
160
|
-
XML_DEPRECATED
|
|
161
|
-
XMLPUBFUN int
|
|
162
|
-
xmlNanoFTPList (void *ctx,
|
|
163
|
-
ftpListCallback callback,
|
|
164
|
-
void *userData,
|
|
165
|
-
const char *filename);
|
|
166
|
-
XML_DEPRECATED
|
|
167
|
-
XMLPUBFUN SOCKET
|
|
168
|
-
xmlNanoFTPGetSocket (void *ctx,
|
|
169
|
-
const char *filename);
|
|
170
|
-
XML_DEPRECATED
|
|
171
|
-
XMLPUBFUN int
|
|
172
|
-
xmlNanoFTPGet (void *ctx,
|
|
173
|
-
ftpDataCallback callback,
|
|
174
|
-
void *userData,
|
|
175
|
-
const char *filename);
|
|
176
|
-
XML_DEPRECATED
|
|
177
|
-
XMLPUBFUN int
|
|
178
|
-
xmlNanoFTPRead (void *ctx,
|
|
179
|
-
void *dest,
|
|
180
|
-
int len);
|
|
181
|
-
|
|
182
|
-
#ifdef __cplusplus
|
|
183
|
-
}
|
|
184
|
-
#endif
|
|
185
|
-
#endif /* defined(LIBXML_FTP_ENABLED) || defined(LIBXML_LEGACY_ENABLED) */
|
|
186
16
|
#endif /* __NANO_FTP_H__ */
|