Hi,
I have some code which makes use of the deprecated function lua_cpcall:
s.argv[0]=NULL;
s.argv[1]=data->config.m_luafile;
s.argv[2]=NULL;
status = lua_cpcall(L, &pmain, &s);
report(L, status);
Now the manual says i have to replace lua_cpcall by lua_pushfunction and lua_pcall. What I don't understand: how can I hand over my arguments "s" with these new functions? They don't seem to have a possibility to deal with this kind of parameter which has to be forwarded to the called function "pmain"!
Thanks :-)