[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: embedding lua, lua_open not found
- From: "Ingo Hohmann" <200502.lists@...>
- Date: Sat, 29 Jul 2006 11:09:22 +0200
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