Switch to a plugin model
[src/app-framework-binder.git] / plugins / samples / HelloWorld.c
index 4117c26..5638b42 100644 (file)
@@ -84,11 +84,11 @@ STATIC  AFB_restapi pluginApis[]= {
 };
 
 
-PUBLIC AFB_plugin *helloWorldRegister () {
+PUBLIC AFB_plugin *pluginRegister () {
     AFB_plugin *plugin = malloc (sizeof (AFB_plugin));
     plugin->type  = AFB_PLUGIN_JSON;
     plugin->info  = "Application Framework Binder Service";
     plugin->prefix= "dbus";        
     plugin->apis  = pluginApis;
     return (plugin);
-};
\ No newline at end of file
+};