From 13b637356a92d68e5dfed6990443e6937f1ed9c6 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 5 Jun 2017 19:16:27 +0200 Subject: Initial Commit Change-Id: I4a832208f3db9f5fece82f44cc957c6c1bb91d6c Signed-off-by: Romain Forlot --- high-can-binding/high-can-binding-hat.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 high-can-binding/high-can-binding-hat.hpp (limited to 'high-can-binding/high-can-binding-hat.hpp') diff --git a/high-can-binding/high-can-binding-hat.hpp b/high-can-binding/high-can-binding-hat.hpp new file mode 100644 index 0000000..b91f083 --- /dev/null +++ b/high-can-binding/high-can-binding-hat.hpp @@ -0,0 +1,17 @@ +#pragma once +#include +#include +extern "C" +{ + #define AFB_BINDING_VERSION 1 + #include +}; + +extern "C" struct afb_binding_interface; +extern "C" struct afb_service srvitf; +extern const struct afb_binding_interface *binder_interface; + void subscribe(struct afb_req request); + void unsubscribe(struct afb_req request); + void get(struct afb_req request); + void initHigh(afb_service service); + int ticked(sd_event_source *source, unsigned long t, void *data); -- cgit