Well, I get this warning when linking a lib which was compiled using an unicode character set while my project uses a multi-byte charset.
1>LINK : warning LNK4098: defaultlib 'mfc110u.lib' conflicts with use of other libs; use /NODEFAULTLIB:library
1>LINK : warning LNK4098: defaultlib 'mfcs110u.lib' conflicts with use of other libs; use /NODEFAULTLIB:library
(Note, other libs like msvcrt
etc. are not involved) My question is how to handle this issue. Can I simply ignore it or must I add /NODEFAULTLIB:lib (mfc110u.lib or mfc110.lib???) in any case?
Thanks in advance