lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> iStatus = luaL_loadstring(L, cAdd);

You probably mean luaL_dostring heres because loading a string does not
run it, it just compiles the code in it. So, my_add is not defined.