Visual Studio 2005 移植 - WINVER,warning C4996, error LINK1104
1、WINVER
Compile result:
WINVER not defined. Defaulting to 0x0502 (Windows Server 2003)
windows server 2003
winver>=0x0502
windows xp
winver>=0x0501
windows 2000
winver>=0x0500
windows nt 4.0
winver>=0x0400
windows me
winver>=0x0500
windows 98
winver>=0x0410
windows 95
winver>=0x0400
2、編譯警告:warning C4996 與 Security Enhancements in the CRT
將過去的工程用VS2005打開的時候。你有可能會遇到一大堆的警告:warning C4996。
好比:
warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use
_CRT_SECURE_NO_WARNINGS. See online help for details.
warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation,
use _CRT_SECURE_NO_WARNINGS.
緣由是Visual C++ 2005使用了更加安全的run-time library routines。
新的Security CRT functions(就是那些帶有「_s」後綴的函數):
http://msdn2.microsoft.com/en-us/library/wd3wzwts(VS.80).aspx
那麼如何搞定這些警告呢:
方法一:將原來的舊函數替換成新的Security CRT functions。
方法二:用如下方法屏蔽這個警告。
1.在預編譯頭文件stdafx.h裏(注意:必定要在沒有include任何頭文件以前)定義下面的宏:
#define _CRT_SECURE_NO_DEPRECATE
2.#param warning(disable:4996)
3.更改預處理定義:
項目->屬性->配置屬性->C/C++ -> 預處理器 -> 預處理器定義,增長_CRT_SECURE_NO_DEPRECATE
方法三:方法二沒有使用新的更安全的CRT函數,顯然不是一個值得推薦的方法,但是你又不想一個一個地改,那麼還有一個更方便的方法:
在預編譯頭文件stdafx.h裏(一樣要在沒有include任何頭文件以前)定義下面的宏:
#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
在連接的時候便會自動將舊函數替換成Security CRT functions。
注意:這個方法雖然使用了新的函數,可是不能消除警告(緣由見紅字),你還得同時使用方法二。。。
3、link error 1104
緣由:當從vc6移植到.net時,會致使這個連接錯誤!
解決:項目屬性->配置屬性->連接器->輸入->忽略特定庫,加入libcd.lib;或直接在命令行中加入: /nodefaultlib:"libcd.lib"
注意:是不是libcd.lib,與C/C++屬性中的「代碼生成」選項相關
參考: Security Enhancements in the CRT : http://msdn2.microsoft.com/en-us/library/8ef0s5kh(VS.80).aspx Secure Template Overloads : http://msdn2.microsoft.com/en-us/library/ms175759(VS.80).aspx