Wireshark  4.3.0
The Wireshark network protocol analyzer
dfilter-plugin.h
Go to the documentation of this file.
1 
10 #ifndef DFILTER_PLUGIN_H
11 #define DFILTER_PLUGIN_H
12 
13 #include <wireshark.h>
14 
16 
17 typedef struct {
18  void (*init)(void);
19  void (*cleanup)(void);
21 
22 extern GSList *dfilter_plugins;
23 
24 WS_DLL_PUBLIC
25 void dfilter_plugins_register(const dfilter_plugin *plugin);
26 
27 void dfilter_plugins_init(void);
28 
29 void dfilter_plugins_cleanup(void);
30 
31 #endif /* DFILTER_PLUGIN_H */
Definition: plugins.c:29
Definition: dfilter-plugin.h:17