-
Notifications
You must be signed in to change notification settings - Fork 0
/
DTDScanner.o.cpp
7105 lines (6067 loc) · 204 KB
/
DTDScanner.o.cpp
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
typedef unsigned char undefined;
typedef unsigned char bool;
typedef unsigned char byte;
typedef unsigned char dwfenc;
typedef unsigned int dword;
typedef long double longdouble;
typedef long long longlong;
typedef unsigned long qword;
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef unsigned long long ulonglong;
typedef unsigned char undefined1;
typedef unsigned short undefined2;
typedef unsigned int undefined4;
typedef unsigned long undefined8;
typedef unsigned short ushort;
typedef int wchar_t;
typedef unsigned short word;
typedef ulong size_t;
typedef struct NameIdPoolBucketElem NameIdPoolBucketElem, *PNameIdPoolBucketElem;
struct NameIdPoolBucketElem { // PlaceHolder Structure
};
typedef undefined __unknown__[32];
typedef longdouble __float128;
typedef struct XMLBufferMgr XMLBufferMgr, *PXMLBufferMgr;
typedef struct MemoryManager MemoryManager, *PMemoryManager;
typedef struct XMLBuffer XMLBuffer, *PXMLBuffer;
typedef struct XMLBufferFullHandler XMLBufferFullHandler, *PXMLBufferFullHandler;
typedef ushort XMLCh;
struct XMLBufferMgr { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with fBufCount]
uint fBufCount;
undefined field1_0x4;
undefined field2_0x5;
undefined field3_0x6;
undefined field4_0x7;
struct MemoryManager * fMemoryManager;
struct XMLBuffer * * fBufList;
};
struct MemoryManager {
int (** _vptr.MemoryManager)(...);
};
struct XMLBuffer { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with fIndex]
uint fIndex;
uint fCapacity;
uint fFullSize;
bool fUsed;
undefined field4_0xd;
undefined field5_0xe;
undefined field6_0xf;
struct MemoryManager * fMemoryManager;
struct XMLBufferFullHandler * fFullHandler;
XMLCh * fBuffer;
};
struct XMLBufferFullHandler {
int (** _vptr.XMLBufferFullHandler)(...);
};
typedef struct XMLBufBid XMLBufBid, *PXMLBufBid;
struct XMLBufBid { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with fBuffer]
struct XMLBuffer * fBuffer;
struct XMLBufferMgr * fMgr;
};
typedef uchar XMLByte;
typedef struct XMLValidator XMLValidator, *PXMLValidator;
typedef struct XMLErrorReporter XMLErrorReporter, *PXMLErrorReporter;
typedef struct ReaderMgr ReaderMgr, *PReaderMgr;
typedef struct XMLScanner XMLScanner, *PXMLScanner;
struct ReaderMgr {
};
struct XMLErrorReporter {
int (** _vptr.XMLErrorReporter)(...);
};
struct XMLScanner {
};
struct XMLValidator { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with _vptr.XMLValidator]
int (** _vptr.XMLValidator)(...);
struct XMLBufferMgr * fBufMgr;
struct XMLErrorReporter * fErrorReporter;
struct ReaderMgr * fReaderMgr;
struct XMLScanner * fScanner;
};
typedef struct ArrayIndexOutOfBoundsException ArrayIndexOutOfBoundsException, *PArrayIndexOutOfBoundsException;
typedef struct XMLException XMLException, *PXMLException;
struct XMLException {
};
struct ArrayIndexOutOfBoundsException {
struct XMLException super_XMLException;
undefined field1_0x1;
undefined field2_0x2;
undefined field3_0x3;
undefined field4_0x4;
undefined field5_0x5;
undefined field6_0x6;
undefined field7_0x7;
undefined field8_0x8;
undefined field9_0x9;
undefined field10_0xa;
undefined field11_0xb;
undefined field12_0xc;
undefined field13_0xd;
undefined field14_0xe;
undefined field15_0xf;
undefined field16_0x10;
undefined field17_0x11;
undefined field18_0x12;
undefined field19_0x13;
undefined field20_0x14;
undefined field21_0x15;
undefined field22_0x16;
undefined field23_0x17;
undefined field24_0x18;
undefined field25_0x19;
undefined field26_0x1a;
undefined field27_0x1b;
undefined field28_0x1c;
undefined field29_0x1d;
undefined field30_0x1e;
undefined field31_0x1f;
undefined field32_0x20;
undefined field33_0x21;
undefined field34_0x22;
undefined field35_0x23;
undefined field36_0x24;
undefined field37_0x25;
undefined field38_0x26;
undefined field39_0x27;
undefined field40_0x28;
undefined field41_0x29;
undefined field42_0x2a;
undefined field43_0x2b;
undefined field44_0x2c;
undefined field45_0x2d;
undefined field46_0x2e;
undefined field47_0x2f;
};
typedef struct RefVectorOf<xercesc_2_7::XSAnnotation> RefVectorOf<xercesc_2_7::XSAnnotation>, *PRefVectorOf<xercesc_2_7::XSAnnotation>;
typedef struct RefVectorOf<xercesc_2_7::XSAnnotation> XSAnnotationList;
struct RefVectorOf<xercesc_2_7::XSAnnotation> {
};
typedef struct RefVectorOf<xercesc_2_7::XSNamespaceItem> RefVectorOf<xercesc_2_7::XSNamespaceItem>, *PRefVectorOf<xercesc_2_7::XSNamespaceItem>;
typedef struct RefVectorOf<xercesc_2_7::XSNamespaceItem> XSNamespaceItemList;
struct RefVectorOf<xercesc_2_7::XSNamespaceItem> {
};
typedef struct RefArrayVectorOf<short_unsigned_int> RefArrayVectorOf<short_unsigned_int>, *PRefArrayVectorOf<short_unsigned_int>;
typedef struct RefArrayVectorOf<short_unsigned_int> StringList;
typedef struct BaseRefVectorOf<short_unsigned_int> BaseRefVectorOf<short_unsigned_int>, *PBaseRefVectorOf<short_unsigned_int>;
struct BaseRefVectorOf<short_unsigned_int> { // Original name: BaseRefVectorOf<short unsigned int>
Missing member super_XMemory : XMemory at offset 0x0 [conflict with _vptr.BaseRefVectorOf]
int (** _vptr.BaseRefVectorOf)(...);
bool fAdoptedElems;
undefined field2_0x9;
undefined field3_0xa;
undefined field4_0xb;
uint fCurCount;
uint fMaxCount;
undefined field7_0x14;
undefined field8_0x15;
undefined field9_0x16;
undefined field10_0x17;
ushort * * fElemList;
struct MemoryManager * fMemoryManager;
};
struct RefArrayVectorOf<short_unsigned_int> { // Original name: RefArrayVectorOf<short unsigned int>
struct BaseRefVectorOf<short_unsigned_int> super_BaseRefVectorOf<short_unsigned_int>;
};
typedef struct XSConstants XSConstants, *PXSConstants;
struct XSConstants {
undefined field0_0x0;
};
typedef enum COMPONENT_TYPE {
ATTRIBUTE_DECLARATION=1,
ELEMENT_DECLARATION=2,
TYPE_DEFINITION=3,
ATTRIBUTE_USE=4,
ATTRIBUTE_GROUP_DEFINITION=5,
MODEL_GROUP_DEFINITION=6,
MODEL_GROUP=7,
PARTICLE=8,
WILDCARD=9,
IDENTITY_CONSTRAINT=10,
NOTATION_DECLARATION=11,
ANNOTATION=12,
FACET=13,
MULTIVALUE_FACET=14
} COMPONENT_TYPE;
typedef struct XMLErrs XMLErrs, *PXMLErrs;
struct XMLErrs {
undefined field0_0x0;
};
typedef enum Codes {
BadAttDerivation_5=-128,
BadAttDerivation_6=-127,
BadAttDerivation_7=-126,
BadAttDerivation_8=-125,
BadAttDerivation_9=-124,
AllContentError=-123,
RedefineNamespaceDifference=-122,
Redefine_InvalidSimpleType=-121,
Redefine_InvalidSimpleTypeBase=-120,
Redefine_InvalidComplexType=-119,
Redefine_InvalidComplexTypeBase=-118,
Redefine_InvalidGroupMinMax=-117,
Redefine_DeclarationNotFound=-116,
Redefine_GroupRefCount=-115,
Redefine_AttGroupRefCount=-114,
Redefine_InvalidChild=-113,
Notation_InvalidDecl=-112,
Notation_DeclNotFound=-111,
IC_DuplicateDecl=-110,
IC_BadContent=-109,
IC_KeyRefReferNotFound=-108,
IC_KeyRefCardinality=-107,
IC_XPathExprMissing=-106,
AttUseCorrect=-105,
AttDeclPropCorrect3=-104,
AttDeclPropCorrect5=-103,
AttGrpPropCorrect3=-102,
InvalidTargetNSValue=-101,
DisplayErrorMessage=-100,
XMLException_Error=-99,
InvalidRedefine=-98,
InvalidNSReference=-97,
NotAllContent=-96,
InvalidAnnotationContent=-95,
InvalidFacetName=-94,
InvalidXMLSchemaRoot=-93,
CircularSubsGroup=-92,
SubsGroupMemberAbstract=-91,
ELTSchemaNS=-90,
InvalidAttTNS=-89,
NSDeclInvalid=-88,
DOMLevel1Node=-87,
E_HighBounds=-86,
F_LowBounds=-85,
EntityExpansionLimitExceeded=-84,
ExpectedCommentOrCDATA=-83,
ExpectedAttrName=-82,
ExpectedNotationName=-81,
NoRepInMixed=-80,
BadDefAttrDecl=-79,
ExpectedDefAttrDecl=-78,
AttListSyntaxError=-77,
ExpectedEqSign=-76,
DupAttrName=-75,
BadIdForXMLLangAttr=-74,
ExpectedElementName=-73,
MustStartWithXMLDecl=-72,
CommentsMustStartWith=-71,
InvalidDocumentStructure=-70,
ExpectedDeclString=-69,
BadXMLVersion=-68,
UnsupportedXMLVersion=-67,
UnterminatedXMLDecl=-66,
BadXMLEncoding=-65,
BadStandalone=-64,
UnterminatedComment=-63,
PINameExpected=-62,
UnterminatedPI=-61,
InvalidCharacter=-60,
UnexpectedTextBeforeRoot=-59,
UnterminatedStartTag=-58,
ExpectedAttrValue=-57,
UnterminatedEndTag=-56,
ExpectedAttributeType=-55,
ExpectedEndOfTagX=-54,
ExpectedMarkup=-53,
NotValidAfterContent=-52,
ExpectedComment=-51,
ExpectedCommentOrPI=-50,
ExpectedWhitespace=-49,
NoRootElemInDOCTYPE=-48,
ExpectedQuotedString=-47,
ExpectedPublicId=-46,
InvalidPublicIdChar=-45,
UnterminatedDOCTYPE=-44,
InvalidCharacterInIntSubset=-43,
ExpectedCDATA=-42,
InvalidInitialNameChar=-41,
InvalidNameChar=-40,
UnexpectedWhitespace=-39,
InvalidCharacterInAttrValue=-38,
ExpectedMarkupDecl=-37,
TextDeclNotLegalHere=-36,
ConditionalSectInIntSubset=-35,
ExpectedPEName=-34,
UnterminatedEntityDecl=-33,
InvalidCharacterRef=-32,
UnterminatedCharRef=-31,
ExpectedEntityRefName=-30,
EntityNotFound=-29,
NoUnparsedEntityRefs=-28,
UnterminatedEntityRef=-27,
RecursiveEntity=-26,
PartialMarkupInEntity=-25,
UnterminatedElementDecl=-24,
ExpectedContentSpecExpr=-23,
ExpectedAsterisk=-22,
UnterminatedContentModel=-21,
ExpectedSystemId=-20,
ExpectedSystemOrPublicId=-19,
UnterminatedNotationDecl=-18,
ExpectedSeqChoiceLeaf=-17,
ExpectedChoiceOrCloseParen=-16,
ExpectedSeqOrCloseParen=-15,
ExpectedEnumValue=-14,
ExpectedEnumSepOrParen=-13,
UnterminatedEntityLiteral=-12,
MoreEndThanStartTags=-11,
ExpectedOpenParen=-10,
AttrAlreadyUsedInSTag=-9,
BracketInAttrValue=-8,
Expected2ndSurrogateChar=-7,
ExpectedEndOfConditional=-6,
ExpectedIncOrIgn=-5,
ExpectedINCLUDEBracket=-4,
ExpectedTextDecl=-3,
ExpectedXMLDecl=-2,
UnexpectedEOE=-1,
NoError=0,
W_LowBounds=1,
NotationAlreadyExists=2,
AttListAlreadyExists=3,
ContradictoryEncoding=4,
UndeclaredElemInCM=5,
UndeclaredElemInAttList=6,
XMLException_Warning=7,
W_HighBounds=8,
E_LowBounds=9,
FeatureUnsupported=10,
TopLevelNoNameComplexType=11,
TopLevelNoNameAttribute=12,
NoNameRefAttribute=13,
GlobalNoNameElement=14,
NoNameRefElement=15,
NoNameRefGroup=16,
NoNameRefAttGroup=17,
AnonComplexTypeWithName=18,
AnonSimpleTypeWithName=19,
InvalidElementContent=20,
UntypedElement=21,
SimpleTypeContentError=22,
ExpectedSimpleTypeInList=23,
ListUnionRestrictionError=24,
SimpleTypeDerivationByListError=25,
ExpectedSimpleTypeInRestriction=26,
DuplicateFacet=27,
ExpectedSimpleTypeInUnion=28,
EmptySimpleTypeContent=29,
InvalidSimpleContent=30,
UnspecifiedBase=31,
InvalidComplexContent=32,
SchemaElementContentError=33,
ContentError=34,
UnknownSimpleType=35,
UnknownComplexType=36,
UnresolvedPrefix=37,
RefElementNotFound=38,
TypeNotFound=39,
TopLevelAttributeNotFound=40,
InvalidChildInComplexType=41,
BaseTypeNotFound=42,
NoAttributeInSchema=43,
DatatypeValidatorCreationError=44,
InvalidChildFollowingSimpleContent=45,
InvalidChildFollowingConplexContent=46,
InvalidComplexTypeBlockValue=47,
InvalidComplexTypeFinalValue=48,
AttributeDefaultFixedValue=49,
NotOptionalDefaultAttValue=50,
LocalAttributeWithNameRef=51,
GlobalAttributeWithNameRef=52,
DuplicateAttribute=53,
AttributeWithTypeAndSimpleType=54,
AttributeSimpleTypeNotFound=55,
ElementWithFixedAndDefault=56,
DeclarationWithNameRef=57,
BadAttWithRef=58,
InvalidDeclarationName=59,
GlobalElementWithRef=60,
ElementWithTypeAndAnonType=61,
NotSimpleOrMixedElement=62,
DisallowedSimpleTypeExtension=63,
InvalidSimpleContentBase=64,
InvalidComplexTypeBase=65,
InvalidChildInSimpleContent=66,
InvalidChildInComplexContent=67,
AnnotationError=68,
DisallowedBaseDerivation=69,
SubstitutionRepeated=70,
UnionRepeated=71,
ExtensionRepeated=72,
ListRepeated=73,
RestrictionRepeated=74,
InvalidBlockValue=75,
InvalidFinalValue=76,
InvalidSubstitutionGroupElement=77,
SubstitutionGroupTypeMismatch=78,
DuplicateElementDeclaration=79,
InvalidElementBlockValue=80,
InvalidElementFinalValue=81,
InvalidAttValue=82,
AttributeRefContentError=83,
DuplicateRefAttribute=84,
ForbiddenDerivationByRestriction=85,
ForbiddenDerivationByExtension=86,
BaseNotComplexType=87,
ImportNamespaceDifference=88,
ImportRootError=89,
DeclarationNoSchemaLocation=90,
IncludeNamespaceDifference=91,
OnlyAnnotationExpected=92,
InvalidAttributeContent=93,
AttributeRequired=94,
AttributeDisallowed=95,
InvalidMin2MaxOccurs=96,
AnyAttributeContentError=97,
NoNameGlobalElement=98,
NoCircularDefinition=99,
DuplicateGlobalType=100,
DuplicateGlobalDeclaration=101,
WS_CollapseExpected=102,
Import_1_1=103,
Import_1_2=104,
ElemIDValueConstraint=105,
NoNotationType=106,
EmptiableMixedContent=107,
EmptyComplexRestrictionDerivation=108,
MixedOrElementOnly=109,
InvalidContentRestriction=110,
ForbiddenDerivation=111,
AtomicItemType=112,
MemberTypeNoUnion=113,
GroupContentError=114,
AttGroupContentError=115,
MinMaxOnGroupChild=116,
DeclarationNotFound=117,
AllContentLimited=118,
BadMinMaxAllCT=119,
BadMinMaxAllElem=120,
NoCircularAttGroup=121,
DuplicateAttInDerivation=122,
NotExpressibleWildCardIntersection=123,
BadAttDerivation_1=124,
BadAttDerivation_2=125,
BadAttDerivation_3=126,
BadAttDerivation_4=127,
PEPropogated=256,
ExtraCloseSquare=257,
PERefInMarkupInIntSubset=258,
EntityPropogated=259,
ExpectedNumericalCharRef=260,
ExpectedOpenSquareBracket=261,
BadSequenceInCharData=262,
IllegalSequenceInComment=263,
UnterminatedCDATASection=264,
ExpectedNDATA=265,
NDATANotValidForPE=266,
HexRadixMustBeLowerCase=267,
DeclStringRep=268,
DeclStringsInWrongOrder=269,
NoExtRefsInAttValue=270,
XMLDeclMustBeLowerCase=271,
ExpectedEntityValue=272,
BadDigitForRadix=273,
EndedWithTagsOnStack=274,
AmbiguousContentModel=275,
NestedCDATA=276,
UnknownPrefix=277,
PartialTagMarkupError=278,
EmptyMainEntity=279,
CDATAOutsideOfContent=280,
OnlyCharRefsAllowedHere=281,
Unexpected2ndSurrogateChar=282,
NoPIStartsWithXML=283,
XMLDeclMustBeFirst=284,
XMLVersionRequired=285,
StandaloneNotLegal=286,
EncodingRequired=287,
TooManyColonsInName=288,
InvalidColonPos=289,
ColonNotLegalWithNS=290,
SysException=291,
XMLException_Fatal=292,
UnexpectedEOF=293,
UnexpectedError=294,
BadSchemaLocation=295,
NoGrammarResolver=296,
SchemaScanFatalError=297,
IllegalRefInStandalone=298,
PEBetweenDecl=299,
NoEmptyStrNamespace=300,
NoUseOfxmlnsAsPrefix=301,
NoUseOfxmlnsURI=302,
PrefixXMLNotMatchXMLURI=303,
XMLURINotMatchXMLPrefix=304,
NoXMLNSAsElementPrefix=305,
CT_SimpleTypeChildRequired=306,
InvalidRootElemInDOCTYPE=307,
InvalidElementName=308,
InvalidAttrName=309,
InvalidEntityRefName=310,
F_HighBounds=311
} Codes;
typedef struct XMLEntityHandler XMLEntityHandler, *PXMLEntityHandler;
struct XMLEntityHandler {
int (** _vptr.XMLEntityHandler)(...);
};
typedef struct EndOfEntityException EndOfEntityException, *PEndOfEntityException;
typedef struct XMLEntityDecl XMLEntityDecl, *PXMLEntityDecl;
struct XMLEntityDecl {
};
struct EndOfEntityException {
struct XMLEntityDecl * fEntity;
uint fReaderNum;
undefined field2_0xc;
undefined field3_0xd;
undefined field4_0xe;
undefined field5_0xf;
};
typedef struct DocTypeHandler DocTypeHandler, *PDocTypeHandler;
struct DocTypeHandler {
int (** _vptr.DocTypeHandler)(...);
};
typedef struct XSerializeEngine XSerializeEngine, *PXSerializeEngine;
typedef struct XMLGrammarPool XMLGrammarPool, *PXMLGrammarPool;
typedef struct BinInputStream BinInputStream, *PBinInputStream;
typedef struct BinOutputStream BinOutputStream, *PBinOutputStream;
typedef struct RefHashTableOf<xercesc_2_7::XSerializedObjectId> RefHashTableOf<xercesc_2_7::XSerializedObjectId>, *PRefHashTableOf<xercesc_2_7::XSerializedObjectId>;
typedef struct ValueVectorOf<void*> ValueVectorOf<void*>, *PValueVectorOf<void*>;
typedef uint XSerializedObjectId_t;
struct XMLGrammarPool { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with _vptr.XMLGrammarPool]
int (** _vptr.XMLGrammarPool)(...);
struct MemoryManager * fMemMgr;
bool fIgnoreSerializedAnnotations;
undefined field3_0x11;
undefined field4_0x12;
undefined field5_0x13;
undefined field6_0x14;
undefined field7_0x15;
undefined field8_0x16;
undefined field9_0x17;
};
struct ValueVectorOf<void*> {
};
struct BinOutputStream {
};
struct RefHashTableOf<xercesc_2_7::XSerializedObjectId> {
};
struct XSerializeEngine {
short fStoreLoad;
short fStorerLevel;
undefined field2_0x4;
undefined field3_0x5;
undefined field4_0x6;
undefined field5_0x7;
struct XMLGrammarPool * fGrammarPool;
struct BinInputStream * fInputStream;
struct BinOutputStream * fOutputStream;
ulong fBufCount;
ulong fBufSize;
XMLByte * fBufStart;
XMLByte * fBufEnd;
XMLByte * fBufCur;
XMLByte * fBufLoadMax;
struct RefHashTableOf<xercesc_2_7::XSerializedObjectId> * fStorePool;
struct ValueVectorOf<void*> * fLoadPool;
XSerializedObjectId_t fObjectCount;
undefined field18_0x64;
undefined field19_0x65;
undefined field20_0x66;
undefined field21_0x67;
};
struct BinInputStream {
};
typedef struct DTDEntityDecl DTDEntityDecl, *PDTDEntityDecl;
struct DTDEntityDecl {
struct XMLEntityDecl super_XMLEntityDecl;
undefined field1_0x1;
undefined field2_0x2;
undefined field3_0x3;
undefined field4_0x4;
undefined field5_0x5;
undefined field6_0x6;
undefined field7_0x7;
undefined field8_0x8;
undefined field9_0x9;
undefined field10_0xa;
undefined field11_0xb;
undefined field12_0xc;
undefined field13_0xd;
undefined field14_0xe;
undefined field15_0xf;
undefined field16_0x10;
undefined field17_0x11;
undefined field18_0x12;
undefined field19_0x13;
undefined field20_0x14;
undefined field21_0x15;
undefined field22_0x16;
undefined field23_0x17;
undefined field24_0x18;
undefined field25_0x19;
undefined field26_0x1a;
undefined field27_0x1b;
undefined field28_0x1c;
undefined field29_0x1d;
undefined field30_0x1e;
undefined field31_0x1f;
undefined field32_0x20;
undefined field33_0x21;
undefined field34_0x22;
undefined field35_0x23;
undefined field36_0x24;
undefined field37_0x25;
undefined field38_0x26;
undefined field39_0x27;
undefined field40_0x28;
undefined field41_0x29;
undefined field42_0x2a;
undefined field43_0x2b;
undefined field44_0x2c;
undefined field45_0x2d;
undefined field46_0x2e;
undefined field47_0x2f;
undefined field48_0x30;
undefined field49_0x31;
undefined field50_0x32;
undefined field51_0x33;
undefined field52_0x34;
undefined field53_0x35;
undefined field54_0x36;
undefined field55_0x37;
undefined field56_0x38;
undefined field57_0x39;
undefined field58_0x3a;
undefined field59_0x3b;
undefined field60_0x3c;
undefined field61_0x3d;
undefined field62_0x3e;
undefined field63_0x3f;
undefined field64_0x40;
undefined field65_0x41;
undefined field66_0x42;
undefined field67_0x43;
undefined field68_0x44;
undefined field69_0x45;
undefined field70_0x46;
undefined field71_0x47;
bool fDeclaredInIntSubset;
bool fIsParameter;
bool fIsSpecialChar;
undefined field75_0x4b;
undefined field76_0x4c;
undefined field77_0x4d;
undefined field78_0x4e;
undefined field79_0x4f;
};
typedef struct XMLExcepts XMLExcepts, *PXMLExcepts;
struct XMLExcepts {
undefined field0_0x0;
};
// WARNING! conflicting data type names: /DWARF/XMLExceptMsgs.hpp/xercesc_2_7/XMLExcepts/Codes - /DWARF/XMLErrorCodes.hpp/xercesc_2_7/XMLErrs/Codes
typedef struct XSModel XSModel, *PXSModel;
typedef struct RefVectorOf<xercesc_2_7::XSObject> RefVectorOf<xercesc_2_7::XSObject>, *PRefVectorOf<xercesc_2_7::XSObject>;
typedef struct XSNamedMap<xercesc_2_7::XSObject> XSNamedMap<xercesc_2_7::XSObject>, *PXSNamedMap<xercesc_2_7::XSObject>;
typedef struct XMLStringPool XMLStringPool, *PXMLStringPool;
typedef struct RefHashTableOf<xercesc_2_7::XSNamespaceItem> RefHashTableOf<xercesc_2_7::XSNamespaceItem>, *PRefHashTableOf<xercesc_2_7::XSNamespaceItem>;
typedef struct XSObjectFactory XSObjectFactory, *PXSObjectFactory;
struct XSObjectFactory {
};
struct XSModel { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with fMemoryManager]
struct MemoryManager * fMemoryManager;
StringList * fNamespaceStringList;
XSNamespaceItemList * fXSNamespaceItemList;
struct RefVectorOf<xercesc_2_7::XSObject> * fIdVector[14];
struct XSNamedMap<xercesc_2_7::XSObject> * fComponentMap[14];
struct XMLStringPool * fURIStringPool;
XSAnnotationList * fXSAnnotationList;
struct RefHashTableOf<xercesc_2_7::XSNamespaceItem> * fHashNamespace;
struct XSObjectFactory * fObjFactory;
struct RefVectorOf<xercesc_2_7::XSNamespaceItem> * fDeleteNamespace;
struct XSModel * fParent;
bool fDeleteParent;
bool fAddedS4SGrammar;
undefined field13_0x12a;
undefined field14_0x12b;
undefined field15_0x12c;
undefined field16_0x12d;
undefined field17_0x12e;
undefined field18_0x12f;
};
struct RefVectorOf<xercesc_2_7::XSObject> {
};
struct XSNamedMap<xercesc_2_7::XSObject> {
};
struct RefHashTableOf<xercesc_2_7::XSNamespaceItem> {
};
struct XMLStringPool {
};
typedef struct XMLElementDecl XMLElementDecl, *PXMLElementDecl;
struct XMLElementDecl {
};
typedef struct InputSource InputSource, *PInputSource;
struct InputSource {
};
typedef struct XSObject XSObject, *PXSObject;
struct XSObject {
};
typedef struct XMLNotationDecl XMLNotationDecl, *PXMLNotationDecl;
struct XMLNotationDecl {
};
typedef struct QName QName, *PQName;
struct QName {
};
typedef struct XSAttributeDeclaration XSAttributeDeclaration, *PXSAttributeDeclaration;
struct XSAttributeDeclaration {
};
typedef struct RefHashTableOfEnumerator<xercesc_2_7::Grammar> RefHashTableOfEnumerator<xercesc_2_7::Grammar>, *PRefHashTableOfEnumerator<xercesc_2_7::Grammar>;
struct RefHashTableOfEnumerator<xercesc_2_7::Grammar> {
};
typedef struct SchemaGrammar SchemaGrammar, *PSchemaGrammar;
struct SchemaGrammar {
};
typedef struct DatatypeValidator DatatypeValidator, *PDatatypeValidator;
struct DatatypeValidator {
};
typedef struct DatatypeValidatorFactory DatatypeValidatorFactory, *PDatatypeValidatorFactory;
struct DatatypeValidatorFactory {
};
typedef struct XSAttributeGroupDefinition XSAttributeGroupDefinition, *PXSAttributeGroupDefinition;
struct XSAttributeGroupDefinition {
};
typedef struct XSTypeDefinition XSTypeDefinition, *PXSTypeDefinition;
struct XSTypeDefinition {
};
typedef struct XMLDTDDescription XMLDTDDescription, *PXMLDTDDescription;
struct XMLDTDDescription {
};
typedef struct ValueVectorOf<xercesc_2_7::SchemaGrammar*> ValueVectorOf<xercesc_2_7::SchemaGrammar*>, *PValueVectorOf<xercesc_2_7::SchemaGrammar*>;
struct ValueVectorOf<xercesc_2_7::SchemaGrammar*> {
};
typedef struct RefHashTableOf<xercesc_2_7::Grammar> RefHashTableOf<xercesc_2_7::Grammar>, *PRefHashTableOf<xercesc_2_7::Grammar>;
struct RefHashTableOf<xercesc_2_7::Grammar> {
};
typedef struct IdentityConstraint IdentityConstraint, *PIdentityConstraint;
struct IdentityConstraint {
};
typedef struct XSNamespaceItem XSNamespaceItem, *PXSNamespaceItem;
struct XSNamespaceItem {
};
typedef struct XMLSchemaDescription XMLSchemaDescription, *PXMLSchemaDescription;
struct XMLSchemaDescription {
};
typedef struct XMLGrammarDescription XMLGrammarDescription, *PXMLGrammarDescription;
struct XMLGrammarDescription {
};
typedef struct XSNotationDeclaration XSNotationDeclaration, *PXSNotationDeclaration;
struct XSNotationDeclaration {
};
typedef struct XMLAttDef XMLAttDef, *PXMLAttDef;
struct XMLAttDef {
};
typedef struct Grammar Grammar, *PGrammar;
struct Grammar {
};
typedef struct XMLTranscoder XMLTranscoder, *PXMLTranscoder;
struct XMLTranscoder {
};
typedef struct RefHashTableOf<xercesc_2_7::DatatypeValidator> RefHashTableOf<xercesc_2_7::DatatypeValidator>, *PRefHashTableOf<xercesc_2_7::DatatypeValidator>;
struct RefHashTableOf<xercesc_2_7::DatatypeValidator> {
};
typedef struct SchemaElementDecl SchemaElementDecl, *PSchemaElementDecl;
struct SchemaElementDecl {
};
typedef struct XSModelGroupDefinition XSModelGroupDefinition, *PXSModelGroupDefinition;
struct XSModelGroupDefinition {
};
typedef struct XMLResourceIdentifier XMLResourceIdentifier, *PXMLResourceIdentifier;
struct XMLResourceIdentifier {
};
typedef struct XSElementDeclaration XSElementDeclaration, *PXSElementDeclaration;
struct XSElementDeclaration {
};
typedef struct XMLLCPTranscoder XMLLCPTranscoder, *PXMLLCPTranscoder;
struct XMLLCPTranscoder {
};
typedef struct DOMLocator DOMLocator, *PDOMLocator;
struct DOMLocator {
};
typedef struct DTDElementDecl DTDElementDecl, *PDTDElementDecl;
struct DTDElementDecl {
};
typedef struct DTDAttDef DTDAttDef, *PDTDAttDef;
struct DTDAttDef {
};
typedef struct DTDGrammar DTDGrammar, *PDTDGrammar;
struct DTDGrammar {
};
typedef struct IC_Field IC_Field, *PIC_Field;
struct IC_Field {
};
typedef struct nothrow_t nothrow_t, *Pnothrow_t;
struct nothrow_t {
undefined field0_0x0;
};
typedef long XMLSSize_t;
typedef struct XMLRefInfo XMLRefInfo, *PXMLRefInfo;
typedef struct XSerializable XSerializable, *PXSerializable;
struct XSerializable {
int (** _vptr.XSerializable)(...);
};
struct XMLRefInfo { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with super_XSerializable]
struct XSerializable super_XSerializable;
bool fDeclared;
bool fUsed;
undefined field3_0xa;
undefined field4_0xb;
undefined field5_0xc;
undefined field6_0xd;
undefined field7_0xe;
undefined field8_0xf;
XMLCh * fRefName;
struct MemoryManager * fMemoryManager;
};
typedef struct LastExtEntityInfo LastExtEntityInfo, *PLastExtEntityInfo;
struct LastExtEntityInfo { // Missing member super_XMemory : XMemory at offset 0x0 [conflict with systemId]
XMLCh * systemId;
XMLCh * publicId;
XMLSSize_t lineNumber;
XMLSSize_t colNumber;
};
typedef struct XProtoType XProtoType, *PXProtoType;
struct XProtoType {
XMLByte * fClassName;
XSerializable * (* fCreateObject)(struct MemoryManager *);
};