Re: wxEuphoria
- Posted by Matt Lewis <matthewwalkerlewis at yahoo.com> Nov 26, 2004
- 727 views
Chris Burch wrote: > > Hi > > Started reading the docs, and the other includes - this is all c++ stuff, > and way way above my head. I'll try to play catch up, and see what comes > out, but good grief, don't hold your breath! Yes, it's not for the faint of heart, although I think it's not so bad as it first sounds. For the most part, it's fairly straightforward to wrap additional features. The fun comes when a function returns something by value (i.e., return an_object). Then you need to write some C++. If you look at the files in the dev package, you'll see that it's usually pretty simple, and just adds a wrapper around the original function that returns a pointer. Then you have to add it to the database, so that the new function is imported. > (On seconf thoughts I'm leaving cross platform compatibility to you too ! ) :P Matt Lewis