THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 25/03/2005 at 14:27, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.1
Platform: Windows ;
Language(s) : C++ ;
---------
Hi,
What's wrong when i do this:
//-----------
class MessageThread : public Thread
{
public:
virtual void Main(void);
};
//---------------------------
void MessageThread::Main(void)
{
// blabla
}
//----------------
And in my code:
MessageThread.Start(TRUE, FALSE);
AND....
MessageThread.End;
--------
Why are the Start ans End statments not accepted
Why do i nowhere in the examples see the Thread.End used ?
Is it taken care of by the OS?
Thanks in advance