Include afb-utilities from C++ easily
authorRomain Forlot <romain.forlot@iot.bzh>
Thu, 31 Aug 2017 10:48:47 +0000 (12:48 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Thu, 31 Aug 2017 10:48:47 +0000 (12:48 +0200)
Change-Id: Ic1c815b412d372a418c2faa51fea451c9100693c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
filescan-utils.h
wrap-json.h

index 3c091b7..b6111e2 100644 (file)
 #ifndef FILESCAN_UTILS_H
 #define FILESCAN_UTILS_H
 
+#ifdef __cplusplus
+    extern "C" {
+#endif
+
 #define AFB_BINDING_VERSION 2
 #include <afb/afb-binding.h>
 #include <json-c/json.h>
@@ -45,5 +49,8 @@ PUBLIC const char *GetMidleName(const char*name);
 PUBLIC const char *GetBinderName();
 PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext);
 
-#endif /* FILESCAN_UTILS_H */
+#ifdef __cplusplus
+    }
+#endif
 
+#endif /* FILESCAN_UTILS_H */
index cb2d0bf..f5e6996 100644 (file)
 
 #pragma once
 
+#ifdef __cplusplus
+    extern "C" {
+#endif
+
 #include <stdarg.h>
 #include <json-c/json.h>
 
@@ -44,3 +48,6 @@ extern void wrap_json_object_for_all(struct json_object *object, void (*callback
 extern void wrap_json_optobject_for_all(struct json_object *object, void (*callback)(void*,struct json_object*,const char*), void *closure);
 extern void wrap_json_for_all(struct json_object *object, void (*callback)(void*,struct json_object*,const char*), void *closure);
 
+#ifdef __cplusplus
+    }
+#endif