diff options
author | Gerald Combs <gerald@wireshark.org> | 2011-12-29 00:08:47 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2011-12-29 00:08:47 +0000 |
commit | 6b178bd41548b561913be45a6ee649a497ec5d1f (patch) | |
tree | 81727fd787260953b047a6b711a1ebb3a6946684 /filters.h | |
parent | cb9725ce2beefe34c08dc954ff2a9c51c6a7e3bd (diff) | |
download | wireshark-6b178bd41548b561913be45a6ee649a497ec5d1f.tar.gz wireshark-6b178bd41548b561913be45a6ee649a497ec5d1f.tar.bz2 wireshark-6b178bd41548b561913be45a6ee649a497ec5d1f.zip |
Add 'extern "C"' wrappers and #include guards to various header files.
svn path=/trunk/; revision=40321
Diffstat (limited to 'filters.h')
-rw-r--r-- | filters.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -23,6 +23,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef FILTERS_H +#define FILTERS_H + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + /* * Filter lists. */ @@ -85,3 +92,8 @@ void save_filter_list(filter_list_type_t list_type, char **pref_path_return, */ void copy_filter_list(filter_list_type_t dest_type, filter_list_type_t src_type); +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* FILTERS_H */ |