* shutdown or if there was an error, otherwise
* the plugin's API on success
*/
-typedef void *(*GNUNET_PLUGIN_Callback) (void *arg);
+typedef void *
+(*GNUNET_PLUGIN_Callback) (void *arg);
/**
* @return whatever the initialization function returned, NULL on error
*/
void *
-GNUNET_PLUGIN_load (const char *library_name, void *arg);
+GNUNET_PLUGIN_load (const char *library_name,
+ void *arg);
/**
* of the library (same as what #GNUNET_PLUGIN_load would
* have returned for the given library name)
*/
-typedef void (*GNUNET_PLUGIN_LoaderCallback) (void *cls,
- const char *library_name,
- void *lib_ret);
+typedef void
+(*GNUNET_PLUGIN_LoaderCallback) (void *cls,
+ const char *library_name,
+ void *lib_ret);
/**
* @param cb_cls closure for @a cb
*/
void
-GNUNET_PLUGIN_load_all (const char *basename, void *arg,
- GNUNET_PLUGIN_LoaderCallback cb, void *cb_cls);
+GNUNET_PLUGIN_load_all (const char *basename,
+ void *arg,
+ GNUNET_PLUGIN_LoaderCallback cb,
+ void *cb_cls);
/**
* or a "char *" representing the error message
*/
void *
-GNUNET_PLUGIN_unload (const char *library_name, void *arg);
+GNUNET_PLUGIN_unload (const char *library_name,
+ void *arg);
#if 0 /* keep Emacsens' auto-indent happy */