Change license to GPLv3.
[jelmer/ctrlproxy.git] / src / plugins.h
1 /*
2         ctrlproxy: A modular IRC proxy
3         (c) 2002-2005 Jelmer Vernooij <jelmer@nl.linux.org>
4
5         This program is free software; you can redistribute it and/or modify
6         it under the terms of the GNU General Public License as published by
7         the Free Software Foundation; either version 3 of the License, or
8         (at your option) any later version.
9
10         This program is distributed in the hope that it will be useful,
11         but WITHOUT ANY WARRANTY; without even the implied warranty of
12         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13         GNU General Public License for more details.
14
15         You should have received a copy of the GNU General Public License
16         along with this program; if not, write to the Free Software
17         Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __CTRLPROXY_PLUGINS_H__
21 #define __CTRLPROXY_PLUGINS_H__
22
23 /**
24  * @file
25  * @brief Plugins
26  */
27
28 /**
29  * A plugin.
30  */
31 struct plugin {
32         GModule *module;
33         void *data;
34         /** Plugin operations */
35         struct plugin_ops *ops;
36 };
37
38 /* plugins.c */
39 G_MODULE_EXPORT struct plugin *load_plugin(const char *dir, const char *name);
40 G_MODULE_EXPORT gboolean plugin_loaded(const char *name);
41 G_MODULE_EXPORT GList *get_plugin_list(void);
42
43 #if defined(_WIN32) && !defined(CTRLPROXY_CORE_BUILD)
44 G_MODULE_EXPORT gboolean init_plugin(struct plugin *p);
45 G_MODULE_EXPORT gboolean load_config(struct plugin *p, xmlNodePtr);
46 G_MODULE_EXPORT gboolean save_config(struct plugin *p, xmlNodePtr);
47 G_MODULE_EXPORT const char name_plugin[];
48 #pragma comment(lib,"ctrlproxy.lib")
49 #endif
50
51 #endif /* __CTRLPROXY_PLUGINS_H__ */