RE: Irv's GTK Stuff
- Posted by Matt Lewis <matthewwalkerlewis at yahoo.com> Nov 09, 2003
- 506 views
David Cuny wrote: > > > Matt Lewis wrote: > > > It's actually possible to compile wxWindows to a DLL/SO and use > > it that way. It's a project I've been working on (and off) for > >about a year. > > I've looked at wxEuphoria, although I haven't played with it yet. > There were some sort of dire warnings that I was paying attention > to... > > I was under the impression that you had this Real Ugly Hack (tm) > that you had to do in order to resolve addresses in the DLL. Has > this been replaced by something elegant? Originally, I was using ordinals, which was awful (and Windows specific). What I ended up doing was using Dependency Viewer to get a decorated and undecorated list of the functions. I think this only works for MSVC name decoration, though, which was what I compiled with. On Linux, I used whatever the Linux command is that reads the exported symbols in a .so file. Matt Lewis