aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_plugin_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-04 14:00:32 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-04 14:00:32 +0000
commit83b19539f4d322b43683f5838b72e9ec2c8e6073 (patch)
treed0ab9329fcbefe360d9d14e2ace21a6b3396dfe9 /src/include/gnunet_plugin_lib.h
parent28a2eb43281a1f08a67954f07beb9af3a9bc9a35 (diff)
downloadgnunet-83b19539f4d322b43683f5838b72e9ec2c8e6073.tar.gz
gnunet-83b19539f4d322b43683f5838b72e9ec2c8e6073.zip
curly wars / auto-indentation
Diffstat (limited to 'src/include/gnunet_plugin_lib.h')
-rw-r--r--src/include/gnunet_plugin_lib.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/include/gnunet_plugin_lib.h b/src/include/gnunet_plugin_lib.h
index ff795d975..387ca381c 100644
--- a/src/include/gnunet_plugin_lib.h
+++ b/src/include/gnunet_plugin_lib.h
@@ -89,9 +89,9 @@ GNUNET_PLUGIN_load (const char *library_name, void *arg);
89 * of the library (same as what 'GNUNET_PLUGIN_load' would 89 * of the library (same as what 'GNUNET_PLUGIN_load' would
90 * have returned for the given library name) 90 * have returned for the given library name)
91 */ 91 */
92typedef void (*GNUNET_PLUGIN_LoaderCallback)(void *cls, 92typedef void (*GNUNET_PLUGIN_LoaderCallback) (void *cls,
93 const char *library_name, 93 const char *library_name,
94 void *lib_ret); 94 void *lib_ret);
95 95
96 96
97/** 97/**
@@ -106,11 +106,9 @@ typedef void (*GNUNET_PLUGIN_LoaderCallback)(void *cls,
106 * @param cb function to call for each plugin found 106 * @param cb function to call for each plugin found
107 * @param cb_cls closure for 'cb' 107 * @param cb_cls closure for 'cb'
108 */ 108 */
109void 109void
110GNUNET_PLUGIN_load_all (const char *basename, 110GNUNET_PLUGIN_load_all (const char *basename, void *arg,
111 void *arg, 111 GNUNET_PLUGIN_LoaderCallback cb, void *cb_cls);
112 GNUNET_PLUGIN_LoaderCallback cb,
113 void *cb_cls);
114 112
115 113
116/** 114/**