summaryrefslogtreecommitdiffstats
path: root/controller/ctl-lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'controller/ctl-lua.h')
-rw-r--r--controller/ctl-lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller/ctl-lua.h b/controller/ctl-lua.h
index 2fbebf5..d41c6a5 100644
--- a/controller/ctl-lua.h
+++ b/controller/ctl-lua.h
@@ -63,9 +63,9 @@ typedef int (*Lua2cFunctionT)(char *funcname, json_object *argsJ);
typedef int (*Lua2cWrapperT) (lua_State* luaState, char *funcname, Lua2cFunctionT callback);
#define CTLP_LUALOAD Lua2cWrapperT Lua2cWrap;
-#define CTLP_LUA2C(FuncName, label,argsJ, context) static int FuncName(char*label,json_object*argsJ);\
+#define CTLP_LUA2C(FuncName, label,argsJ) static int FuncName(char*label,json_object*argsJ);\
int lua2c_ ## FuncName(lua_State* luaState){return((*Lua2cWrap)(luaState, MACRO_STR_VALUE(FuncName), FuncName));};\
- static int FuncName(char* label, json_object* argsJ, void* context)
+ static int FuncName(char* label, json_object* argsJ)
typedef enum {
LUA_DOCALL,