Set the svn:eol-style property on all text files to "native", so that
[metze/wireshark/wip.git] / epan / ftypes / ftypes-int.h
1 /*
2  * $Id$
3  *
4  * Ethereal - Network traffic analyzer
5  * By Gerald Combs <gerald@ethereal.com>
6  * Copyright 2001 Gerald Combs
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21  */
22
23 #ifndef FTYPES_INT_H
24 #define FTYPES_INT_H
25
26 #include <epan/packet.h>
27 #include "ftypes.h"
28
29 #ifdef HAVE_LIBPCRE
30 #include <pcre.h>
31 #endif /* HAVE_LIBPCRE */
32
33
34 #ifdef HAVE_LIBPCRE
35 struct _pcre_tuple_t {
36     char *string;
37     pcre *re;
38     pcre_extra *ex;
39     char *error;
40 };
41 #endif /* HAVE_LIBPCRE */
42
43 void
44 ftype_register(enum ftenum ftype, ftype_t *ft);
45
46 #endif