用类向导生成的 class CTHREAD : public CWinThreadBOOL CTHREAD::InitInstance()
{
// TODO:  perform and per-thread initialization here
return TRUE;
}int CTHREAD::ExitInstance()
{
// TODO:  perform any per-thread cleanup here
return CWinThread::ExitInstance();
}
中这两个函数做什么用?
我的主线程调用函数是哪个?