当前位置: 代码迷 >> 综合 >> MFC在添加gsoap生成的源文件到工程项目中,出现bug: MFC apps must not #include windows.h
  详细解决方案

MFC在添加gsoap生成的源文件到工程项目中,出现bug: MFC apps must not #include windows.h

热度:31   发布时间:2023-12-16 02:22:31.0

问题:MFC在添加gsoap生成的源文件到工程项目中,出现bug: MFC apps must not #include <windows.h>

解决方案:经研究是因为在stdsoap2.cpp和XXXProxy.cpp文件中引入stdafx.h时没把#include "stdafx.h"放在第一行,所以解决方案就是应该首先包含头文件#include "stdafx.h",重新编译一切OK了!!!

  相关解决方案