添加_UNICODE后的链接错误
刚下载了一个示例程序,在Debug模式下,当选用MFC动态链接库时,Build出现如下错误:
LINK : fatal error LNK1104: cannot open file "mfc42ud.lib"
Error executing link.exe.
当选用MFC静态库时,Build出现如下错误:
LINK : fatal error LNK1104: cannot open file "uafxcwd.lib"
Error executing link.exe.
在Release模式下,上面两个错误变成了:
LINK : fatal error LNK1104: cannot open file "mfc42u.lib"
Error executing link.exe.
LINK : fatal error LNK1104: cannot open file "uafxcw.lib"
Error executing link.exe.
后来在Project Settings中将C/C++页中的预处理定义中的_UNICODE去掉,重新Build错误就没了。不知是什么原因不能使用_UNICODE,且缺少的这几个文件又是怎么回事呢?望高手指教。