标签:turn 开启 ... ret thread 文件中 protect 处理 func
//************工作者线程**************
1.在头文件中添加UINT ThreadFunc(LPVOID lpParam); 注意应在类的外部
2.添加protected型变量:CWinThread* pThread
3.添加线程处理函数:
UINT ThreadFunc(LPVOID lpParam)
{
while (true)
{
...
Sleep(1000);
}
return 0;
}
4.开启线程AfxBeginThread(ThreadFunc,lpParam);
标签:turn 开启 ... ret thread 文件中 protect 处理 func
原文地址:http://www.cnblogs.com/xslwm/p/7173027.html