Wireshark 4.7.0
The Wireshark network protocol analyzer
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
wtap_modules.h
Go to the documentation of this file.
1
12#ifndef __WTAP_MODULES_H__
13#define __WTAP_MODULES_H__
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
19/*
20 * Entry in the table of built-in wiretap modules to register.
21 */
22typedef struct _wtap_module_reg {
23 const char *cb_name;
24 void (*cb_func)(void);
26
27extern wtap_module_reg_t const wtap_module_reg[];
28
29extern const unsigned wtap_module_count;
30
31#ifdef __cplusplus
32}
33#endif /* __cplusplus */
34
35#endif /* __WTAP_MODULES_H__ */
36
37/*
38 * Editor modelines - https://www.wireshark.org/tools/modelines.html
39 *
40 * Local Variables:
41 * c-basic-offset: 4
42 * tab-width: 8
43 * indent-tabs-mode: nil
44 * End:
45 *
46 * vi: set shiftwidth=4 tabstop=8 expandtab:
47 * :indentSize=4:tabSize=8:noTabs=true:
48 */
Definition wtap_modules.h:22