lua-users home
lua-l archive

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


On Monday 14 June 2004 09:38, Tassilo von Parseval wrote:
> Hi everyone,
>
> I am currently working on an Inline::Lua module for Perl and I need some
> help on triggering lua functions from C when those functions make use of
> lua's shipped library. I did a rather thorough scan through the mailing
> list archive, but apparently this issue hasn't yet been brought up.

You just need to use luaopen_base(L) and friends after you've called 
lua_open(). See section 5 of the manual.

-- Jamie Webb