1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

make room in Doc, Element, Attributes for PSVI type informations. Daniel

* include/libxml/tree.h: make room in Doc, Element, Attributes
  for PSVI type informations.
Daniel
This commit is contained in:
Daniel Veillard
2003-10-10 14:24:12 +00:00
parent 659e71ec24
commit d8850403bc
2 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
Fri Oct 10 16:19:17 CEST 2003 Daniel Veillard <daniel@veillard.com>
* include/libxml/tree.h: make room in Doc, Element, Attributes
for PSVI type informations.
Fri Oct 10 16:08:02 CEST 2003 Daniel Veillard <daniel@veillard.com> Fri Oct 10 16:08:02 CEST 2003 Daniel Veillard <daniel@veillard.com>
* HTMLparser.c c14n.c catalog.c error.c globals.c parser.c * HTMLparser.c c14n.c catalog.c error.c globals.c parser.c

View File

@@ -373,6 +373,7 @@ struct _xmlAttr {
struct _xmlDoc *doc; /* the containing document */ struct _xmlDoc *doc; /* the containing document */
xmlNs *ns; /* pointer to the associated namespace */ xmlNs *ns; /* pointer to the associated namespace */
xmlAttributeType atype; /* the attribute type if validating */ xmlAttributeType atype; /* the attribute type if validating */
void *psvi; /* for type/PSVI informations */
}; };
/** /**
@@ -457,6 +458,7 @@ struct _xmlNode {
xmlChar *content; /* the content */ xmlChar *content; /* the content */
struct _xmlAttr *properties;/* properties list */ struct _xmlAttr *properties;/* properties list */
xmlNs *nsDef; /* namespace definitions on this node */ xmlNs *nsDef; /* namespace definitions on this node */
void *psvi; /* for type/PSVI informations */
}; };
/** /**
@@ -510,6 +512,7 @@ struct _xmlDoc {
int charset; /* encoding of the in-memory content int charset; /* encoding of the in-memory content
actually an xmlCharEncoding */ actually an xmlCharEncoding */
struct _xmlDict *dict; /* dict used to allocate names or NULL */ struct _xmlDict *dict; /* dict used to allocate names or NULL */
void *psvi; /* for type/PSVI informations */
}; };
/** /**