diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-11-03 15:42:50 +0100 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-11-24 10:38:06 +0100 |
commit | 22f4773ee8fda1ddff6638b1e4da672488b8d135 (patch) | |
tree | b806b588e544d27d3a76110899cdbdc90f567562 /ctl-lib/ctl-plugin.h | |
parent | af19faae21bf209515dcb220a102b4adf7f5b7d5 (diff) |
Correctly export symbols for C++eel_4.99.3eel/4.99.34.99.3
Change-Id: I87eb6b5cc7208caaabbc3c2f3b6636d600c60370
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-plugin.h')
-rw-r--r-- | ctl-lib/ctl-plugin.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ctl-lib/ctl-plugin.h b/ctl-lib/ctl-plugin.h index 2adfbef..f4a0e7b 100644 --- a/ctl-lib/ctl-plugin.h +++ b/ctl-lib/ctl-plugin.h @@ -20,6 +20,9 @@ #ifndef _CTL_PLUGIN_INCLUDE_ #define _CTL_PLUGIN_INCLUDE_ +#ifdef __cplusplus +extern "C" { +#endif #ifndef _GNU_SOURCE #define _GNU_SOURCE @@ -240,4 +243,8 @@ typedef int (*Lua2cWrapperT) (void*luaHandle, char *funcname, Lua2cFunctionT cal int lua2c_ ## funcname (void* luaState){return((*Lua2cWrap)(luaState, MACRO_STR_VALUE(funcname), funcname));};\ static int funcname (CtlSourceT* source, json_object* argsJ, json_object** responseJ) +#ifdef __cplusplus +} +#endif + #endif /* _CTL_PLUGIN_INCLUDE_ */ |