forked from GNOME/libxml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libxml2.def.src
3190 lines (3190 loc) · 59.7 KB
/
libxml2.def.src
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#define LIBXML2_COMPILING_MSCCDEF
#include "../include/libxml/xmlversion.h"
LIBRARY libxml2
EXPORTS
#ifdef LIBXML_THREAD_ENABLED
#ifdef LIBXML_DOCB_ENABLED
__docbDefaultSAXHandler
#endif
#else
#ifdef LIBXML_DOCB_ENABLED
docbDefaultSAXHandler DATA
#endif
#endif
#ifdef LIBXML_REGEXP_ENABLED
emptyExp DATA
#endif
#ifdef LIBXML_REGEXP_ENABLED
forbiddenExp DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
#ifdef LIBXML_HTML_ENABLED
__htmlDefaultSAXHandler
#endif
#else
#ifdef LIBXML_HTML_ENABLED
htmlDefaultSAXHandler DATA
#endif
#endif
#ifdef LIBXML_THREAD_ENABLED
__oldXMLWDcompatibility
#else
oldXMLWDcompatibility DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlBufferAllocScheme
#else
xmlBufferAllocScheme DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlDefaultBufferSize
#else
xmlDefaultBufferSize DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlDefaultSAXHandler
#else
xmlDefaultSAXHandler DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlDefaultSAXLocator
#else
xmlDefaultSAXLocator DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlDeregisterNodeDefaultValue
#else
xmlDeregisterNodeDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlDoValidityCheckingDefaultValue
#else
xmlDoValidityCheckingDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ALLOC_ENABLED
__xmlFree
#else
xmlFree DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlGenericError
#else
xmlGenericError DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlGenericErrorContext
#else
xmlGenericErrorContext DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlGetWarningsDefaultValue
#else
xmlGetWarningsDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlIndentTreeOutput
#else
xmlIndentTreeOutput DATA
#endif
xmlIsBaseCharGroup DATA
xmlIsCharGroup DATA
xmlIsCombiningGroup DATA
xmlIsDigitGroup DATA
xmlIsExtenderGroup DATA
xmlIsIdeographicGroup DATA
xmlIsPubidChar_tab DATA
#ifdef LIBXML_THREAD_ENABLED
__xmlKeepBlanksDefaultValue
#else
xmlKeepBlanksDefaultValue DATA
#endif
xmlLastError DATA
#ifdef LIBXML_THREAD_ENABLED
__xmlLineNumbersDefaultValue
#else
xmlLineNumbersDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlLoadExtDtdDefaultValue
#else
xmlLoadExtDtdDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ALLOC_ENABLED
__xmlMalloc
#else
xmlMalloc DATA
#endif
#ifdef LIBXML_THREAD_ALLOC_ENABLED
__xmlMallocAtomic
#else
xmlMallocAtomic DATA
#endif
#ifdef LIBXML_THREAD_ALLOC_ENABLED
__xmlMemStrdup
#else
xmlMemStrdup DATA
#endif
xmlOutputBufferCreateFilenameValue DATA
#ifdef LIBXML_THREAD_ENABLED
__xmlParserDebugEntities
#else
xmlParserDebugEntities DATA
#endif
xmlParserInputBufferCreateFilenameValue DATA
xmlParserMaxDepth DATA
#ifdef LIBXML_THREAD_ENABLED
__xmlParserVersion
#else
xmlParserVersion DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlPedanticParserDefaultValue
#else
xmlPedanticParserDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ALLOC_ENABLED
__xmlRealloc
#else
xmlRealloc DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlRegisterNodeDefaultValue
#else
xmlRegisterNodeDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlSaveNoEmptyTags
#else
xmlSaveNoEmptyTags DATA
#endif
xmlStringComment DATA
xmlStringText DATA
xmlStringTextNoenc DATA
xmlStructuredError DATA
xmlStructuredErrorContext DATA
#ifdef LIBXML_THREAD_ENABLED
__xmlSubstituteEntitiesDefaultValue
#else
xmlSubstituteEntitiesDefaultValue DATA
#endif
#ifdef LIBXML_THREAD_ENABLED
__xmlTreeIndentString
#else
xmlTreeIndentString DATA
#endif
#ifdef LIBXML_XPATH_ENABLED
xmlXPathNAN DATA
#endif
#ifdef LIBXML_XPATH_ENABLED
xmlXPathNINF DATA
#endif
#ifdef LIBXML_XPATH_ENABLED
xmlXPathPINF DATA
#endif
#ifdef LIBXML_HTML_ENABLED
UTF8ToHtml
#endif
UTF8Toisolat1
attribute
attributeDecl
cdataBlock
characters
checkNamespace
comment
#ifdef LIBXML_DOCB_ENABLED
docbCreateFileParserCtxt
#endif
#ifdef LIBXML_DOCB_ENABLED
docbCreatePushParserCtxt
#endif
#ifdef LIBXML_DOCB_ENABLED
docbDefaultSAXHandlerInit
#endif
#ifdef LIBXML_DOCB_ENABLED
docbEncodeEntities
#endif
#ifdef LIBXML_DOCB_ENABLED
docbFreeParserCtxt
#endif
#ifdef LIBXML_DOCB_ENABLED
docbParseChunk
#endif
#ifdef LIBXML_DOCB_ENABLED
docbParseDoc
#endif
#ifdef LIBXML_DOCB_ENABLED
docbParseDocument
#endif
#ifdef LIBXML_DOCB_ENABLED
docbParseFile
#endif
#ifdef LIBXML_DOCB_ENABLED
docbSAXParseDoc
#endif
#ifdef LIBXML_DOCB_ENABLED
docbSAXParseFile
#endif
elementDecl
endDocument
endElement
entityDecl
externalSubset
getColumnNumber
getEntity
getLineNumber
getNamespace
getParameterEntity
getPublicId
getSystemId
globalNamespace
hasExternalSubset
hasInternalSubset
#ifdef LIBXML_HTML_ENABLED
htmlAttrAllowed
#endif
#ifdef LIBXML_HTML_ENABLED
htmlAutoCloseTag
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCreateFileParserCtxt
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCreateMemoryParserCtxt
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCreatePushParserCtxt
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCtxtReadDoc
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCtxtReadFd
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCtxtReadFile
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCtxtReadIO
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCtxtReadMemory
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCtxtReset
#endif
#ifdef LIBXML_HTML_ENABLED
htmlCtxtUseOptions
#endif
#ifdef LIBXML_HTML_ENABLED
htmlDefaultSAXHandlerInit
#endif
#ifdef LIBXML_HTML_ENABLED
htmlDocContentDumpFormatOutput
#endif
#ifdef LIBXML_HTML_ENABLED
htmlDocContentDumpOutput
#endif
#ifdef LIBXML_HTML_ENABLED
htmlDocDump
#endif
#ifdef LIBXML_HTML_ENABLED
htmlDocDumpMemory
#endif
#ifdef LIBXML_HTML_ENABLED
htmlDocDumpMemoryFormat
#endif
#ifdef LIBXML_HTML_ENABLED
htmlElementAllowedHere
#endif
#ifdef LIBXML_HTML_ENABLED
htmlElementStatusHere
#endif
#ifdef LIBXML_HTML_ENABLED
htmlEncodeEntities
#endif
#ifdef LIBXML_HTML_ENABLED
htmlEntityLookup
#endif
#ifdef LIBXML_HTML_ENABLED
htmlEntityValueLookup
#endif
#ifdef LIBXML_HTML_ENABLED
htmlFreeParserCtxt
#endif
#ifdef LIBXML_HTML_ENABLED
htmlGetMetaEncoding
#endif
#ifdef LIBXML_HTML_ENABLED
htmlHandleOmittedElem
#endif
#ifdef LIBXML_HTML_ENABLED
htmlInitAutoClose
#endif
#ifdef LIBXML_HTML_ENABLED
htmlIsAutoClosed
#endif
#ifdef LIBXML_HTML_ENABLED
htmlIsBooleanAttr
#endif
#ifdef LIBXML_HTML_ENABLED
htmlIsScriptAttribute
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNewDoc
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNewDocNoDtD
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNewParserCtxt
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNodeDump
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNodeDumpFile
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNodeDumpFileFormat
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNodeDumpFormatOutput
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNodeDumpOutput
#endif
#ifdef LIBXML_HTML_ENABLED
htmlNodeStatus
#endif
#ifdef LIBXML_HTML_ENABLED
htmlParseCharRef
#endif
#ifdef LIBXML_HTML_ENABLED
htmlParseChunk
#endif
#ifdef LIBXML_HTML_ENABLED
htmlParseDoc
#endif
#ifdef LIBXML_HTML_ENABLED
htmlParseDocument
#endif
#ifdef LIBXML_HTML_ENABLED
htmlParseElement
#endif
#ifdef LIBXML_HTML_ENABLED
htmlParseEntityRef
#endif
#ifdef LIBXML_HTML_ENABLED
htmlParseFile
#endif
#ifdef LIBXML_HTML_ENABLED
htmlReadDoc
#endif
#ifdef LIBXML_HTML_ENABLED
htmlReadFd
#endif
#ifdef LIBXML_HTML_ENABLED
htmlReadFile
#endif
#ifdef LIBXML_HTML_ENABLED
htmlReadIO
#endif
#ifdef LIBXML_HTML_ENABLED
htmlReadMemory
#endif
#ifdef LIBXML_HTML_ENABLED
htmlSAXParseDoc
#endif
#ifdef LIBXML_HTML_ENABLED
htmlSAXParseFile
#endif
#ifdef LIBXML_HTML_ENABLED
htmlSaveFile
#endif
#ifdef LIBXML_HTML_ENABLED
htmlSaveFileEnc
#endif
#ifdef LIBXML_HTML_ENABLED
htmlSaveFileFormat
#endif
#ifdef LIBXML_HTML_ENABLED
htmlSetMetaEncoding
#endif
#ifdef LIBXML_HTML_ENABLED
htmlTagLookup
#endif
ignorableWhitespace
initGenericErrorDefaultFunc
#ifdef LIBXML_DOCB_ENABLED
initdocbDefaultSAXHandler
#endif
#ifdef LIBXML_HTML_ENABLED
inithtmlDefaultSAXHandler
#endif
initxmlDefaultSAXHandler
inputPop
inputPush
internalSubset
isStandalone
isolat1ToUTF8
namePop
namePush
namespaceDecl
nodePop
nodePush
notationDecl
processingInstruction
reference
resolveEntity
setDocumentLocator
setNamespace
startDocument
startElement
unparsedEntityDecl
#ifdef LIBXML_XPATH_ENABLED
valuePop
#endif
#ifdef LIBXML_XPATH_ENABLED
valuePush
#endif
#ifdef LIBXML_XLINK_ENABLED
xlinkGetDefaultDetect
#endif
#ifdef LIBXML_XLINK_ENABLED
xlinkGetDefaultHandler
#endif
#ifdef LIBXML_XLINK_ENABLED
xlinkIsLink
#endif
#ifdef LIBXML_XLINK_ENABLED
xlinkSetDefaultDetect
#endif
#ifdef LIBXML_XLINK_ENABLED
xlinkSetDefaultHandler
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlACatalogAdd
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlACatalogDump
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlACatalogRemove
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlACatalogResolve
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlACatalogResolvePublic
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlACatalogResolveSystem
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlACatalogResolveURI
#endif
xmlAddAttributeDecl
xmlAddChild
xmlAddChildList
xmlAddDocEntity
xmlAddDtdEntity
xmlAddElementDecl
xmlAddEncodingAlias
xmlAddID
xmlAddNextSibling
xmlAddNotationDecl
xmlAddPrevSibling
xmlAddRef
xmlAddSibling
xmlAllocOutputBuffer
xmlAllocParserInputBuffer
xmlAttrSerializeTxtContent
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataCompile
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataGetInitState
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataIsDeterminist
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewAllTrans
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewCountTrans
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewCountTrans2
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewCountedTrans
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewCounter
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewCounterTrans
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewEpsilon
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewNegTrans
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewOnceTrans
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewOnceTrans2
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewState
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewTransition
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataNewTransition2
#endif
#ifdef LIBXML_AUTOMATA_ENABLED
xmlAutomataSetFinalState
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlBoolToText
#endif
xmlBufContent
xmlBufEnd
xmlBufGetNodeContent
xmlBufNodeDump
xmlBufShrink
xmlBufUse
xmlBufferAdd
xmlBufferAddHead
xmlBufferCCat
xmlBufferCat
xmlBufferContent
xmlBufferCreate
xmlBufferCreateSize
xmlBufferCreateStatic
xmlBufferDetach
xmlBufferDump
xmlBufferEmpty
xmlBufferFree
xmlBufferGrow
xmlBufferLength
xmlBufferResize
xmlBufferSetAllocationScheme
xmlBufferShrink
xmlBufferWriteCHAR
xmlBufferWriteChar
xmlBufferWriteQuotedString
xmlBuildQName
xmlBuildRelativeURI
xmlBuildURI
xmlByteConsumed
#ifdef LIBXML_C14N_ENABLED
xmlC14NDocDumpMemory
#endif
#ifdef LIBXML_C14N_ENABLED
xmlC14NDocSave
#endif
#ifdef LIBXML_C14N_ENABLED
xmlC14NDocSaveTo
#endif
#ifdef LIBXML_C14N_ENABLED
xmlC14NExecute
#endif
xmlCanonicPath
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogAdd
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogAddLocal
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogCleanup
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogConvert
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogDump
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogFreeLocal
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogGetDefaults
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogGetPublic
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogGetSystem
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogIsEmpty
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogLocalResolve
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogLocalResolveURI
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogRemove
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogResolve
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogResolvePublic
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogResolveSystem
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogResolveURI
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogSetDebug
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogSetDefaultPrefer
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogSetDefaults
#endif
xmlCharEncCloseFunc
xmlCharEncFirstLine
xmlCharEncInFunc
xmlCharEncOutFunc
xmlCharInRange
xmlCharStrdup
xmlCharStrndup
xmlCheckFilename
xmlCheckHTTPInput
xmlCheckLanguageID
xmlCheckUTF8
xmlCheckVersion
xmlChildElementCount
xmlCleanupCharEncodingHandlers
xmlCleanupEncodingAliases
xmlCleanupGlobals
xmlCleanupInputCallbacks
xmlCleanupMemory
xmlCleanupOutputCallbacks
xmlCleanupParser
xmlCleanupPredefinedEntities
xmlCleanupThreads
xmlClearNodeInfoSeq
xmlClearParserCtxt
#ifdef LIBXML_CATALOG_ENABLED
xmlConvertSGMLCatalog
#endif
xmlCopyAttributeTable
xmlCopyChar
xmlCopyCharMultiByte
xmlCopyDoc
xmlCopyDocElementContent
xmlCopyDtd
xmlCopyElementContent
xmlCopyElementTable
xmlCopyEntitiesTable
xmlCopyEnumeration
xmlCopyError
xmlCopyNamespace
xmlCopyNamespaceList
xmlCopyNode
xmlCopyNodeList
xmlCopyNotationTable
xmlCopyProp
xmlCopyPropList
xmlCreateDocParserCtxt
xmlCreateEntitiesTable
xmlCreateEntityParserCtxt
xmlCreateEnumeration
xmlCreateFileParserCtxt
xmlCreateIOParserCtxt
xmlCreateIntSubset
xmlCreateMemoryParserCtxt
xmlCreatePushParserCtxt
xmlCreateURI
xmlCreateURLParserCtxt
xmlCtxtGetLastError
xmlCtxtReadDoc
xmlCtxtReadFd
xmlCtxtReadFile
xmlCtxtReadIO
xmlCtxtReadMemory
xmlCtxtReset
xmlCtxtResetLastError
xmlCtxtResetPush
xmlCtxtUseOptions
xmlCurrentChar
xmlDOMWrapAdoptNode
xmlDOMWrapCloneNode
xmlDOMWrapFreeCtxt
xmlDOMWrapNewCtxt
xmlDOMWrapReconcileNamespaces
xmlDOMWrapRemoveNode
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugCheckDocument
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpAttr
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpAttrList
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpDTD
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpDocument
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpDocumentHead
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpEntities
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpNode
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpNodeList
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpOneNode
#endif
#ifdef LIBXML_DEBUG_ENABLED
xmlDebugDumpString
#endif
xmlDecodeEntities
xmlDefaultSAXHandlerInit
xmlDelEncodingAlias
xmlDeregisterNodeDefault
xmlDetectCharEncoding
xmlDictCleanup
xmlDictCreate
xmlDictCreateSub
xmlDictExists
xmlDictFree
xmlDictGetUsage
xmlDictLookup
xmlDictOwns
xmlDictQLookup
xmlDictReference
xmlDictSetLimit
xmlDictSize
xmlDllMain
xmlDocCopyNode
xmlDocCopyNodeList
xmlDocDump
xmlDocDumpFormatMemory
xmlDocDumpFormatMemoryEnc
xmlDocDumpMemory
xmlDocDumpMemoryEnc
xmlDocFormatDump
xmlDocGetRootElement
xmlDocSetRootElement
xmlDumpAttributeDecl
xmlDumpAttributeTable
xmlDumpElementDecl
xmlDumpElementTable
xmlDumpEntitiesTable
xmlDumpEntityDecl
xmlDumpNotationDecl
xmlDumpNotationTable
xmlElemDump
xmlEncodeEntities
xmlEncodeEntitiesReentrant
xmlEncodeSpecialChars
xmlErrMemory
#ifdef LIBXML_REGEXP_ENABLED
xmlExpCtxtNbCons
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpCtxtNbNodes
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpDump
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpExpDerive
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpFree
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpFreeCtxt
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpGetLanguage
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpGetStart
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpIsNillable
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpMaxToken
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpNewAtom
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpNewCtxt
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpNewOr
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpNewRange
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpNewSeq
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpParse
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpRef
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpStringDerive
#endif
#ifdef LIBXML_REGEXP_ENABLED
xmlExpSubsume
#endif
xmlFileClose
xmlFileMatch
xmlFileOpen
xmlFileRead
xmlFindCharEncodingHandler
xmlFirstElementChild
xmlFreeAttributeTable
#ifdef LIBXML_AUTOMATA_ENABLED
xmlFreeAutomata
#endif
#ifdef LIBXML_CATALOG_ENABLED
xmlFreeCatalog
#endif
xmlFreeDoc
xmlFreeDocElementContent
xmlFreeDtd
xmlFreeElementContent
xmlFreeElementTable
xmlFreeEntitiesTable
xmlFreeEnumeration
xmlFreeIDTable
xmlFreeInputStream
xmlFreeMutex
xmlFreeNode
xmlFreeNodeList
xmlFreeNotationTable
xmlFreeNs
xmlFreeNsList
xmlFreeParserCtxt
xmlFreeParserInputBuffer
xmlFreePattern
xmlFreePatternList
xmlFreeProp
xmlFreePropList
xmlFreeRMutex
xmlFreeRefTable
xmlFreeStreamCtxt
xmlFreeTextReader
xmlFreeTextWriter
xmlFreeURI
xmlFreeValidCtxt
xmlGcMemGet
xmlGcMemSetup
xmlGetBufferAllocationScheme
xmlGetCharEncodingHandler
xmlGetCharEncodingName
xmlGetCompressMode
xmlGetDocCompressMode
xmlGetDocEntity
xmlGetDtdAttrDesc
xmlGetDtdElementDesc
xmlGetDtdEntity
xmlGetDtdNotationDesc
xmlGetDtdQAttrDesc
xmlGetDtdQElementDesc
xmlGetEncodingAlias
xmlGetExternalEntityLoader
xmlGetFeature
xmlGetFeaturesList
xmlGetGlobalState
xmlGetID
xmlGetIntSubset
xmlGetLastChild
xmlGetLastError
xmlGetLineNo
xmlGetNoNsProp
xmlGetNodePath
xmlGetNsList
xmlGetNsProp
xmlGetParameterEntity
xmlGetPredefinedEntity
xmlGetProp
xmlGetRefs
xmlGetThreadId
xmlGetUTF8Char
xmlHandleEntity
xmlHasFeature
xmlHasNsProp
xmlHasProp
xmlHashAddEntry
xmlHashAddEntry2
xmlHashAddEntry3
xmlHashCopy
xmlHashCreate
xmlHashCreateDict
xmlHashFree
xmlHashLookup
xmlHashLookup2
xmlHashLookup3
xmlHashQLookup
xmlHashQLookup2
xmlHashQLookup3
xmlHashRemoveEntry
xmlHashRemoveEntry2
xmlHashRemoveEntry3
xmlHashScan
xmlHashScan3
xmlHashScanFull
xmlHashScanFull3
xmlHashSize
xmlHashUpdateEntry
xmlHashUpdateEntry2
xmlHashUpdateEntry3
#ifdef LIBXML_FTP_ENABLED
xmlIOFTPClose
#endif
#ifdef LIBXML_FTP_ENABLED
xmlIOFTPMatch
#endif
#ifdef LIBXML_FTP_ENABLED
xmlIOFTPOpen
#endif
#ifdef LIBXML_FTP_ENABLED
xmlIOFTPRead
#endif
#ifdef LIBXML_HTML_ENABLED
xmlIOHTTPClose
#endif
#ifdef LIBXML_HTML_ENABLED
xmlIOHTTPMatch
#endif
#ifdef LIBXML_HTML_ENABLED
xmlIOHTTPOpen
#endif
#ifdef LIBXML_HTML_ENABLED
xmlIOHTTPOpenW
#endif
#ifdef LIBXML_HTML_ENABLED
xmlIOHTTPRead
#endif
xmlIOParseDTD
xmlInitCharEncodingHandlers
xmlInitGlobals
xmlInitMemory
xmlInitNodeInfoSeq
xmlInitParser
xmlInitParserCtxt
xmlInitThreads