diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-07-13 14:30:55 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-07-13 15:24:14 +0200 |
commit | 1e1d181ac5226b2e1b26192d36e13b5a44148139 (patch) | |
tree | 230ea602c6ebb98040f4bd899fb2e240eaf1e0ef /include/afb/afb-binding-predefs.h | |
parent | f8b3091f42a554508600a79d2492ea6368fbd46b (diff) |
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 <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-binding-predefs.h')
-rw-r--r-- | include/afb/afb-binding-predefs.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 |