diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-11-03 15:42:50 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:54 +0100 |
commit | bbc7fc4588ba23bdcdb585f340d83dbbf30b994f (patch) | |
tree | b806b588e544d27d3a76110899cdbdc90f567562 /ctl-lib/ctl-lua.h | |
parent | 25b02ddcd940fbf2f19d0012309d7945c389861c (diff) |
Correctly export symbols for C++
Change-Id: I87eb6b5cc7208caaabbc3c2f3b6636d600c60370
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-lua.h')
-rw-r--r-- | ctl-lib/ctl-lua.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ctl-lib/ctl-lua.h b/ctl-lib/ctl-lua.h index d0d89bd..3a70b71 100644 --- a/ctl-lib/ctl-lua.h +++ b/ctl-lib/ctl-lua.h @@ -21,6 +21,10 @@ #ifndef _LUA_CTL_INCLUDE_ #define _LUA_CTL_INCLUDE_ +#ifdef __cplusplus +extern "C" { +#endif + #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif @@ -68,5 +72,8 @@ PUBLIC void ctlapi_lua_docall (afb_req request); PUBLIC void ctlapi_lua_dostring (afb_req request); PUBLIC void ctlapi_lua_doscript (afb_req request); +#ifdef __cplusplus +} +#endif #endif |