Update autobuild scripts
[apps/agl-service-unicens.git] / ucs2-afb / ucs_binding.h
index 082f6cc..cd86594 100644 (file)
 #ifndef UCS2BINDING_H
 #define UCS2BINDING_H
 
-// Use Version of AGL Application Framework API
-#define AFB_BINDING_VERSION 2
-
 #ifndef PUBLIC
   #define PUBLIC
 #endif
 #define STATIC static
 
-#include <json-c/json.h>
+/* binding is using the application framework API V2
+ * the compile option "AFB_BINDING_VERSION=2" is located
+ * in conf.d/project/config.cmake */
 #include <afb/afb-binding.h>
-
+#include <json-c/json.h>
 #include "ucs_interface.h"
 
 #ifndef CONTROL_CDEV_TX
@@ -43,9 +42,10 @@ extern const struct afb_binding_interface *afbIface;
 extern struct afb_service afbSrv;
 
 // API verbs prototype
-PUBLIC void ucs2Configure (struct afb_req request);
-PUBLIC void ucs2SetVol (struct afb_req request);
-
+PUBLIC int ucs2_initbinding(afb_api_t api);
+PUBLIC void ucs2_configure (afb_req_t request);
+PUBLIC void ucs2_subscribe (afb_req_t request);
+PUBLIC void ucs2_writei2c  (afb_req_t request);
 
 #endif /* UCS2BINDING_H */