lua-users home
lua-l archive

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


gary ng wrote:
One thing I know is, luainterface(.NET bridge) doens't
like lua5.1.dll at all.

As of version 2.0, LuaInterface doesn't use a standard Lua DLL anyway. Instead its "lua51.dll" is a DLL containing both Lua and some C++/CLI code to make the Lua API available from C# code. This lua51.dll doesn't export any native symbols; it's only for use by LuaInterface. So it's not possible to use LuaInterface with another Lua DLL or to link Lua extension modules against the lua51.dll provided and used by LuaInterface. This makes your point irrelevant.

Matt