Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
tnef.h
1 /* tnef.h
2  *
3  * Transport-Neutral Encapsulation Format (TNEF) file reading
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  *
7  */
8 
9 #ifndef __TNEF_H__
10 #define __TNEF_H__
11 
12 #include <glib.h>
13 #include <wiretap/wtap.h>
14 #include "ws_symbol_export.h"
15 
16 #define TNEF_SIGNATURE 0x223E9F78
17 
18 wtap_open_return_val tnef_open(wtap *wth, int *err, gchar **err_info);
19 
20 #endif
Definition: wtap-int.h:34