name change
[gd/wireshark/.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 1999 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 #include <glib.h>
29 #include <gmodule.h>
30
31 #include "packet.h"
32
33 typedef struct _plugin {
34     GModule     *handle;          /* handle returned by dlopen */
35     gchar       *name;            /* plugin name */
36     gchar       *version;         /* plugin version */
37     void (*register_protoinfo)(void); /* routine to call to register protocol information */
38     void (*reg_handoff)(void);    /* routine to call to register dissector handoff */
39     void (*register_tap_listener)(void);   /* routine to call to register tap listener */
40     struct _plugin *next;         /* forward link */
41 } plugin;
42
43 ETH_VAR_IMPORT plugin *plugin_list;
44
45 extern void init_plugins(const char *);
46 extern void register_all_plugin_handoffs(void);
47 extern void register_all_plugin_tap_listeners(void);
48
49 /* get the global plugin dir */
50 /* Return value is g_malloced so the caller should g_free() it. */
51 extern char *get_plugins_global_dir(const char *plugin_dir);
52
53 /* get the personal plugin dir */
54 /* Return value is g_malloced so the caller should g_free() it. */
55 extern char *get_plugins_pers_dir(void);
56
57 #endif /* __PLUGINS_H__ */