//创建工作线程
CWinThread* AFXAPIAfxBeginThread(
AFX_THREADPROC pfnThreadProc,//线程函数
LPVOID pParam,//传给线程函数的参数
int nPriority =THREAD_PRIORITY_NORMAL,//线程的优先级
UINT nStackSize = 0,//堆栈大小
DWORD dwCreateFlags = 0,//创建起始状态标志
LPSECURITY_ATTRIBUTES lpSecurityAttrs= NULL//线程的安全属性
);
//创建用户界面线程
CWinThread* AFXAPIAfxBeginThread(
CRuntimeClass* pThreadClass,//从CWinThread派生的类的RUNTIME_CLASS
int nPriority =THREAD_PRIORITY_NORMAL,//线程的优先级
UINT nStackSize = 0,// 堆栈大小
DWORD dwCreateFlags = 0,// 创建起始状态标志
LPSECURITY_ATTRIBUTESlpSecurityAttrs =NULL//线程的安全属性
);
关于 参数转换
结构体 直接作为参数写进
函数中将LPVOID 转为结构体
原文地址:http://www.cnblogs.com/peidongbin/p/3895160.html