码迷,mamicode.com
首页 > 其他好文 > 详细

error C3861: “InitializeCriticalSectionAndSpinCount”: 找不到标识符

时间:2015-05-06 13:23:51      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:vs2010

VS2003的工程转换成VS2010后编译报错

error C3861: “InitializeCriticalSectionAndSpinCount”: 找不到标识符

定位到atlcore.h文件,这是系统文件没有做任何更改,不该有错的呀。主要还是版本兼容性问题。

修改方法:

新建一个targetver.h头文件,复制以下代码:

#pragma once

// Including SDKDDKVer.h defines the highest available Windows platform.

// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.

#include <SDKDDKVer.h>


然后在工程的stdafx.h的顶部添加 include"targetver.h"。

重新编译即可。



error C3861: “InitializeCriticalSectionAndSpinCount”: 找不到标识符

标签:vs2010

原文地址:http://blog.csdn.net/xiao_lxl/article/details/45533273

(2)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!