diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-05-09 12:56:47 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 14:12:02 +0100 |
commit | 2fdc44f69750b44ab7b1a5fb5f3a447c3607038b (patch) | |
tree | a9f980a9afb411e4b5385bd00d7b5412e1386608 /filescan-utils.h | |
parent | 844042f3f8c523e42b721670cea971301ea18fde (diff) |
Adapt function to dynamic API
A dynamic API being dynamic, you need to pass as parameter
on behalf of which API you want to act.
If you are using classic v2 API then just pass a NULL
pointer value.
Change-Id: I9ac6b606ff25c63a05a647e418a7c2bcc4b2a7fe
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'filescan-utils.h')
-rw-r--r-- | filescan-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filescan-utils.h b/filescan-utils.h index c282c2b..fb942e0 100644 --- a/filescan-utils.h +++ b/filescan-utils.h @@ -51,8 +51,8 @@ typedef enum { const char *GetMidleName(const char*name); const char *GetBinderName(); json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext); -char *GetBindingDirPath(); +char *GetBindingDirPath(struct afb_dynapi *dynapi); #ifdef __cplusplus } |