zsh_7769
驱动小牛
驱动小牛
  • 注册日期2004-04-15
  • 最后登录2005-12-06
  • 粉丝0
  • 关注0
  • 积分0分
  • 威望0点
  • 贡献值0点
  • 好评度0点
  • 原创分0分
  • 专家分0分
阅读:973回复:1

编译出现的错误,郁闷!

楼主#
更多 发布于:2004-11-11 14:39
编译程序时出现这样的错误,该怎么解决啊?
"c:program filesmicrosoft visual studiovc98mfcincludeafxver_.h(130) : fatal error C1189: #error : Please use the /MD switch for _AFXDLL builds"

chang_nicolas
驱动小牛
驱动小牛
  • 注册日期2004-08-26
  • 最后登录2007-03-29
  • 粉丝0
  • 关注0
  • 积分370分
  • 威望39点
  • 贡献值0点
  • 好评度34点
  • 原创分0分
  • 专家分0分
沙发#
发布于:2004-11-12 13:49
// C1189.cpp
#undef _WIN32

#if !defined(_WIN32)
#error _WIN32 must be defined   // C1189
#endif

int main() {
   return 0;
}
You may also see this error if you build an ATL project with the /robust MIDL compiler option. /robust is only for use when building for a Windows 2000 or later machine. So, either remove /robust or change this line in the dlldatax.c file:
#define _WIN32_WINNT 0x0400   //for WinNT 4.0 or Win95 with DCOM
to
#define _WIN32_WINNT 0x0500   //for WinNT 4.0 or Win95 with DCOM
游客

返回顶部