Compiling erro C2061 ( identifier 'STAT_CHUNK')问题

来源:互联网 发布:褪黑素 知乎 编辑:程序博客网 时间:2024/06/09 21:09

Compiling erro C2061 ( identifier ‘STAT_CHUNK’)

错误:
[cpp] view plain copy print?

error C2061: syntax error : identifier ‘STAT_CHUNK’
…………..
解决:应该是版本的问题,检查你的项目目录下的filter.h文件,重命名。重编,OK

因为filter.h文件是windows kit下sdk内的文件,一般重命名自己的filter.h文件即可解决。如果不想重命名,则需要将系统默认环境变量(IncludePath)includedirectory(IncludePath)是vs默认的系统环境变量包含系统include path,可在属性宏里具体查看。

ref:
1、Compiling erro C2061 with 2010 beta 2

0 0