00001 /* 00002 * WBXML Lib, the WBXML Library. 00003 * Copyright (C) 2002-2003 Aymerick Jéhanne 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License (version 2.1) as published by the Free Software Foundation. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 * 00018 * LGPL v2.1: http://www.gnu.org/licenses/lgpl.txt 00019 * 00020 * Author Contact: libwbxml@jehanne.org 00021 * WBXML Lib home: http://libwbxml.jehanne.org 00022 */ 00023 00034 #ifndef WBXML_PARSER_H 00035 #define WBXML_PARSER_H 00036 00037 00038 #ifdef __cplusplus 00039 extern "C" { 00040 #endif /* __cplusplus */ 00041 00046 typedef struct WBXMLParser_s WBXMLParser; 00047 00052 WBXML_DECLARE(WBXMLParser *) wbxml_parser_create(void); 00053 00058 WBXML_DECLARE(void) wbxml_parser_destroy(WBXMLParser *parser); 00059 00067 WBXML_DECLARE(WBXMLError) wbxml_parser_parse(WBXMLParser *parser, WB_UTINY *wbxml, WB_ULONG wbxml_len); 00068 00074 WBXML_DECLARE(void) wbxml_parser_set_user_data(WBXMLParser *parser, void *user_data); 00075 00081 WBXML_DECLARE(void) wbxml_parser_set_content_handler(WBXMLParser *parser, WBXMLContentHandler *content_handler); 00082 00088 WBXML_DECLARE(void) wbxml_parser_set_main_table(WBXMLParser *parser, const WBXMLLangEntry *main_table); 00089 00099 WBXML_DECLARE(WB_BOOL) wbxml_parser_set_language(WBXMLParser *parser, WBXMLLanguage lang); 00100 00106 WBXML_DECLARE(WB_ULONG) wbxml_parser_get_wbxml_public_id(WBXMLParser *parser); 00107 00113 WBXML_DECLARE(const WB_UTINY *) wbxml_parser_get_xml_public_id(WBXMLParser *parser); 00114 00120 WBXML_DECLARE(WBXMLVersion) wbxml_parser_get_wbxml_version(WBXMLParser *parser); 00121 00127 WBXML_DECLARE(WB_LONG) wbxml_parser_get_current_byte_index(WBXMLParser *parser); 00128 00131 #ifdef __cplusplus 00132 } 00133 #endif /* __cplusplus */ 00134 00135 #endif /* WBXML_PARSER_H */