UNIT ThreadA(...)
{
   UNIT a;
    ...
    a=...
    return a;
}
CWinThread *pthread=::AfxBeginThread(ThreadA...)
当线程返回的时候,我如何得知线程的返回码 a ?