lua-users home
lua-l archive

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


Hi,

I'm new to lua (and not very fluent in C either), and just
now trying to play with embedding lua. For fast scripting
I'm trying to embed it into newlisp.

It works as easy as:

(import "lua5.1.dll" "luaopen_base")
luaopen_base <10010F40>

But here's my problem:

(import "lua5.1.dll" "lua_open")
import function not found in function import : "lua_open"

Now, without lua_open it seems hard to go any further.
Do you have any idea what might be happening?


Thanks in advance,

Ingo