diff options
Diffstat (limited to '4a-hal/4a-hal-utilities/4a-hal-utilities-verbs-loader.h')
-rw-r--r-- | 4a-hal/4a-hal-utilities/4a-hal-utilities-verbs-loader.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/4a-hal/4a-hal-utilities/4a-hal-utilities-verbs-loader.h b/4a-hal/4a-hal-utilities/4a-hal-utilities-verbs-loader.h index 3bad080..113a0b0 100644 --- a/4a-hal/4a-hal-utilities/4a-hal-utilities-verbs-loader.h +++ b/4a-hal/4a-hal-utilities/4a-hal-utilities-verbs-loader.h @@ -20,19 +20,18 @@ #include <stdio.h> -#define AFB_BINDING_VERSION dyn -#include <afb/afb-binding.h> +#include <afb-definitions.h> // Structure to store data necessary to add a verb to a dynamic api struct HalUtlApiVerb { const char *verb; /* name of the verb, NULL only at end of the array */ - void (*callback)(afb_request *req); /* callback function implementing the verb */ + void (*callback)(AFB_ReqT req); /* callback function implementing the verb */ const struct afb_auth *auth; /* required authorisation, can be NULL */ const char *info; /* some info about the verb, can be NULL */ uint32_t session; }; // Verb that allows to add verb to a dynamic api -int HalUtlLoadVerbs(afb_dynapi *apiHandle, struct HalUtlApiVerb *verbs); +int HalUtlLoadVerbs(AFB_ApiT apiHandle, struct HalUtlApiVerb *verbs); #endif /* _HAL_UTILITIES_VERBS_LOADER_INCLUDE_ */
\ No newline at end of file |