From 1e1d181ac5226b2e1b26192d36e13b5a44148139 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Fri, 13 Jul 2018 14:30:55 +0200 Subject: [PATCH] afb-binding: Fix export of "class" handling MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- include/afb/afb-binding-predefs.h | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.16.6