[SIP] Display tel uri in VoIP calls.
[metze/wireshark/wip.git] / epan / dtd.h
1 /*
2  *  dtd.h
3  *
4  * XML dissector for Wireshark
5  * DTD import declarations
6  *
7  * Copyright 2005, Luis E. Garcia Ontanon <luis@ontanon.org>
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26  */
27
28 #ifndef _DTD_H_
29 #define _DTD_H_
30
31 #include <glib.h>
32 #include <stdlib.h> /* exit() */
33 #include "ws_attributes.h"
34
35 typedef struct _dtd_build_data_t {
36         gchar* proto_name;
37         gchar* media_type;
38         gchar* description;
39         gchar* proto_root;
40         gboolean recursion;
41
42         GPtrArray* elements;
43         GPtrArray* attributes;
44
45         GString* error;
46 } dtd_build_data_t;
47
48 typedef struct _dtd_token_data_t {
49         gchar* text;
50         gchar* location;
51 } dtd_token_data_t;
52
53 typedef struct _dtd_named_list_t {
54         gchar* name;
55         GPtrArray* list;
56 } dtd_named_list_t;
57
58 typedef struct _dtd_preparse_scanner_state Dtd_PreParse_scanner_state_t;
59
60 extern GString* dtd_preparse(const gchar* dname, const gchar* fname, GString* err);
61 extern dtd_build_data_t* dtd_parse(GString* s);
62 extern const gchar* dtd_location(Dtd_PreParse_scanner_state_t* state);
63
64 #endif