aboutsummaryrefslogtreecommitdiffstats
path: root/capchild/capture_sync.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-06-11 15:05:44 -0700
committerGerald Combs <gerald@wireshark.org>2015-06-16 03:45:54 +0000
commitece4b01f218ab4e71233580e199e830b83958c99 (patch)
treef7503d8f097b6e3f6406dd3f6b0c69bb46b97909 /capchild/capture_sync.h
parent2a3fa1418544469e7dc6f0e0fddb6eaab507b71a (diff)
Add the wireless toolbar.
Add the wireless toolbar to the Qt UI. Start adding AirPcap support to ui/80211_utils. Add FCS validation routines to ws80211_utils. Move a bunch of AirPcap routines that require epan from caputils to ui/gtk. They were required for driver key management, which we'll leave to the AirPcap Control Panel in the Qt UI. Move frequency-utils to wsutil. Change-Id: I44446758046621d183f5c2ba9f6526bf01e084f1 Reviewed-on: https://code.wireshark.org/review/8910 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'capchild/capture_sync.h')
-rw-r--r--capchild/capture_sync.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/capchild/capture_sync.h b/capchild/capture_sync.h
index ce107239ce..7449d96939 100644
--- a/capchild/capture_sync.h
+++ b/capchild/capture_sync.h
@@ -32,6 +32,10 @@
#ifndef __CAPTURE_SYNC_H__
#define __CAPTURE_SYNC_H__
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
/**
* Start a new capture session.
* Create a capture child which is doing the real capture work.
@@ -135,4 +139,8 @@ capture_input_closed(capture_session *cap_session, gchar *msg);
/* set a callback to be called after fork with the pid of the forked child */
extern void capture_sync_set_fetch_dumpcap_pid_cb(void(*cb)(ws_process_id pid));
-#endif /* capture_sync.h */
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __CAPTURE_SYNC_H__ */