summaryrefslogtreecommitdiff
path: root/lib/expat.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/expat.h')
-rw-r--r--lib/expat.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/expat.h b/lib/expat.h
index cb828db1..7aa60f31 100644
--- a/lib/expat.h
+++ b/lib/expat.h
@@ -115,7 +115,9 @@ enum XML_Error {
XML_ERROR_RESERVED_PREFIX_XMLNS,
XML_ERROR_RESERVED_NAMESPACE_URI,
/* Added in 2.2.1. */
- XML_ERROR_INVALID_ARGUMENT
+ XML_ERROR_INVALID_ARGUMENT,
+ /* Added in 2.3.0. */
+ XML_ERROR_NO_BUFFER
};
enum XML_Content_Type {
@@ -513,7 +515,7 @@ typedef struct {
Otherwise it must return XML_STATUS_ERROR.
If info does not describe a suitable encoding, then the parser will
- return an XML_UNKNOWN_ENCODING error.
+ return an XML_ERROR_UNKNOWN_ENCODING error.
*/
typedef int(XMLCALL *XML_UnknownEncodingHandler)(void *encodingHandlerData,
const XML_Char *name,
@@ -1014,8 +1016,8 @@ XML_GetFeatureList(void);
See http://semver.org.
*/
#define XML_MAJOR_VERSION 2
-#define XML_MINOR_VERSION 2
-#define XML_MICRO_VERSION 10
+#define XML_MINOR_VERSION 3
+#define XML_MICRO_VERSION 0
#ifdef __cplusplus
}