From b79d0efc90f30918d64024bc0807c023e44c5325 Mon Sep 17 00:00:00 2001 From: Tobias Jahnke Date: Mon, 24 Jun 2019 08:15:59 +0200 Subject: agl-service-unicens: use shared lib of afb-helpers Change the usage of afb-helpers from git submodule to shared library. Removed also unused app-templates submodule. Bug-AGL: SPEC-2562 Signed-off-by: Tobias Jahnke Change-Id: Iade8686aded8912d4dd203d1f74e171c13302a3e --- ucs2-afb/ucs_apidef.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'ucs2-afb/ucs_apidef.h') diff --git a/ucs2-afb/ucs_apidef.h b/ucs2-afb/ucs_apidef.h index 0b40094..379966b 100644 --- a/ucs2-afb/ucs_apidef.h +++ b/ucs2-afb/ucs_apidef.h @@ -64,12 +64,12 @@ static const struct afb_auth _afb_auths_UNICENS[] = { { .type = afb_auth_Permission, .text = "urn:AGL:permission:UNICENS:public:controller" } }; - void ucs2_listconfig(afb_req req); - void ucs2_initialise(afb_req req); - void ucs2_subscribe(afb_req req); - void ucs2_subscriberx(afb_req req); - void ucs2_writei2c(afb_req req); - void ucs2_sendmessage(afb_req req); +void ucs2_listconfig(afb_req_t req); +void ucs2_initialise(afb_req_t req); +void ucs2_subscribe(afb_req_t req); +void ucs2_subscriberx(afb_req_t req); +void ucs2_writei2c(afb_req_t req); +void ucs2_sendmessage(afb_req_t req); static const struct afb_verb_v2 _afb_verbs_UNICENS[] = { { @@ -123,6 +123,8 @@ static const struct afb_verb_v2 _afb_verbs_UNICENS[] = { } }; +int ucs2_initbinding(); + const struct afb_binding_v2 afbBindingV2 = { .api = "UNICENS", .specification = _afb_description_UNICENS, -- cgit 1.2.3-korg