lua-users home
lua-l archive

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


c0ck bone wrote:

and there's no loadmodule() available for lua 5.0).

Not true. The http://lua-users.org/wiki/LuaBinaryModules page also has a loadmodule() version for Lua 5. It's what LuaCheia is using...

loadlib("./libluaSDL.so", "tolua_SDL_open")()

Shouldn't this be
loadlib("./libluaSDL.so", "tolua_SDL_open") -- w/o the extra ()

-Martin