More work on the plugin API.

This commit is contained in:
Jan Vidar Krey
2010-06-06 16:15:15 +02:00
parent ed53034ad5
commit 07d4e4470c
6 changed files with 100 additions and 84 deletions

24
src/plugins/mod_example.c Normal file
View File

@@ -0,0 +1,24 @@
/**
* This is a minimal example plugin for uhub.
*/
#include "uhub.h"
#include "plugin_api/handle.h"
int plugin_register(struct uhub_plugin_handle* plugin, const char* config)
{
plugin->name = "Example plugin";
plugin->version = "1.0";
plugin->description = "A simple example plugin";
plugin->ptr = NULL;
plugin->plugin_api_version = PLUGIN_API_VERSION;
plugin->plugin_funcs_size = sizeof(struct plugin_funcs);
memset(&plugin->funcs, 0, sizeof(struct plugin_funcs));
return 0;
}
void plugin_unregister(struct uhub_plugin_handle* plugin)
{
/* No need to do anything! */
}