wireshark/caputils/capture-wpcap.h
Gerald Combs a43730cb10 Convert WinPcap references to Npcap.
Convert WinPcap references and URLs in error messages and the FAQ
to their Npcap equivalents. Remove some obsolete FAQ entries.

Change-Id: I695d358a2c9cff0939f4ea84ba02d4c62ad7dd01
Reviewed-on: https://code.wireshark.org/review/31943
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-02-08 20:29:06 +00:00

33 lines
619 B
C

/* capture-wpcap.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 2001 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_WPCAP_H
#define CAPTURE_WPCAP_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
extern gboolean has_wpcap;
extern void load_wpcap(void);
/**
* Check to see if npf.sys is running.
* @return TRUE if npf.sys is running, FALSE if it's not or if there was
* an error checking its status.
*/
gboolean npf_sys_is_running(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* CAPTURE_WPCAP_H */