[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Registering with loadlib under Windows
- From: Renato Borges <rborges@...>
- Date: Tue, 07 Dec 1999 13:30:50 -0200
At 07:07 07/12/99 -0200, you wrote:
>I'm trying to use loadlib under Windows. No problem on incorporating
>the dll with "loadlib". "callfromlib" also works fine. But: How do I
>have to declare and register a function within the DLL with Lua? As far
>as I understand, I can't use "lua_register", as I can't simply pass the
>function pointer across the DLL boundary.
In the code, you can just use Windows as if it were a normal system.
You just have to use Lua as a DLL, not to have two copies of the Lua
library in your product (and two different environments - one for the
executable and
one for the DLL).
--rborges