From: José Bollo Date: Fri, 13 Jul 2018 12:30:55 +0000 (+0200) Subject: afb-binding: Fix export of "class" handling X-Git-Tag: 5.99.2~9 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=1e1d181ac5226b2e1b26192d36e13b5a44148139 afb-binding: Fix export of "class" handling The functions afb_api_require_class and afb_api_provide_class weren't exported. This commit fix that oversight. Change-Id: Ica6532bd9e06aa9003a24ae7a54b05c64be7093b Signed-off-by: José Bollo --- diff --git a/include/afb/afb-binding-predefs.h b/include/afb/afb-binding-predefs.h index f8806165..665771e6 100644 --- a/include/afb/afb-binding-predefs.h +++ b/include/afb/afb-binding-predefs.h @@ -325,6 +325,8 @@ #define afb_api_x3_on_init afb_api_on_init #define afb_api_x3_seal afb_api_seal #define afb_api_x3_add_alias afb_api_add_alias +#define afb_api_x3_require_class afb_api_require_class +#define afb_api_x3_provide_class afb_api_provide_class #define AFB_API_ERROR AFB_API_ERROR_V3 #define AFB_API_WARNING AFB_API_WARNING_V3