|
Hi, Ryan, Lua's C API had several small changes from 5.0.2 to 5.1 that break LuaDLL.cs (the change to lua_open is just one of them; others are more subtle, such as some functions in Lua 5.0 that became macros in Lua 5.1, and of course P/Invoke does not know anything about macros). LuaDLL.cs has to be updated for the new API. -- Fabio On 8/23/06, Ryan Raaum <ryan@raaum.org> wrote:
Hi, I'm trying to use LuaInferface with Lua 5.1.1 and I've run into a roadblock. and it chokes on line 13, the Lua() invocation. At first it choked because LuaDLL.cs and Lua.cs in LuaInterface use lua_open which is only a definition in 5.1.1, but I replaced it with luaL_newstate and things got no better. Anyone have any experience? ideas? Thanks very much, Ryan