【转】fatal error C1010: unexpected end of file解决方案

来源:互联网 发布:东华软件股份公司股票 编辑:程序博客网 时间:2024/04/27 18:50

在编译VC++6.0是,出现
fatal error C1010: unexpected end of file while looking for precompiled header directive

问题详细解释:
致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的头文件。

问题一般发生在:
通过添加文件的方式,添加了一些cpp文件到一个MFC的程序,但该cpp文件并不是MFC,是标准C++的。

解决方案1:
右键点击项目工程中的该cpp文件,在菜单Project 》Settings里C++页面的Precomplie Header,设置为第一项:Not using precompiled headers。

解决方案2:
在.cpp文件开头添加包含文件stdafx.h。

#include "stdafx.h"

 

http://www.cunyoulu.com/xinxi/showxinxi.php?xinxiid=838

原创粉丝点击