diff options
author | Stephen Fisher <steve@stephen-fisher.com> | 2010-12-01 18:25:18 +0000 |
---|---|---|
committer | Stephen Fisher <steve@stephen-fisher.com> | 2010-12-01 18:25:18 +0000 |
commit | 462245684a2fbc7daaa135ccb1f6406f9be22b8f (patch) | |
tree | 4a738a4a5d26798181bd9c64d97e65e36e282055 /epan/plugins.h | |
parent | efc64e43f677ec503c318eb221b8f03e3198b924 (diff) | |
download | wireshark-462245684a2fbc7daaa135ccb1f6406f9be22b8f.tar.gz wireshark-462245684a2fbc7daaa135ccb1f6406f9be22b8f.tar.bz2 wireshark-462245684a2fbc7daaa135ccb1f6406f9be22b8f.zip |
Add extern "C" to more header files.
svn path=/trunk/; revision=35093
Diffstat (limited to 'epan/plugins.h')
-rw-r--r-- | epan/plugins.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/epan/plugins.h b/epan/plugins.h index b11c4748ec..7dee325299 100644 --- a/epan/plugins.h +++ b/epan/plugins.h @@ -25,6 +25,10 @@ #ifndef __PLUGINS_H__ #define __PLUGINS_H__ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + #include <glib.h> #include <gmodule.h> @@ -51,4 +55,8 @@ extern void register_all_plugin_tap_listeners(void); extern void register_all_wiretap_modules(void); extern void register_all_codecs(void); +#ifdef __cplusplus +} +#endif /* __cplusplus */ + #endif /* __PLUGINS_H__ */ |