Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
introspection.h
Go to the documentation of this file.
1
11#ifndef _EPAN_INTROSPECTION_H_
12#define _EPAN_INTROSPECTION_H_
13
14#include <stddef.h>
15#include <ws_symbol_export.h>
17
25WS_DLL_PUBLIC
26const ws_enum_t *epan_inspect_enums(void);
27
29WS_DLL_PUBLIC
30size_t epan_inspect_enums_count(void);
31
33WS_DLL_PUBLIC
34const ws_enum_t *epan_inspect_enums_bsearch(const char *needle);
35
36#endif
WS_DLL_PUBLIC size_t epan_inspect_enums_count(void)
Definition introspection.c:24
WS_DLL_PUBLIC const ws_enum_t * epan_inspect_enums(void)
Definition introspection.c:19
WS_DLL_PUBLIC const ws_enum_t * epan_inspect_enums_bsearch(const char *needle)
Definition introspection.c:30
Definition introspection.h:17