iterate topoogy header related stuff
[oweals/gnunet.git] / src / include / gnunet_plugin_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_plugin_lib.h
23  * @brief plugin loading and unloading
24  * @author Christian Grothoff
25  */
26
27 #ifndef GNUNET_PLUGIN_LIB_H
28 #define GNUNET_PLUGIN_LIB_H
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #if 0                           /* keep Emacsens' auto-indent happy */
34 }
35 #endif
36 #endif
37
38 #include "gnunet_common.h"
39 #include "gnunet_configuration_lib.h"
40
41
42 /**
43  * Signature of any function exported by a plugin.
44  *
45  * @param arg argument to the function (context)
46  * @return some pointer, NULL if the plugin was
47  *         shutdown or if there was an error, otherwise
48  *         the plugin's API on success
49  */
50 typedef void *(*GNUNET_PLUGIN_Callback) (void *arg);
51
52
53 /**
54  * Setup plugin (runs the "init" callback and returns whatever "init"
55  * returned).  If "init" returns NULL, the plugin is unloaded.
56  *
57  * Note that the library must export symbols called
58  * "library_name_init" and "library_name_done".  These will be called
59  * when the library is loaded and unloaded respectively.
60  *
61  * @param library_name name of the plugin to load
62  * @param arg argument to the plugin initialization function
63  * @return whatever the initialization function returned, NULL on error
64  */
65 void *GNUNET_PLUGIN_load (const char *library_name, void *arg);
66
67
68 /**
69  * Unload plugin (runs the "done" callback and returns whatever "done"
70  * returned).  The plugin is then unloaded.
71  *
72  * @param library_name name of the plugin to unload
73  * @param arg argument to the plugin shutdown function
74  * @return whatever the shutdown function returned, typically NULL
75  *         or a "char *" representing the error message
76  */
77 void *GNUNET_PLUGIN_unload (const char *library_name, void *arg);
78
79
80 #if 0                           /* keep Emacsens' auto-indent happy */
81 {
82 #endif
83 #ifdef __cplusplus
84 }
85 #endif
86
87
88 /* ifndef GNUNET_PLUGIN_LIB_H */
89 #endif
90 /* end of gnunet_plugin_lib.h */