aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftypes-int.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2003-12-10 21:12:02 +0000
committerGerald Combs <gerald@wireshark.org>2003-12-10 21:12:02 +0000
commit45c282302006af58b59939fd1b379ba78036e8a0 (patch)
tree614fea924ff034c3c6d72135f8ea1a24836f33ac /epan/ftypes/ftypes-int.h
parent33f732b7764d63f84e5741d76cb08c196645b2c8 (diff)
Make the _pcre_tuple_t struct internal.
svn path=/trunk/; revision=9233
Diffstat (limited to 'epan/ftypes/ftypes-int.h')
-rw-r--r--epan/ftypes/ftypes-int.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/epan/ftypes/ftypes-int.h b/epan/ftypes/ftypes-int.h
index 818785894b..f5c464f9a8 100644
--- a/epan/ftypes/ftypes-int.h
+++ b/epan/ftypes/ftypes-int.h
@@ -1,5 +1,5 @@
/*
- * $Id: ftypes-int.h,v 1.11 2003/11/25 13:20:36 sahlberg Exp $
+ * $Id: ftypes-int.h,v 1.12 2003/12/10 21:12:02 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -26,6 +26,20 @@
#include <epan/packet.h>
#include "ftypes.h"
+#ifdef HAVE_LIBPCRE
+#include <pcre.h>
+#endif /* HAVE_LIBPCRE */
+
+
+#ifdef HAVE_LIBPCRE
+struct _pcre_tuple_t {
+ char *string;
+ pcre *re;
+ pcre_extra *ex;
+ char *error;
+};
+#endif /* HAVE_LIBPCRE */
+
void
ftype_register(enum ftenum ftype, ftype_t *ft);