隔了一段时间后来重新编译原本还可以编译运行的程序,在DEBUG下还是正常,但是换成release后就出现了下载问题
'TryEnterCriticalSection' : is not a member of '`global namespace''
解决方法:
处理办法:在stdafx.h或程序开始处中增加如下宏定义,即可。
用于指明WINDOWS系统版本。
//for use TryEnterCriticalSection
#ifndef _WIN32_WINNT
# define _WIN32_WINNT 0x500
#endif