xxx.hstatic UINT __stdcall ThreadExecut(void*);
xxx.c
void xxx(){
_beginthreadex(NULL, 0, ThreadExecut, reinterpret_cast<void *>(this), 0, NULL);
}
UINT ThreadExecut(LPVOID pParam)
{
//do something
}
xxx.hstatic UINT __stdcall ThreadExecut(void*);
xxx.c
void xxx(){
_beginthreadex(NULL, 0, ThreadExecut, reinterpret_cast<void *>(this), 0, NULL);
}
UINT ThreadExecut(LPVOID pParam)
{
//do something
}
661
273
1217

被折叠的 条评论
为什么被折叠?