Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 10:41:48

0001 /*
0002  * Summary: interface for all global variables of the library
0003  * Description: Deprecated, don't use
0004  *
0005  * Copy: See Copyright for the status of this software.
0006  */
0007 
0008 #ifndef __XML_GLOBALS_H
0009 #define __XML_GLOBALS_H
0010 
0011 #include <libxml/xmlversion.h>
0012 
0013 /*
0014  * This file was required to access global variables until version v2.12.0.
0015  *
0016  * These includes are for backward compatibility.
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 /* __XML_GLOBALS_H */