[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Newbie question - regarding calling Lua functions from C/C++
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Mon, 9 Aug 2010 22:31:40 -0300
> 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.