2 * definitions for plugins structures
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
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.
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.
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.
30 #endif /* __cplusplus */
36 #include "ws_symbol_export.h"
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 */
50 WS_DLL_PUBLIC plugin
*plugin_list
;
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);
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
;
65 WS_DLL_PUBLIC wslua_plugin
*wslua_plugin_list
;
69 #endif /* __cplusplus */
71 #endif /* __PLUGINS_H__ */