From a66a717d46af19111dbde3dc9e72a2bd32734692 Mon Sep 17 00:00:00 2001 From: Jakub Zawadzki Date: Sun, 21 Jul 2013 19:21:51 +0000 Subject: [PATCH] Commit missing file. svn path=/trunk/; revision=50764 --- epan/epan-int.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 epan/epan-int.h diff --git a/epan/epan-int.h b/epan/epan-int.h new file mode 100644 index 0000000000..aa5aa16c5c --- /dev/null +++ b/epan/epan-int.h @@ -0,0 +1,31 @@ +/* epan-int.h + * + * $Id$ + * + * Wireshark Protocol Analyzer Library + * + * Copyright (c) 2001 by Gerald Combs + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef __EPAN_INT_H__ +#define __EPAN_INT_H__ + +struct epan_session { + void *reserved; +}; + +#endif