All messages converted to the "GSM style" dissection.
[obnox/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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, 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
37 typedef struct _plugin {
38     GModule     *handle;          /* handle returned by g_module_open */
39     gchar       *name;            /* plugin name */
40     gchar       *version;         /* plugin version */
41     void (*register_protoinfo)(void); /* routine to call to register protocol information */
42     void (*reg_handoff)(void);    /* routine to call to register dissector handoff */
43     void (*register_tap_listener)(void);   /* routine to call to register tap listener */
44     void (*register_wtap_module)(void);  /* routine to call to register a wiretap module */
45     void (*register_codec_module)(void);  /* routine to call to register a codec */
46     struct _plugin *next;         /* forward link */
47 } plugin;
48
49 WS_VAR_IMPORT plugin *plugin_list;
50
51 extern void init_plugins(void);
52 extern void register_all_plugin_registrations(void);
53 extern void register_all_plugin_handoffs(void);
54 extern void register_all_plugin_tap_listeners(void);
55 extern void register_all_wiretap_modules(void);
56 extern void register_all_codecs(void);
57
58 typedef struct _wslua_plugin {
59     gchar       *name;            /**< plugin name */
60     gchar       *version;         /**< plugin version */
61     struct _wslua_plugin *next;
62 } wslua_plugin;
63
64 WS_VAR_IMPORT wslua_plugin *wslua_plugin_list;
65
66 #ifdef __cplusplus
67 }
68 #endif /* __cplusplus */
69
70 #endif /* __PLUGINS_H__ */