lua-users home
lua-l archive

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


On Mon, Aug 11, 2008 at 12:01 PM, Ralph Hempel
<rhempel@hempeldesigngroup.com> wrote:
> How does a library such as LuaSocket or LuaFilesystem link to
> core Lua functions that are embedded in your EXE?

Executables can export symbols, and one links against these. This is
how SciTE extensions work, since Lua is embedded directly in the
executable.  The situation isn't that far from the Linux one.

steve d.