1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-09 04:58:16 +03:00

parser: Undeprecate some xmlParserCtxt members

These are essential for SAX parsers.
This commit is contained in:
Nick Wellnhofer 2024-06-21 18:17:11 +02:00
parent 7ba6c8feea
commit f82ca02bf5

View File

@ -213,21 +213,20 @@ struct _xmlParserCtxt {
xmlDocPtr myDoc;
/* is the document well formed */
int wellFormed;
/* shall we replace entities ? */
int replaceEntities XML_DEPRECATED_MEMBER;
/* the XML version string */
const xmlChar *version XML_DEPRECATED_MEMBER;
const xmlChar *version;
/* the declared encoding, if any */
const xmlChar *encoding XML_DEPRECATED_MEMBER;
const xmlChar *encoding;
/* standalone document */
int standalone XML_DEPRECATED_MEMBER;
int standalone;
/* an HTML(1) document
* 3 is HTML after <head>
* 10 is HTML after <body>
*/
int html XML_DEPRECATED_MEMBER;
int html;
/* Input stream stack */