summaryrefslogtreecommitdiff
path: root/cfile.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-12-29 00:08:47 +0000
committerGerald Combs <gerald@wireshark.org>2011-12-29 00:08:47 +0000
commit6b178bd41548b561913be45a6ee649a497ec5d1f (patch)
tree81727fd787260953b047a6b711a1ebb3a6946684 /cfile.h
parentcb9725ce2beefe34c08dc954ff2a9c51c6a7e3bd (diff)
downloadwireshark-6b178bd41548b561913be45a6ee649a497ec5d1f.tar.gz
Add 'extern "C"' wrappers and #include guards to various header files.
svn path=/trunk/; revision=40321
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cfile.h b/cfile.h
index 163f4ca426..730da187c7 100644
--- a/cfile.h
+++ b/cfile.h
@@ -27,6 +27,10 @@
#include "frame_data_sequence.h"
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
/* Current state of file. */
typedef enum {
FILE_CLOSED, /* No file open */
@@ -115,4 +119,8 @@ typedef struct _capture_file {
extern void cap_file_init(capture_file *cf);
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
#endif /* cfile.h */