freesteel wrote:
...
> pThread[ih] = AfxBeginThread(MyThread, mainThreadState,
> THREAD_PRIORITY_NORMAL, CREATE_SUSPENDED);
...
Here the call to AfxBeginThread is wrong, there is one argument
missing, it should be:
pThread[ih] = AfxBeginThread(MyThread, mainThreadState,
TH
I have posted about this problem before. SInce then I found a much
better article to help with embedding python in a multithreaded
application:
http://www.linuxjournal.com/article/3641
I found this article very good and it clarified for me what needs
doing. Now I have an example application that