aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-09-17 17:05:46 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-09-17 17:05:46 +0000
commit4c14b12c25291919fc7e409f9cfe95c16cefe678 (patch)
tree432eb53c8e154b0e76f997c778b30c476637985c /epan/dtd.h
parent8ace2749f38daec92df4da8cf2d1eda298cf36ff (diff)
Because there's more than just text in XML...
DTDs are imported to create fields svn path=/trunk/; revision=15851
Diffstat (limited to 'epan/dtd.h')
-rw-r--r--epan/dtd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dtd.h b/epan/dtd.h
index 1db10fd371..cd2503024a 100644
--- a/epan/dtd.h
+++ b/epan/dtd.h
@@ -37,6 +37,7 @@ typedef struct _dtd_build_data_t {
gchar* media_type;
gchar* description;
gchar* proto_root;
+ gboolean recursion;
GPtrArray* elements;
GPtrArray* attributes;
@@ -55,7 +56,7 @@ typedef struct _dtd_named_list_t {
GPtrArray* list;
} dtd_named_list_t;
-extern GString* dtd_preparse(gchar* dname, gchar* fname, GString* err);
+extern GString* dtd_preparse(const gchar* dname, const gchar* fname, GString* err);
extern dtd_build_data_t* dtd_parse(GString* s);
#endif