lua-users home
lua-l archive

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


> In the end the "brute force" method "where the app exports the
> needed functions through a callback structure" is really the best
> method for ensuring version compatibility.  

And it also factors out a lot of system vagaries (like these Windows 
DLL/CRTL issues).  In the end the only system dependent feature 
becomes finding the entry point function and loading the actual module 
into memory.

But it seems Lua has already gone down a different road at this point 
so this is mostly academic now.

Brian