From 6492d061bf5753bb3bb67b771fc2f9ce0c910c2b Mon Sep 17 00:00:00 2001 From: Jose Bollo Date: Mon, 20 Aug 2018 14:44:31 +0200 Subject: Provide functions afb_service_call[_sync]_legacy These functions was missing and the documentation was erronous. This fixes that issue by providing the missing functions and updating the documentation. Bug-AGL: SPEC-1669 Change-Id: I543b0fbe29370be6f35f15ca3bfa48fef9ab4055 Signed-off-by: Jose Bollo --- include/afb/afb-binding-v3.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/afb/afb-binding-v3.h') diff --git a/include/afb/afb-binding-v3.h b/include/afb/afb-binding-v3.h index 9df2eb99..84af4861 100644 --- a/include/afb/afb-binding-v3.h +++ b/include/afb/afb-binding-v3.h @@ -259,4 +259,6 @@ extern const struct afb_binding_v3 afbBindingV3; #define afb_service_call_v3(...) afb_api_call(afbBindingV3root,__VA_ARGS__) #define afb_service_call_sync_v3(...) afb_api_call_sync(afbBindingV3root,__VA_ARGS__) +#define afb_service_call_legacy_v3(...) afb_api_call_legacy(afbBindingV3root,__VA_ARGS__) +#define afb_service_call_sync_legacy_v3(...) afb_api_call_sync_legacy(afbBindingV3root,__VA_ARGS__) -- cgit 1.2.3-korg