Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
event-dissectors.h
1/* event-dissectors.h
2 * Definitions for event dissector registration
3 *
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <[email protected]>
6 * Copyright 1998 Gerald Combs
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11#ifndef __EVENT_DISSECTOR_REGISTER_H__
12#define __EVENT_DISSECTOR_REGISTER_H__
13
14#include "dissectors.h"
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
20extern dissector_reg_t const event_dissector_reg_proto[];
21extern dissector_reg_t const event_dissector_reg_handoff[];
22
23extern const unsigned long event_dissector_reg_proto_count;
24extern const unsigned long event_dissector_reg_handoff_count;
25
26#ifdef __cplusplus
27}
28#endif /* __cplusplus */
29
30#endif /* __EVENT_DISSECTOR_REGISTER_H__ */
31
32/*
33 * Editor modelines - https://www.wireshark.org/tools/modelines.html
34 *
35 * Local Variables:
36 * c-basic-offset: 4
37 * tab-width: 8
38 * indent-tabs-mode: nil
39 * End:
40 *
41 * vi: set shiftwidth=4 tabstop=8 expandtab:
42 * :indentSize=4:tabSize=8:noTabs=true:
43 */
Definition dissectors.h:21