Error LNK2019: Unresolved External Symbol in Visual Studio [duplicate]

只愿长相守 提交于 2019-11-29 13:44:16

I was getting this error after adding the include files and linking the library. It was because the lib was built with non-unicode and my application was unicode. Matching them fixed it.

When you have everything #included, an unresolved external symbol is often a missing * or & in the declaration or definition of a function.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!