HTMLtree.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2.  * tree.h : describes the structures found in an tree resulting
  3.  *          from an XML parsing.
  4.  *
  5.  * See Copyright for the status of this software.
  6.  *
  7.  * Daniel.Veillard@w3.org
  8.  */
  9. #ifndef __HTML_TREE_H__
  10. #define __HTML_TREE_H__
  11. #include <stdio.h>
  12. #include <libxml/tree.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #define HTML_TEXT_NODE XML_TEXT_NODE
  17. #define HTML_ENTITY_REF_NODE XML_ENTITY_REF_NODE
  18. #define HTML_COMMENT_NODE XML_COMMENT_NODE
  19. void htmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size);
  20. void htmlDocDump(FILE *f, xmlDocPtr cur);
  21. int htmlSaveFile(const char *filename, xmlDocPtr cur);
  22. void htmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur);
  23. void htmlNodeDumpFile(FILE *out, xmlDocPtr doc, xmlNodePtr cur);
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* __HTML_TREE_H__ */