Allow the interface monitor routines to be called from C++.

Change-Id: I2ae60c1b015a432f5df36bd623f1a4c69b02bef1
Reviewed-on: https://code.wireshark.org/review/3081
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-07-15 19:28:12 -07:00
parent 4d71fb79ba
commit 0e0d01d045
1 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,10 @@
#ifndef IFACE_MONITOR_H
#define IFACE_MONITOR_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifdef HAVE_LIBPCAP
/*
@ -72,4 +76,8 @@ iface_mon_event(void);
#endif /* HAVE_LIBPCAP */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* IFACE_MONITOR_H */