my_xml.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  */
  13. #ifndef _my_xml_h
  14. #define _my_xml_h
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #define MY_XML_OK 0
  19. #define MY_XML_ERROR 1
  20. typedef struct xml_stack_st
  21. {
  22.   char errstr[128];
  23.   char attr[128];
  24.   char *attrend;
  25.   const char *beg;
  26.   const char *cur;
  27.   const char *end;
  28.   void *user_data;
  29.   int  (*enter)(struct xml_stack_st *st,const char *val, uint len);
  30.   int  (*value)(struct xml_stack_st *st,const char *val, uint len);
  31.   int  (*leave_xml)(struct xml_stack_st *st,const char *val, uint len);
  32. } MY_XML_PARSER;
  33. void my_xml_parser_create(MY_XML_PARSER *st);
  34. void my_xml_parser_free(MY_XML_PARSER *st);
  35. int  my_xml_parse(MY_XML_PARSER *st,const char *str, uint len);
  36. void my_xml_set_value_handler(MY_XML_PARSER *st, int (*)(MY_XML_PARSER *,
  37.  const char *,
  38.  uint len));
  39. void my_xml_set_enter_handler(MY_XML_PARSER *st, int (*)(MY_XML_PARSER *,
  40.  const char *,
  41.  uint len));
  42. void my_xml_set_leave_handler(MY_XML_PARSER *st, int (*)(MY_XML_PARSER *,
  43.  const char *,
  44.  uint len));
  45. void my_xml_set_user_data(MY_XML_PARSER *st, void *);
  46. uint my_xml_error_pos(MY_XML_PARSER *st);
  47. uint my_xml_error_lineno(MY_XML_PARSER *st);
  48. const char *my_xml_error_string(MY_XML_PARSER *st);
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif /* _my_xml_h */