我试了两种方法:第一种是Not using precomiled Headers 第二种是Use precomiled header file 并且加了#include "Stdafx.h" 但是还是不行,还是出现fatal error C1010: unexpected end of file while looking for precompiled head。
程序如下:
#include "StdAfx.h"
#include "Sa7134Capture.h"
#include "DSStream.h"
int main(int argc, char* argv[])
{ VCAInitSdk( HWND hWndMain, BOOL bInitVidDev = TRUE, BOOL bInitAudDev = FALSE );
}
其中VCAInitSdk为视频卡vc4000的初始化函数,已经在Sa7134Capture.h中定义过了。请各位高手、大虾帮帮忙,不甚感激!
显示fatal error C1010怎么处理?
在编译VC++6.0是,出现fatal error C1010: unexpected end of file while looking for precompiled header directive 的错误.解决方法:如果发生错误的文件是由其他的C代码文件添加进入当前工程而引起的,则Alt+F7进入当前工程的 Settings,选择C\/C++选项卡,从Category组合框中选中Precompiled Headers,选择N...
fatal error C1010: unexpected end of file while looking for precomp...
解决方案1: 右键单击项目工程中的cpp文件,在菜单Project->Settings->C\/C++->Precompile Header,设置为第一项:Not using precompile headers。解决方案2:在.cpp文件开头添加包含文件stdafx.h。 #include"stdafx.h"
...C1010: unexpected end of file while looking for precompi_百度...
在project->setting->c\/c++ ->category里选 precompiled header 然后在下面选not using precompiled header
fatal error C1010: unexpected end of file while looking for precomp...
源文件没有正确结尾,可能是左后少了个大括号或者分号 如果是MFC工程并且是自己手动添加了一个类,则可能是因为类的cpp文件中开头少了这么一句#include <stdafx.h>
unexpected end of file while looking for
fatal error C1010: unexpected end of file while looking for precompiled header directive 这是由于缺少头文件造成的。很多人有时候会遇到这样的错误 解决方法很简单,只需要在头部添加头文件#include "stdafx.h"就可以了。这是效果图。现在这个问题没有了。
fatal error C1010: unexpected end of file while looking for precomp...
加头文件 #include"stdafx.h"因为,你设置了预编译,而编译器通过一个头文件stdafx.h来使用预编译头文件。当然,你也可以取消预编译。
c语言中syntax error at end of input 是什么错误
1、fatal error C1010: unexpected end of file while looking for precompiled header directive。寻找预编译头文件路径时遇到了不该遇到的文件尾。(一般是没有#include "stdafx.h")2、fatal error C1083: Cannot open include file: 'R…….h': No such file or directory 不能打开包含文件“R…...
fatal error C1010: unexpected end of file while looking for precomp...
我觉得可能是因为你不慎编辑错了某个头文件.错误信息的意思是它的意思是头文件结尾的地方不应该是结尾.和你编译C程序时如果大括号不匹配等情况下出现此错误是一回事,所以建议针对该头文件仔细查查.如果出错的文件是C++系统的头文件,可能需要从其它同样的系统中复制一份过来了....
fatal error C1010: unexpected end of file while looking for precomp...
把Debug或者Release目录删掉重新编译
...C1010: unexpected end of file while looking for precompiled h...
include <stdio.h>#include <stdlib.h>void main() {FILE *infp,*outfp;char ch;if((infp = fopen("c:\\\\infile.c","r")) == NULL) {printf("Cannot open this infile. \\n");exit(0);}if((outfp = fopen("c:\\\\outfile.c","w")) == NULL) {printf("Cannot open this ...