lua-users home
lua-l archive

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


Christophe Gimenez wrote:
> For short : all LUA code run normal except my C_Function Calls.
> 
> Is this possible ?

Yes, You need to make yourself a simple debugger be using the
lua_callhook this function is called everytime Lua calls a function ..
In that you should be able to identify your function and do what you
need to do!

/Erik