背景:MFC中一个project App需引用另一个project Dll中的其中一个类的方法。
错误信息:
error LNK1120: 1 unresolved externals
error LNK2019: unresolved external symbol "public: static void __cdecl myLog::Test(void)" (?Test@myLog@@SAXXZ) referenced in function "public: void __cdecl CMFCTestDlg::OnBnClickedOk(void)" (?OnBnClickedOk@CMFCTestDlg@@QEAAXXZ)
解决方案:
1.新建一个公用的.h文件,如BasicLib.h
#ifdef BASICLIB_EXPORTS
#define BASICLIB_API __declspec(dllexport)
#else
#define BASICLIB_API __declspec(dllimport)
#endif
也可不创建新.h头文件,将上面的文字copy至所使用类的.h文件中。
2.在用到的类.h文件中include BasicLib.h文件【若没有新创建公用头文件,这步可省略】,将该类标记为BASICLIB_API.
e.g. Class BASICLIB_API MyTest{}
3. Project Dll properties->Configuration Properties –> C/C++ –> Preprocessor –> Preprocessor Definitions
增加:BASICLIB_EXPORTS
4. 重新Build Project Dll,OK.
参考:http://wordpress.wongpakm.com/2014/08/13/linking-a-c-dll-of-a-solution-in-visual-studio-2012/