mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:02:56 +00:00
[LIBXML2] Update to version 2.9.10. CORE-16952
This commit is contained in:
parent
b82bf8ce16
commit
f22fa382fe
65 changed files with 2245 additions and 2056 deletions
13
sdk/lib/3rdparty/libxml2/libxml.h
vendored
13
sdk/lib/3rdparty/libxml2/libxml.h
vendored
|
@ -34,7 +34,7 @@
|
|||
/*
|
||||
* Currently supported platforms use either autoconf or
|
||||
* copy to config.h own "preset" configuration file.
|
||||
* As result ifdef HAVE_CONFIG_H is omited here.
|
||||
* As result ifdef HAVE_CONFIG_H is omitted here.
|
||||
*/
|
||||
#include "config.h"
|
||||
#include <libxml/xmlversion.h>
|
||||
|
@ -53,7 +53,7 @@ int vfprintf(FILE *, const char *, va_list);
|
|||
/**
|
||||
* TRIO_REPLACE_STDIO:
|
||||
*
|
||||
* This macro is defined if teh trio string formatting functions are to
|
||||
* This macro is defined if the trio string formatting functions are to
|
||||
* be used instead of the default stdio ones.
|
||||
*/
|
||||
#define TRIO_REPLACE_STDIO
|
||||
|
@ -72,6 +72,13 @@ int vfprintf(FILE *, const char *, va_list);
|
|||
#define XML_POP_WARNINGS
|
||||
#endif
|
||||
|
||||
#if defined(__clang__) || \
|
||||
(defined(__GNUC__) && (__GNUC__ >= 8))
|
||||
#define ATTRIBUTE_NO_SANITIZE(arg) __attribute__((no_sanitize(arg)))
|
||||
#else
|
||||
#define ATTRIBUTE_NO_SANITIZE(arg)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Internal variable indicating if a callback has been registered for
|
||||
* node creation/destruction. It avoids spending a lot of time in locking
|
||||
|
@ -79,7 +86,7 @@ int vfprintf(FILE *, const char *, va_list);
|
|||
*/
|
||||
extern int __xmlRegisterCallbacks;
|
||||
/*
|
||||
* internal error reporting routines, shared but not partof the API.
|
||||
* internal error reporting routines, shared but not part of the API.
|
||||
*/
|
||||
void __xmlIOErr(int domain, int code, const char *extra);
|
||||
void __xmlLoaderErr(void *ctx, const char *msg, const char *filename) LIBXML_ATTR_FORMAT(2,0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue