Sounds like too much to ask imho :)
Can I give you an alternative way to connect MFC to Pyke?
As a Unix person, I don't believe in big executables.
I'd write a plain Python program with Pyke that solves your problem after reading a file or pipe
with data. It produces the problem again in some format.
At the .NET end, run that program as a child process, feeding it the problem data, and reading the
solution afterwards (either use files or pipes to communiate with it).
In my opinion, the advantage of that approach is that you have a more modular system, where you can
replace one part without having the other part drop on the floor too.
Also, you can use the child program independently of the MFC, good for eg fdebugging, but perhaps
also in other contexts useful.
The disadvantage is of course that you have to communicate using text streams.
Either devise a simple human-readable file format, or use something standard, eg JSON or an XML
stream (although I am not a big fan of XML tbh).
Greetings,
Albert
--
You received this message because you are subscribed to the Google Groups "PyKE" group.
To post to this group, send email to py...@googlegroups.com.
To unsubscribe from this group, send email to pyke+uns...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/pyke?hl=en.