Prepare for future API-V3
authorFulup Ar Foll <fulup@iot.bzh>
Mon, 23 Oct 2017 16:05:33 +0000 (18:05 +0200)
committerFulup Ar Foll <fulup@iot.bzh>
Mon, 23 Oct 2017 16:05:33 +0000 (18:05 +0200)
filescan-utils.c
filescan-utils.h

index 819efb2..7e45133 100644 (file)
@@ -121,6 +121,7 @@ PUBLIC const char *GetBinderName() {
     return binderName;
 }
 
+#ifndef USE_API_DYN
 PUBLIC char *GetBindingDirPath()
 {
     // A file description should not be greater than 999.999.999
@@ -142,3 +143,4 @@ PUBLIC char *GetBindingDirPath()
 
     return strndup(retdir, sizeof(retdir));
 }
+#endif
index e17867e..940eafd 100644 (file)
     extern "C" {
 #endif
 
-#define AFB_BINDING_VERSION 2
-#include <afb/afb-binding.h>
+// hack waiting for official V3 API
+#ifdef USE_API_DYN
+    #define AFB_BINDING_VERSION dyn
+    #include <afb/afb-binding.h>
+    extern  afb_dynapi *AFB_default;
+    #define AFB_DEBUG(...) AFB_DYNAPI_DEBUG(AFB_default, __VA_ARGS__)
+#else        
+    #define AFB_BINDING_VERSION 2
+    #include <afb/afb-binding.h>
+#endif
+        
 #include <json-c/json.h>
 
 #ifndef PUBLIC