本文介绍了预编译头错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

你能告诉我这个错误的解决方案是什么......



警告C4627: '#includeCDragDrop.h':在寻找预编译头时使用跳过





提前致谢

Vivek Chauhan

hi all,
can you tell me what is the solution of this error...

warning C4627: '#include "CDragDrop.h"': skipped when looking for precompiled header use


Thanks in advance
Vivek Chauhan

推荐答案

#include "CDragDrop.h"
#include "stdafx.h"





解决问题,写完 #includestdafx.h声明。

它应该是这样的:



#includestdafx.h

#includeCDragDrop.h



to fix the problem, write all the file inclusions after the #include "stdafx.h" statement.
It should be like this:

#include "stdafx.h"
#include "CDragDrop.h"




这篇关于预编译头错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 20:23