From 98f5843474dcec55827279b6f42007341c171ae0 Mon Sep 17 00:00:00 2001 From: Manuel Bachmann Date: Mon, 21 Dec 2015 06:57:05 +0100 Subject: Switch to a plugin model Each API now compiles to a ".so" file, which gets searched for in the "${libdir}/afb" directory at startup. We can now load an arbitrary number of plugins (> 10). Signed-off-by: Manuel Bachmann --- include/proto-def.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'include') diff --git a/include/proto-def.h b/include/proto-def.h index 315cecfa..937d6930 100644 --- a/include/proto-def.h +++ b/include/proto-def.h @@ -34,11 +34,7 @@ PUBLIC AFB_PostHandle* getPostHandle (AFB_request *request); void initPlugins (AFB_session *session); typedef AFB_plugin* (*AFB_pluginCB)(); -PUBLIC AFB_plugin* tokenRegister (); -PUBLIC AFB_plugin* audioRegister (); -PUBLIC AFB_plugin* helloWorldRegister (); -PUBLIC AFB_plugin* radioRegister (); -PUBLIC AFB_plugin* samplePostRegister (); +PUBLIC AFB_plugin* pluginRegister (); // Session handling PUBLIC AFB_error sessionCheckdir (AFB_session *session); -- cgit 1.2.3-korg