aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.h
diff options
context:
space:
mode:
Diffstat (limited to 'capture_opts.h')
-rw-r--r--capture_opts.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/capture_opts.h b/capture_opts.h
index 8e1cb8de2a..22d03c8472 100644
--- a/capture_opts.h
+++ b/capture_opts.h
@@ -36,6 +36,10 @@
#include <caputils/capture_ifinfo.h>
+#ifdef _WIN32
+#include <windows.h>
+#endif
+
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
@@ -232,6 +236,9 @@ typedef struct interface_options_tag {
GPid extcap_pid; /* pid of running process or INVALID_EXTCAP_PID */
gpointer extcap_userdata;
guint extcap_child_watch;
+#ifdef _WIN32
+ HANDLE extcap_pipe_h;
+#endif
gchar *extcap_control_in;
gchar *extcap_control_out;
#endif