diff options
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_ */ |