3 * Functions and variables defined by required file handlers (pcap,
4 * nanosecond pcap, pcapng).
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * SPDX-License-Identifier: GPL-2.0-or-later
13 #ifndef __REQUIRED_FILE_HANDLERS_H__
14 #define __REQUIRED_FILE_HANDLERS_H__
18 #endif /* __cplusplus */
21 * These are for use within libwiretap only; they are not exported.
23 extern void register_pcap(void);
24 extern void register_pcapng(void);
26 extern int pcap_file_type_subtype
; /* regular pcap */
27 extern int pcap_nsec_file_type_subtype
; /* pcap with nanosecond resolution */
28 extern int pcapng_file_type_subtype
; /* pcapng */
32 #endif /* __cplusplus */
34 #endif /* __REQUIRED_FILE_HANDLERS_H__ */