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

@@ -373,6 +373,7 @@ struct _xmlAttr {
struct _xmlDoc *doc; /* the containing document */
xmlNs *ns; /* pointer to the associated namespace */
xmlAttributeType atype; /* the attribute type if validating */
void *psvi; /* for type/PSVI informations */
};
/**
@@ -457,6 +458,7 @@ struct _xmlNode {
xmlChar *content; /* the content */
struct _xmlAttr *properties;/* properties list */
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
actually an xmlCharEncoding */
struct _xmlDict *dict; /* dict used to allocate names or NULL */
void *psvi; /* for type/PSVI informations */
};
/**