VS2003转VS2010 fatal error C1189: #error
生活随笔
收集整理的這篇文章主要介紹了
VS2003转VS2010 fatal error C1189: #error
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
我自己的mfc的demo要轉換編譯環境出現以下編譯錯誤:
VS2010編譯錯誤:fatal error C1189: #error : This file requires _WIN32_WINNT to be #defined at least to 0x0403...的解決方法
在google中找到解決辦法,
_WIN32_WINNT這個宏對應定義的系統的版本號,如果太低的話,編譯器就會認為代碼無法在當前的系統上編譯。
? 說了原因,下面是修改方法,就是在stdafx.h文件中修改相關的定義,修改完后的效果應該如下:
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later. #define WINVER 0x0501 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later. #endif #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later. #endif #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later. #define _WIN32_WINDOWS 0x0501 // Change this to the appropriate value to target Windows Me or later. #endif #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later. #define _WIN32_IE 0x0601 // Change this to the appropriate value to target IE 5.0 or later. #endif |
但編譯后又出現以下問題:
1> stdafx.cpp 1>d:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin.h(4024): error C2061: 語法錯誤: 標識符“PSCROLLBARINFO” 1>d:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin4.inl(184): error C2065: “PSCROLLBARINFO”: 未聲明的標識符 1>d:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin4.inl(184): error C2146: 語法錯誤: 缺少“)”(在標識符“pScrollInfo”的前面) 1>d:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin4.inl(184): error C2761: “BOOL CScrollBar::GetScrollBarInfo(void) const”: 不允許成員函數重新聲明 1>d:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin4.inl(184): error C2059: 語法錯誤:“)” 1>d:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin4.inl(185): error C2143: 語法錯誤 : 缺少“;”(在“{”的前面) 1>d:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin4.inl(185): error C2447: “{”: 缺少函數標題(是否是老式的形式表?)比較郁悶。。。。
#ifndef WINVER // 允許使用 Windows 95 和 Windows NT 4 或更高版本的特定功能。 //#define WINVER 0x0400 //為 Windows98 和 Windows 2000 及更新版本改變為適當的值。 剛剛此處沒有修改 #define WINVER 0x0501 #endif現在應該正常。
參考網友:
http://www.cnblogs.com/madhenry/archive/2011/06/29/2093678.html
http://blog.csdn.net/cs_21cn/article/details/7925455
?
轉載于:https://www.cnblogs.com/logy/p/3358484.html
總結
以上是生活随笔為你收集整理的VS2003转VS2010 fatal error C1189: #error的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Central Europe Regio
- 下一篇: 读写信号量