Diff for /XML/entities.h between versions 1.30 and 1.31

version 1.30, 2000/01/05 15:58:41 version 1.31, 2000/02/15 19:26:44
Line 30  extern "C" { Line 30  extern "C" {
 typedef struct _xmlEntity xmlEntity;  typedef struct _xmlEntity xmlEntity;
 typedef xmlEntity *xmlEntityPtr;  typedef xmlEntity *xmlEntityPtr;
 struct _xmlEntity {  struct _xmlEntity {
     int type;                   /* The entity type */  #ifndef XML_WITHOUT_CORBA
     int len;                    /* The lenght of the name */      void           *_private;           /* for Corba, must be first ! */
     const xmlChar  *name;       /* Name of the entity */  #endif
     const xmlChar  *ExternalID; /* External identifier for PUBLIC Entity */      xmlElementType          type;       /* XML_ENTITY_DECL, must be second ! */
     const xmlChar  *SystemID;   /* URI for a SYSTEM or PUBLIC Entity */      const xmlChar          *name;       /* Attribute name */
     xmlChar *content;           /* The entity content or ndata if unparsed */      struct _xmlNode    *children;       /* NULL */
     int length;                 /* the content length */      struct _xmlNode        *last;       /* NULL */
     xmlChar *orig;              /* The entity cont without ref substitution */      struct _xmlDtd       *parent;       /* -> DTD */
       struct _xmlNode        *next;       /* next sibling link  */
       struct _xmlNode        *prev;       /* previous sibling link  */
       struct _xmlDoc          *doc;       /* the containing document */
   
       xmlChar                *orig;       /* content without ref substitution */
       xmlChar             *content;       /* content or ndata if unparsed */
       int                   length;       /* the content length */
       int                    etype;       /* The entity type */
       const xmlChar    *ExternalID;       /* External identifier for PUBLIC */
       const xmlChar      *SystemID;       /* URI for a SYSTEM or PUBLIC Entity */
 };  };
   
 /*  /*

Removed from v.1.30  
changed lines
  Added in v.1.31


Webmaster