aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/tnef.h
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-11-27 16:40:45 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-11-27 16:40:45 +0000
commit4cc7401e235210dceac44e88d0a90524f100bc2f (patch)
treeff1431e933ed296dc08d13251a0ab6fe7859cb7d /wiretap/tnef.h
parent634ea038eb1656de5aa215752a27f2b779cbc095 (diff)
Added support for open TNEF files directly.
No we can decode those winmail.dat files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26864 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wiretap/tnef.h')
-rw-r--r--wiretap/tnef.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/wiretap/tnef.h b/wiretap/tnef.h
new file mode 100644
index 0000000000..35f47145b2
--- /dev/null
+++ b/wiretap/tnef.h
@@ -0,0 +1,30 @@
+/* tnef.h
+ *
+ * Transport-Neutral Encapsulation Format (TNEF) file reading
+ *
+ * $Id$
+ *
+ * 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 __TNEF_H__
+#define __TNEF_H__
+
+#define TNEF_SIGNATURE 0x223E9F78
+
+int tnef_open(wtap *wth, int *err, gchar **err_info);
+
+#endif