Windows常见错误处理–集合
**0x01**
error C2065: '_beginthreadex' : undeclared identifier
Error executing cl.exe.
Exception.exe - 1 error(s), 0 warning(s)
用VA可以定位到,函数'_beginthreadex'是在头文件<process.h>中声明的,而且可以看出在程序开始时,头文件<process.h>也已经包含了,但编译时为什么总是失败。
【解决办法】
将工程按照下面的方式进行设置后重新编译,问题就可以解决:
Project->Settings->C/C++->Code Generation->Use run-time libray->Debug Multithread,或 Multithread,或 Debug Multithread DLL, 或 Multithread DLL都可以,即Use run-time library需要使用多线程的。