RE: A Euphoria DLL?
- Posted by Bernie Ryan <xotron at localnet.com> Mar 20, 2002
- 640 views
Matthew Lewis wrote: > > > Different, yes, but how much different? Rather than lumping Eu code to > the > normal, executable interpreter, it would be bound to a dll-compiled > version. > The bind utility would then adjust the stub to reflect the entry points > for > the dll. Again, other than figuring out the proper structure for the > entry > points, I don't see why this would be too difficult. :) > Matt: The code that is used in a bound form is byte codes that only the interpeter understands. Now if the code is used in the DLL, it has to be "C" code or some big lump of binary code that has to interfaced with "C" code so the DLL can export it or expose each routine to the outside world. Also the routines have to be able to call other code in other DLLs and also comunicate with the interpeter. That sounds like a lot of work to get around someone just translating a program and compiling it with a compiler. I rather see your idea of trying to interface things with COM that would create a whole new world for euphoria. Bernie