void *MThread_helper( void *arg ) { MThread *me; me=(MThread *)arg; return( me->Run() ); }
void* MThread::ThreadFunction(void* aPtr) { MThread* pThrd = reinterpret_cast<MThread*>(aPtr); if (pThrd) pThrd->Run(); return NULL; };