lua-users home
lua-l archive

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


On Mon, Oct 3, 2011 at 10:13 AM, Oskar Forsslund
<matrixsmurfen@googlemail.com> wrote:
> michael: shouldn't the dll being in the same folder as the exe take care of
> that?

It should. The advice is to get Dependency Walker (a free download
from MS) to see what DLLs your application is seeing.

More general advice: check your return codes carefully!  You need to
know how far you've got; can you create a Lua_state? Can you lua_pcall
a simple function? If not, what is the error pushed by that?

steve d.