Slightly different fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9117 :
[metze/wireshark/wip.git] / epan / plugins.h
1 /* plugins.h
2  * definitions for plugins structures
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #ifndef __PLUGINS_H__
26 #define __PLUGINS_H__
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32 #include <glib.h>
33 #include <gmodule.h>
34
35 #include "packet.h"
36 #include "ws_symbol_export.h"
37
38 typedef struct _plugin {
39     GModule     *handle;          /* handle returned by g_module_open */
40     gchar       *name;            /* plugin name */
41     gchar       *version;         /* plugin version */
42     void (*register_protoinfo)(void); /* routine to call to register protocol information */
43     void (*reg_handoff)(void);    /* routine to call to register dissector handoff */
44     void (*register_tap_listener)(void);   /* routine to call to register tap listener */
45     void (*register_wtap_module)(void);  /* routine to call to register a wiretap module */
46     void (*register_codec_module)(void);  /* routine to call to register a codec */
47     struct _plugin *next;         /* forward link */
48 } plugin;
49
50 WS_DLL_PUBLIC plugin *plugin_list;
51
52 extern void init_plugins(void);
53 extern void register_all_plugin_registrations(void);
54 extern void register_all_plugin_handoffs(void);
55 WS_DLL_PUBLIC void register_all_plugin_tap_listeners(void);
56 WS_DLL_PUBLIC void plugins_dump_all(void);
57
58 typedef struct _wslua_plugin {
59     gchar       *name;            /**< plugin name */
60     gchar       *version;         /**< plugin version */
61     gchar       *filename;        /**< plugin filename */
62     struct _wslua_plugin *next;
63 } wslua_plugin;
64
65 WS_DLL_PUBLIC wslua_plugin *wslua_plugin_list;
66
67 #ifdef __cplusplus
68 }
69 #endif /* __cplusplus */
70
71 #endif /* __PLUGINS_H__ */