File indexing completed on 2025-02-22 10:41:48
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef __XML_GLOBALS_H
0009 #define __XML_GLOBALS_H
0010
0011 #include <libxml/xmlversion.h>
0012
0013
0014
0015
0016
0017
0018 #include <libxml/HTMLparser.h>
0019 #include <libxml/parser.h>
0020 #include <libxml/xmlerror.h>
0021 #include <libxml/xmlIO.h>
0022 #include <libxml/xmlsave.h>
0023 #include <libxml/threads.h>
0024
0025 #ifdef __cplusplus
0026 extern "C" {
0027 #endif
0028
0029 typedef struct _xmlGlobalState xmlGlobalState;
0030 typedef xmlGlobalState *xmlGlobalStatePtr;
0031
0032 XML_DEPRECATED XMLPUBFUN void
0033 xmlInitializeGlobalState(xmlGlobalStatePtr gs);
0034 XML_DEPRECATED XMLPUBFUN
0035 xmlGlobalStatePtr xmlGetGlobalState(void);
0036
0037 #ifdef __cplusplus
0038 }
0039 #endif
0040
0041 #endif