aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/mpeg.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-03-22 10:44:33 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-03-22 10:44:33 +0000
commit430eef27fe808ab441e0bacd2191d2dfb73c5b41 (patch)
tree61f2fdaa65a5f77fcc7a268200dc1d7ffc54ddf9 /wiretap/mpeg.h
parent291f4da85a0368c916513dcc0aebe6ce7592c813 (diff)
From Shaun Jackman
Wiretap support to read MPEG files svn path=/trunk/; revision=21112
Diffstat (limited to 'wiretap/mpeg.h')
-rw-r--r--wiretap/mpeg.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/wiretap/mpeg.h b/wiretap/mpeg.h
new file mode 100644
index 0000000000..7322a2186d
--- /dev/null
+++ b/wiretap/mpeg.h
@@ -0,0 +1,32 @@
+/* mpeg.h
+ *
+ * MPEG file format decoder for the Wiretap library.
+ * Written by Shaun Jackman <sjackman@gmail.com>
+ * Copyright 2007 Shaun Jackman
+ *
+ * $Id$
+ *
+ * Wiretap Library
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __W_MPEG_H__
+#define __W_MPEG_H__
+
+#include "wtap-int.h"
+
+int mpeg_open(wtap *wth, int *err, gchar **err_info);
+
+#endif