2010-06-06 14:15:15 +00:00
|
|
|
/**
|
|
|
|
* This is a minimal example plugin for uhub.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "plugin_api/handle.h"
|
|
|
|
|
2010-07-29 06:43:22 +00:00
|
|
|
int plugin_register(struct plugin_handle* plugin, const char* config)
|
2010-06-06 14:15:15 +00:00
|
|
|
{
|
2010-08-30 09:54:34 +00:00
|
|
|
PLUGIN_INITIALIZE(plugin, "Example plugin", "1.0", "A simple example plugin");
|
2010-06-06 14:15:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-29 06:43:22 +00:00
|
|
|
int plugin_unregister(struct plugin_handle* plugin)
|
2010-06-06 14:15:15 +00:00
|
|
|
{
|
|
|
|
/* No need to do anything! */
|
2010-06-12 00:54:53 +00:00
|
|
|
return 0;
|
2010-06-06 14:15:15 +00:00
|
|
|
}
|
|
|
|
|