globals.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. /*
  2. * Summary: interface for all global variables of the library
  3. * Description: all the global variables and thread handling for
  4. * those variables is handled by this module.
  5. *
  6. * The bottom of this file is automatically generated by build_glob.py
  7. * based on the description file global.data
  8. *
  9. * Copy: See Copyright for the status of this software.
  10. *
  11. * Author: Gary Pennington <Gary.Pennington@uk.sun.com>, Daniel Veillard
  12. */
  13. #ifndef __XML_GLOBALS_H
  14. #define __XML_GLOBALS_H
  15. #include <libxml/xmlversion.h>
  16. #include <libxml/parser.h>
  17. #include <libxml/xmlerror.h>
  18. #include <libxml/SAX.h>
  19. #include <libxml/SAX2.h>
  20. #include <libxml/xmlmemory.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. XMLPUBFUN void XMLCALL xmlInitGlobals(void);
  25. XMLPUBFUN void XMLCALL xmlCleanupGlobals(void);
  26. /**
  27. * xmlParserInputBufferCreateFilenameFunc:
  28. * @URI: the URI to read from
  29. * @enc: the requested source encoding
  30. *
  31. * Signature for the function doing the lookup for a suitable input method
  32. * corresponding to an URI.
  33. *
  34. * Returns the new xmlParserInputBufferPtr in case of success or NULL if no
  35. * method was found.
  36. */
  37. typedef xmlParserInputBufferPtr (*xmlParserInputBufferCreateFilenameFunc) (const char *URI, xmlCharEncoding enc);
  38. /**
  39. * xmlOutputBufferCreateFilenameFunc:
  40. * @URI: the URI to write to
  41. * @enc: the requested target encoding
  42. *
  43. * Signature for the function doing the lookup for a suitable output method
  44. * corresponding to an URI.
  45. *
  46. * Returns the new xmlOutputBufferPtr in case of success or NULL if no
  47. * method was found.
  48. */
  49. typedef xmlOutputBufferPtr (*xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression);
  50. XMLPUBFUN xmlParserInputBufferCreateFilenameFunc
  51. XMLCALL xmlParserInputBufferCreateFilenameDefault (xmlParserInputBufferCreateFilenameFunc func);
  52. XMLPUBFUN xmlOutputBufferCreateFilenameFunc
  53. XMLCALL xmlOutputBufferCreateFilenameDefault (xmlOutputBufferCreateFilenameFunc func);
  54. /*
  55. * Externally global symbols which need to be protected for backwards
  56. * compatibility support.
  57. */
  58. #undef docbDefaultSAXHandler
  59. #undef htmlDefaultSAXHandler
  60. #undef oldXMLWDcompatibility
  61. #undef xmlBufferAllocScheme
  62. #undef xmlDefaultBufferSize
  63. #undef xmlDefaultSAXHandler
  64. #undef xmlDefaultSAXLocator
  65. #undef xmlDoValidityCheckingDefaultValue
  66. #undef xmlFree
  67. #undef xmlGenericError
  68. #undef xmlStructuredError
  69. #undef xmlGenericErrorContext
  70. #undef xmlStructuredErrorContext
  71. #undef xmlGetWarningsDefaultValue
  72. #undef xmlIndentTreeOutput
  73. #undef xmlTreeIndentString
  74. #undef xmlKeepBlanksDefaultValue
  75. #undef xmlLineNumbersDefaultValue
  76. #undef xmlLoadExtDtdDefaultValue
  77. #undef xmlMalloc
  78. #undef xmlMallocAtomic
  79. #undef xmlMemStrdup
  80. #undef xmlParserDebugEntities
  81. #undef xmlParserVersion
  82. #undef xmlPedanticParserDefaultValue
  83. #undef xmlRealloc
  84. #undef xmlSaveNoEmptyTags
  85. #undef xmlSubstituteEntitiesDefaultValue
  86. #undef xmlRegisterNodeDefaultValue
  87. #undef xmlDeregisterNodeDefaultValue
  88. #undef xmlLastError
  89. #undef xmlParserInputBufferCreateFilenameValue
  90. #undef xmlOutputBufferCreateFilenameValue
  91. /**
  92. * xmlRegisterNodeFunc:
  93. * @node: the current node
  94. *
  95. * Signature for the registration callback of a created node
  96. */
  97. typedef void (*xmlRegisterNodeFunc) (xmlNodePtr node);
  98. /**
  99. * xmlDeregisterNodeFunc:
  100. * @node: the current node
  101. *
  102. * Signature for the deregistration callback of a discarded node
  103. */
  104. typedef void (*xmlDeregisterNodeFunc) (xmlNodePtr node);
  105. typedef struct _xmlGlobalState xmlGlobalState;
  106. typedef xmlGlobalState *xmlGlobalStatePtr;
  107. struct _xmlGlobalState {
  108. const char *xmlParserVersion;
  109. xmlSAXLocator xmlDefaultSAXLocator;
  110. xmlSAXHandlerV1 xmlDefaultSAXHandler;
  111. xmlSAXHandlerV1 docbDefaultSAXHandler;
  112. xmlSAXHandlerV1 htmlDefaultSAXHandler;
  113. xmlFreeFunc xmlFree;
  114. xmlMallocFunc xmlMalloc;
  115. xmlStrdupFunc xmlMemStrdup;
  116. xmlReallocFunc xmlRealloc;
  117. xmlGenericErrorFunc xmlGenericError;
  118. xmlStructuredErrorFunc xmlStructuredError;
  119. void *xmlGenericErrorContext;
  120. int oldXMLWDcompatibility;
  121. xmlBufferAllocationScheme xmlBufferAllocScheme;
  122. int xmlDefaultBufferSize;
  123. int xmlSubstituteEntitiesDefaultValue;
  124. int xmlDoValidityCheckingDefaultValue;
  125. int xmlGetWarningsDefaultValue;
  126. int xmlKeepBlanksDefaultValue;
  127. int xmlLineNumbersDefaultValue;
  128. int xmlLoadExtDtdDefaultValue;
  129. int xmlParserDebugEntities;
  130. int xmlPedanticParserDefaultValue;
  131. int xmlSaveNoEmptyTags;
  132. int xmlIndentTreeOutput;
  133. const char *xmlTreeIndentString;
  134. xmlRegisterNodeFunc xmlRegisterNodeDefaultValue;
  135. xmlDeregisterNodeFunc xmlDeregisterNodeDefaultValue;
  136. xmlMallocFunc xmlMallocAtomic;
  137. xmlError xmlLastError;
  138. xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameValue;
  139. xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameValue;
  140. void *xmlStructuredErrorContext;
  141. };
  142. #ifdef __cplusplus
  143. }
  144. #endif
  145. #include <libxml/threads.h>
  146. #ifdef __cplusplus
  147. extern "C" {
  148. #endif
  149. XMLPUBFUN void XMLCALL xmlInitializeGlobalState(xmlGlobalStatePtr gs);
  150. XMLPUBFUN void XMLCALL xmlThrDefSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler);
  151. XMLPUBFUN void XMLCALL xmlThrDefSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler);
  152. XMLPUBFUN xmlRegisterNodeFunc XMLCALL xmlRegisterNodeDefault(xmlRegisterNodeFunc func);
  153. XMLPUBFUN xmlRegisterNodeFunc XMLCALL xmlThrDefRegisterNodeDefault(xmlRegisterNodeFunc func);
  154. XMLPUBFUN xmlDeregisterNodeFunc XMLCALL xmlDeregisterNodeDefault(xmlDeregisterNodeFunc func);
  155. XMLPUBFUN xmlDeregisterNodeFunc XMLCALL xmlThrDefDeregisterNodeDefault(xmlDeregisterNodeFunc func);
  156. XMLPUBFUN xmlOutputBufferCreateFilenameFunc XMLCALL
  157. xmlThrDefOutputBufferCreateFilenameDefault(xmlOutputBufferCreateFilenameFunc func);
  158. XMLPUBFUN xmlParserInputBufferCreateFilenameFunc XMLCALL
  159. xmlThrDefParserInputBufferCreateFilenameDefault(xmlParserInputBufferCreateFilenameFunc func);
  160. /** DOC_DISABLE */
  161. /*
  162. * In general the memory allocation entry points are not kept
  163. * thread specific but this can be overridden by LIBXML_THREAD_ALLOC_ENABLED
  164. * - xmlMalloc
  165. * - xmlMallocAtomic
  166. * - xmlRealloc
  167. * - xmlMemStrdup
  168. * - xmlFree
  169. */
  170. #ifdef LIBXML_THREAD_ALLOC_ENABLED
  171. #ifdef LIBXML_THREAD_ENABLED
  172. XMLPUBFUN xmlMallocFunc * XMLCALL __xmlMalloc(void);
  173. #define xmlMalloc \
  174. (*(__xmlMalloc()))
  175. #else
  176. XMLPUBVAR xmlMallocFunc xmlMalloc;
  177. #endif
  178. #ifdef LIBXML_THREAD_ENABLED
  179. XMLPUBFUN xmlMallocFunc * XMLCALL __xmlMallocAtomic(void);
  180. #define xmlMallocAtomic \
  181. (*(__xmlMallocAtomic()))
  182. #else
  183. XMLPUBVAR xmlMallocFunc xmlMallocAtomic;
  184. #endif
  185. #ifdef LIBXML_THREAD_ENABLED
  186. XMLPUBFUN xmlReallocFunc * XMLCALL __xmlRealloc(void);
  187. #define xmlRealloc \
  188. (*(__xmlRealloc()))
  189. #else
  190. XMLPUBVAR xmlReallocFunc xmlRealloc;
  191. #endif
  192. #ifdef LIBXML_THREAD_ENABLED
  193. XMLPUBFUN xmlFreeFunc * XMLCALL __xmlFree(void);
  194. #define xmlFree \
  195. (*(__xmlFree()))
  196. #else
  197. XMLPUBVAR xmlFreeFunc xmlFree;
  198. #endif
  199. #ifdef LIBXML_THREAD_ENABLED
  200. XMLPUBFUN xmlStrdupFunc * XMLCALL __xmlMemStrdup(void);
  201. #define xmlMemStrdup \
  202. (*(__xmlMemStrdup()))
  203. #else
  204. XMLPUBVAR xmlStrdupFunc xmlMemStrdup;
  205. #endif
  206. #else /* !LIBXML_THREAD_ALLOC_ENABLED */
  207. XMLPUBVAR xmlMallocFunc xmlMalloc;
  208. XMLPUBVAR xmlMallocFunc xmlMallocAtomic;
  209. XMLPUBVAR xmlReallocFunc xmlRealloc;
  210. XMLPUBVAR xmlFreeFunc xmlFree;
  211. XMLPUBVAR xmlStrdupFunc xmlMemStrdup;
  212. #endif /* LIBXML_THREAD_ALLOC_ENABLED */
  213. #ifdef LIBXML_DOCB_ENABLED
  214. XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __docbDefaultSAXHandler(void);
  215. #ifdef LIBXML_THREAD_ENABLED
  216. #define docbDefaultSAXHandler \
  217. (*(__docbDefaultSAXHandler()))
  218. #else
  219. XMLPUBVAR xmlSAXHandlerV1 docbDefaultSAXHandler;
  220. #endif
  221. #endif
  222. #ifdef LIBXML_HTML_ENABLED
  223. XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __htmlDefaultSAXHandler(void);
  224. #ifdef LIBXML_THREAD_ENABLED
  225. #define htmlDefaultSAXHandler \
  226. (*(__htmlDefaultSAXHandler()))
  227. #else
  228. XMLPUBVAR xmlSAXHandlerV1 htmlDefaultSAXHandler;
  229. #endif
  230. #endif
  231. XMLPUBFUN xmlError * XMLCALL __xmlLastError(void);
  232. #ifdef LIBXML_THREAD_ENABLED
  233. #define xmlLastError \
  234. (*(__xmlLastError()))
  235. #else
  236. XMLPUBVAR xmlError xmlLastError;
  237. #endif
  238. /*
  239. * Everything starting from the line below is
  240. * Automatically generated by build_glob.py.
  241. * Do not modify the previous line.
  242. */
  243. XMLPUBFUN int * XMLCALL __oldXMLWDcompatibility(void);
  244. #ifdef LIBXML_THREAD_ENABLED
  245. #define oldXMLWDcompatibility \
  246. (*(__oldXMLWDcompatibility()))
  247. #else
  248. XMLPUBVAR int oldXMLWDcompatibility;
  249. #endif
  250. XMLPUBFUN xmlBufferAllocationScheme * XMLCALL __xmlBufferAllocScheme(void);
  251. #ifdef LIBXML_THREAD_ENABLED
  252. #define xmlBufferAllocScheme \
  253. (*(__xmlBufferAllocScheme()))
  254. #else
  255. XMLPUBVAR xmlBufferAllocationScheme xmlBufferAllocScheme;
  256. #endif
  257. XMLPUBFUN xmlBufferAllocationScheme XMLCALL xmlThrDefBufferAllocScheme(xmlBufferAllocationScheme v);
  258. XMLPUBFUN int * XMLCALL __xmlDefaultBufferSize(void);
  259. #ifdef LIBXML_THREAD_ENABLED
  260. #define xmlDefaultBufferSize \
  261. (*(__xmlDefaultBufferSize()))
  262. #else
  263. XMLPUBVAR int xmlDefaultBufferSize;
  264. #endif
  265. XMLPUBFUN int XMLCALL xmlThrDefDefaultBufferSize(int v);
  266. XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __xmlDefaultSAXHandler(void);
  267. #ifdef LIBXML_THREAD_ENABLED
  268. #define xmlDefaultSAXHandler \
  269. (*(__xmlDefaultSAXHandler()))
  270. #else
  271. XMLPUBVAR xmlSAXHandlerV1 xmlDefaultSAXHandler;
  272. #endif
  273. XMLPUBFUN xmlSAXLocator * XMLCALL __xmlDefaultSAXLocator(void);
  274. #ifdef LIBXML_THREAD_ENABLED
  275. #define xmlDefaultSAXLocator \
  276. (*(__xmlDefaultSAXLocator()))
  277. #else
  278. XMLPUBVAR xmlSAXLocator xmlDefaultSAXLocator;
  279. #endif
  280. XMLPUBFUN int * XMLCALL __xmlDoValidityCheckingDefaultValue(void);
  281. #ifdef LIBXML_THREAD_ENABLED
  282. #define xmlDoValidityCheckingDefaultValue \
  283. (*(__xmlDoValidityCheckingDefaultValue()))
  284. #else
  285. XMLPUBVAR int xmlDoValidityCheckingDefaultValue;
  286. #endif
  287. XMLPUBFUN int XMLCALL xmlThrDefDoValidityCheckingDefaultValue(int v);
  288. XMLPUBFUN xmlGenericErrorFunc * XMLCALL __xmlGenericError(void);
  289. #ifdef LIBXML_THREAD_ENABLED
  290. #define xmlGenericError \
  291. (*(__xmlGenericError()))
  292. #else
  293. XMLPUBVAR xmlGenericErrorFunc xmlGenericError;
  294. #endif
  295. XMLPUBFUN xmlStructuredErrorFunc * XMLCALL __xmlStructuredError(void);
  296. #ifdef LIBXML_THREAD_ENABLED
  297. #define xmlStructuredError \
  298. (*(__xmlStructuredError()))
  299. #else
  300. XMLPUBVAR xmlStructuredErrorFunc xmlStructuredError;
  301. #endif
  302. XMLPUBFUN void ** XMLCALL __xmlGenericErrorContext(void);
  303. #ifdef LIBXML_THREAD_ENABLED
  304. #define xmlGenericErrorContext \
  305. (*(__xmlGenericErrorContext()))
  306. #else
  307. XMLPUBVAR void * xmlGenericErrorContext;
  308. #endif
  309. XMLPUBFUN void ** XMLCALL __xmlStructuredErrorContext(void);
  310. #ifdef LIBXML_THREAD_ENABLED
  311. #define xmlStructuredErrorContext \
  312. (*(__xmlStructuredErrorContext()))
  313. #else
  314. XMLPUBVAR void * xmlStructuredErrorContext;
  315. #endif
  316. XMLPUBFUN int * XMLCALL __xmlGetWarningsDefaultValue(void);
  317. #ifdef LIBXML_THREAD_ENABLED
  318. #define xmlGetWarningsDefaultValue \
  319. (*(__xmlGetWarningsDefaultValue()))
  320. #else
  321. XMLPUBVAR int xmlGetWarningsDefaultValue;
  322. #endif
  323. XMLPUBFUN int XMLCALL xmlThrDefGetWarningsDefaultValue(int v);
  324. XMLPUBFUN int * XMLCALL __xmlIndentTreeOutput(void);
  325. #ifdef LIBXML_THREAD_ENABLED
  326. #define xmlIndentTreeOutput \
  327. (*(__xmlIndentTreeOutput()))
  328. #else
  329. XMLPUBVAR int xmlIndentTreeOutput;
  330. #endif
  331. XMLPUBFUN int XMLCALL xmlThrDefIndentTreeOutput(int v);
  332. XMLPUBFUN const char ** XMLCALL __xmlTreeIndentString(void);
  333. #ifdef LIBXML_THREAD_ENABLED
  334. #define xmlTreeIndentString \
  335. (*(__xmlTreeIndentString()))
  336. #else
  337. XMLPUBVAR const char * xmlTreeIndentString;
  338. #endif
  339. XMLPUBFUN const char * XMLCALL xmlThrDefTreeIndentString(const char * v);
  340. XMLPUBFUN int * XMLCALL __xmlKeepBlanksDefaultValue(void);
  341. #ifdef LIBXML_THREAD_ENABLED
  342. #define xmlKeepBlanksDefaultValue \
  343. (*(__xmlKeepBlanksDefaultValue()))
  344. #else
  345. XMLPUBVAR int xmlKeepBlanksDefaultValue;
  346. #endif
  347. XMLPUBFUN int XMLCALL xmlThrDefKeepBlanksDefaultValue(int v);
  348. XMLPUBFUN int * XMLCALL __xmlLineNumbersDefaultValue(void);
  349. #ifdef LIBXML_THREAD_ENABLED
  350. #define xmlLineNumbersDefaultValue \
  351. (*(__xmlLineNumbersDefaultValue()))
  352. #else
  353. XMLPUBVAR int xmlLineNumbersDefaultValue;
  354. #endif
  355. XMLPUBFUN int XMLCALL xmlThrDefLineNumbersDefaultValue(int v);
  356. XMLPUBFUN int * XMLCALL __xmlLoadExtDtdDefaultValue(void);
  357. #ifdef LIBXML_THREAD_ENABLED
  358. #define xmlLoadExtDtdDefaultValue \
  359. (*(__xmlLoadExtDtdDefaultValue()))
  360. #else
  361. XMLPUBVAR int xmlLoadExtDtdDefaultValue;
  362. #endif
  363. XMLPUBFUN int XMLCALL xmlThrDefLoadExtDtdDefaultValue(int v);
  364. XMLPUBFUN int * XMLCALL __xmlParserDebugEntities(void);
  365. #ifdef LIBXML_THREAD_ENABLED
  366. #define xmlParserDebugEntities \
  367. (*(__xmlParserDebugEntities()))
  368. #else
  369. XMLPUBVAR int xmlParserDebugEntities;
  370. #endif
  371. XMLPUBFUN int XMLCALL xmlThrDefParserDebugEntities(int v);
  372. XMLPUBFUN const char ** XMLCALL __xmlParserVersion(void);
  373. #ifdef LIBXML_THREAD_ENABLED
  374. #define xmlParserVersion \
  375. (*(__xmlParserVersion()))
  376. #else
  377. XMLPUBVAR const char * xmlParserVersion;
  378. #endif
  379. XMLPUBFUN int * XMLCALL __xmlPedanticParserDefaultValue(void);
  380. #ifdef LIBXML_THREAD_ENABLED
  381. #define xmlPedanticParserDefaultValue \
  382. (*(__xmlPedanticParserDefaultValue()))
  383. #else
  384. XMLPUBVAR int xmlPedanticParserDefaultValue;
  385. #endif
  386. XMLPUBFUN int XMLCALL xmlThrDefPedanticParserDefaultValue(int v);
  387. XMLPUBFUN int * XMLCALL __xmlSaveNoEmptyTags(void);
  388. #ifdef LIBXML_THREAD_ENABLED
  389. #define xmlSaveNoEmptyTags \
  390. (*(__xmlSaveNoEmptyTags()))
  391. #else
  392. XMLPUBVAR int xmlSaveNoEmptyTags;
  393. #endif
  394. XMLPUBFUN int XMLCALL xmlThrDefSaveNoEmptyTags(int v);
  395. XMLPUBFUN int * XMLCALL __xmlSubstituteEntitiesDefaultValue(void);
  396. #ifdef LIBXML_THREAD_ENABLED
  397. #define xmlSubstituteEntitiesDefaultValue \
  398. (*(__xmlSubstituteEntitiesDefaultValue()))
  399. #else
  400. XMLPUBVAR int xmlSubstituteEntitiesDefaultValue;
  401. #endif
  402. XMLPUBFUN int XMLCALL xmlThrDefSubstituteEntitiesDefaultValue(int v);
  403. XMLPUBFUN xmlRegisterNodeFunc * XMLCALL __xmlRegisterNodeDefaultValue(void);
  404. #ifdef LIBXML_THREAD_ENABLED
  405. #define xmlRegisterNodeDefaultValue \
  406. (*(__xmlRegisterNodeDefaultValue()))
  407. #else
  408. XMLPUBVAR xmlRegisterNodeFunc xmlRegisterNodeDefaultValue;
  409. #endif
  410. XMLPUBFUN xmlDeregisterNodeFunc * XMLCALL __xmlDeregisterNodeDefaultValue(void);
  411. #ifdef LIBXML_THREAD_ENABLED
  412. #define xmlDeregisterNodeDefaultValue \
  413. (*(__xmlDeregisterNodeDefaultValue()))
  414. #else
  415. XMLPUBVAR xmlDeregisterNodeFunc xmlDeregisterNodeDefaultValue;
  416. #endif
  417. XMLPUBFUN xmlParserInputBufferCreateFilenameFunc * XMLCALL __xmlParserInputBufferCreateFilenameValue(void);
  418. #ifdef LIBXML_THREAD_ENABLED
  419. #define xmlParserInputBufferCreateFilenameValue \
  420. (*(__xmlParserInputBufferCreateFilenameValue()))
  421. #else
  422. XMLPUBVAR xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameValue;
  423. #endif
  424. XMLPUBFUN xmlOutputBufferCreateFilenameFunc * XMLCALL __xmlOutputBufferCreateFilenameValue(void);
  425. #ifdef LIBXML_THREAD_ENABLED
  426. #define xmlOutputBufferCreateFilenameValue \
  427. (*(__xmlOutputBufferCreateFilenameValue()))
  428. #else
  429. XMLPUBVAR xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameValue;
  430. #endif
  431. #ifdef __cplusplus
  432. }
  433. #endif
  434. #endif /* __XML_GLOBALS_H */