Diff for /XML/parser.h between versions 1.65 and 1.66

version 1.65, 2000/02/23 15:34:44 version 1.66, 2000/02/29 16:16:18
Line 155  struct _xmlParserCtxt { Line 155  struct _xmlParserCtxt {
   
     char           *directory;        /* the data directory */      char           *directory;        /* the data directory */
   
     /* Node name stack only used for HTML parsing */      /* Node name stack */
     xmlChar           *name;          /* Current parsed Node */      xmlChar           *name;          /* Current parsed Node */
     int                nameNr;        /* Depth of the parsing stack */      int                nameNr;        /* Depth of the parsing stack */
     int                nameMax;       /* Max depth of the parsing stack */      int                nameMax;       /* Max depth of the parsing stack */
Line 168  struct _xmlParserCtxt { Line 168  struct _xmlParserCtxt {
     xmlChar *          intSubName;    /* name of subset */      xmlChar *          intSubName;    /* name of subset */
     xmlChar *          extSubURI;     /* URI of external subset */      xmlChar *          extSubURI;     /* URI of external subset */
     xmlChar *          extSubSystem;  /* SYSTEM ID of external subset */      xmlChar *          extSubSystem;  /* SYSTEM ID of external subset */
   
       /* xml:space values */
       int *              space;         /* Should the parser preserve spaces */
       int                spaceNr;       /* Depth of the parsing stack */
       int                spaceMax;      /* Max depth of the parsing stack */
       int *              spaceTab;      /* array of space infos */
 };  };
   
 /**  /**
Line 373  xmlDtdPtr xmlParseDTD  (const xmlChar *E Line 379  xmlDtdPtr xmlParseDTD  (const xmlChar *E
 xmlDtdPtr       xmlSAXParseDTD          (xmlSAXHandlerPtr sax,  xmlDtdPtr       xmlSAXParseDTD          (xmlSAXHandlerPtr sax,
                                          const xmlChar *ExternalID,                                           const xmlChar *ExternalID,
                                          const xmlChar *SystemID);                                           const xmlChar *SystemID);
   int             xmlParseBalancedChunkMemory(xmlDocPtr doc,
                                            xmlSAXHandlerPtr sax,
                                            void *user_data,
                                            const xmlChar *string,
                                            xmlNodePtr *list);
   
 /**  /**
  * SAX initialization routines   * SAX initialization routines
  */   */

Removed from v.1.65  
changed lines
  Added in v.1.66


Webmaster