aboutsummaryrefslogtreecommitdiffstats
path: root/frame_data_sequence.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-12-17 23:03:21 +0000
committerGerald Combs <gerald@wireshark.org>2012-12-17 23:03:21 +0000
commit77e6140ba99ca1785972bb8455877fc33350990a (patch)
tree779b3abea24607c375535fd4b9ca5dadb0ea56b8 /frame_data_sequence.h
parentdc908733eaf62b0a3506dca52f2412b92a6cbf7c (diff)
Implement the frame mark, ignore, and time reference actions. Update the
text of a few menu items. svn path=/trunk/; revision=46576
Diffstat (limited to 'frame_data_sequence.h')
-rw-r--r--frame_data_sequence.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/frame_data_sequence.h b/frame_data_sequence.h
index 5e1f08f2f0..8d686e7f8e 100644
--- a/frame_data_sequence.h
+++ b/frame_data_sequence.h
@@ -25,6 +25,10 @@
#ifndef __FRAME_DATA_SEQUENCE_H__
#define __FRAME_DATA_SEQUENCE_H__
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
typedef struct _frame_data_sequence frame_data_sequence;
extern frame_data_sequence *new_frame_data_sequence(void);
@@ -43,4 +47,8 @@ extern frame_data *frame_data_sequence_find(frame_data_sequence *fds,
*/
extern void free_frame_data_sequence(frame_data_sequence *fds);
-#endif /* frame_data_sequence.h */
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __FRAME_DATA_SEQUENCE_H__ */