Diff for /embedaddon/libxml2/include/libxml/HTMLtree.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:37:58 version 1.1.1.2, 2014/06/15 19:53:38
Line 62  extern "C" { Line 62  extern "C" {
 XMLPUBFUN htmlDocPtr XMLCALL  XMLPUBFUN htmlDocPtr XMLCALL
                 htmlNewDoc              (const xmlChar *URI,                  htmlNewDoc              (const xmlChar *URI,
                                          const xmlChar *ExternalID);                                           const xmlChar *ExternalID);
XMLPUBFUN htmlDocPtr XMLCALL    XMLPUBFUN htmlDocPtr XMLCALL
                 htmlNewDocNoDtD         (const xmlChar *URI,                  htmlNewDocNoDtD         (const xmlChar *URI,
                                          const xmlChar *ExternalID);                                           const xmlChar *ExternalID);
XMLPUBFUN const xmlChar * XMLCALL       XMLPUBFUN const xmlChar * XMLCALL
                 htmlGetMetaEncoding     (htmlDocPtr doc);                  htmlGetMetaEncoding     (htmlDocPtr doc);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlSetMetaEncoding     (htmlDocPtr doc,                  htmlSetMetaEncoding     (htmlDocPtr doc,
                                          const xmlChar *encoding);                                           const xmlChar *encoding);
 #ifdef LIBXML_OUTPUT_ENABLED  #ifdef LIBXML_OUTPUT_ENABLED
XMLPUBFUN void XMLCALL      XMLPUBFUN void XMLCALL
                 htmlDocDumpMemory       (xmlDocPtr cur,                  htmlDocDumpMemory       (xmlDocPtr cur,
                                          xmlChar **mem,                                           xmlChar **mem,
                                          int *size);                                           int *size);
XMLPUBFUN void XMLCALL      XMLPUBFUN void XMLCALL
                 htmlDocDumpMemoryFormat (xmlDocPtr cur,                  htmlDocDumpMemoryFormat (xmlDocPtr cur,
                                          xmlChar **mem,                                           xmlChar **mem,
                                          int *size,                                           int *size,
                                          int format);                                           int format);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlDocDump             (FILE *f,                  htmlDocDump             (FILE *f,
                                          xmlDocPtr cur);                                           xmlDocPtr cur);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlSaveFile            (const char *filename,                  htmlSaveFile            (const char *filename,
                                          xmlDocPtr cur);                                           xmlDocPtr cur);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlNodeDump            (xmlBufferPtr buf,                  htmlNodeDump            (xmlBufferPtr buf,
                                          xmlDocPtr doc,                                           xmlDocPtr doc,
                                          xmlNodePtr cur);                                           xmlNodePtr cur);
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 htmlNodeDumpFile        (FILE *out,                  htmlNodeDumpFile        (FILE *out,
                                          xmlDocPtr doc,                                           xmlDocPtr doc,
                                          xmlNodePtr cur);                                           xmlNodePtr cur);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlNodeDumpFileFormat  (FILE *out,                  htmlNodeDumpFileFormat  (FILE *out,
                                          xmlDocPtr doc,                                           xmlDocPtr doc,
                                          xmlNodePtr cur,                                           xmlNodePtr cur,
                                          const char *encoding,                                           const char *encoding,
                                          int format);                                           int format);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlSaveFileEnc         (const char *filename,                  htmlSaveFileEnc         (const char *filename,
                                          xmlDocPtr cur,                                           xmlDocPtr cur,
                                          const char *encoding);                                           const char *encoding);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlSaveFileFormat      (const char *filename,                  htmlSaveFileFormat      (const char *filename,
                                          xmlDocPtr cur,                                           xmlDocPtr cur,
                                          const char *encoding,                                           const char *encoding,
                                          int format);                                           int format);
   
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf,                  htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf,
                                          xmlDocPtr doc,                                           xmlDocPtr doc,
                                          xmlNodePtr cur,                                           xmlNodePtr cur,
                                          const char *encoding,                                           const char *encoding,
                                          int format);                                           int format);
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 htmlDocContentDumpOutput(xmlOutputBufferPtr buf,                  htmlDocContentDumpOutput(xmlOutputBufferPtr buf,
                                          xmlDocPtr cur,                                           xmlDocPtr cur,
                                          const char *encoding);                                           const char *encoding);
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf,                  htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf,
                                          xmlDocPtr cur,                                           xmlDocPtr cur,
                                          const char *encoding,                                           const char *encoding,
                                          int format);                                           int format);
XMLPUBFUN void XMLCALL XMLPUBFUN void XMLCALL
                htmlNodeDumpOutput      (xmlOutputBufferPtr buf,                 htmlNodeDumpOutput      (xmlOutputBufferPtr buf,
                                          xmlDocPtr doc,                                           xmlDocPtr doc,
                                         xmlNodePtr cur,                                          xmlNodePtr cur,
                                          const char *encoding);                                           const char *encoding);
   
 #endif /* LIBXML_OUTPUT_ENABLED */  #endif /* LIBXML_OUTPUT_ENABLED */
   
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 htmlIsBooleanAttr       (const xmlChar *name);                  htmlIsBooleanAttr       (const xmlChar *name);
   
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>