diff options
author | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2015-12-16 17:12:04 +0100 |
---|---|---|
committer | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2015-12-16 17:13:47 +0100 |
commit | 41c462374fb25fae29f3b4a28eb99fdb639e8547 (patch) | |
tree | 1d255970fbb1cf3a07d92d478a6261f7c16e08b9 /include | |
parent | f4df9160115470439d1820409126694d138cd7be (diff) |
Fix plugins loading, cleanup and dispatch Radio API code
Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh>
Diffstat (limited to 'include')
-rw-r--r-- | include/proto-def.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/proto-def.h b/include/proto-def.h index d8001142..fc3a9cfa 100644 --- a/include/proto-def.h +++ b/include/proto-def.h @@ -33,10 +33,11 @@ PUBLIC int doRestApi(struct MHD_Connection *connection, AFB_session *session, co void initPlugins (AFB_session *session); typedef AFB_plugin* (*AFB_pluginCB)(); -PUBLIC AFB_plugin* afsvRegister (); +PUBLIC AFB_plugin* tokenRegister (); PUBLIC AFB_plugin* dbusRegister (); PUBLIC AFB_plugin* alsaRegister (); -PUBLIC AFB_plugin* radioRegister (AFB_session *session); +PUBLIC AFB_plugin* radioRegister (); +PUBLIC AFB_plugin* helloWorldRegister (); // Session handling PUBLIC AFB_error sessionCheckdir (AFB_session *session); |