|
error LNK2019: 无法解析的外部符号 "public: int __cdecl CWmDllTestApp::Add(int,int)" (?Add@CWmDllTestApp@@QAAHHH@Z),该符号在函数 "public: void __cdecl CTestWmDllView::OnAdd(void)" (?OnAdd@CTestWmDllView@@QAAXXZ) 中被引用
error LNK2019: 无法解析的外部符号 "public: __cdecl CWmDllTestApp::CWmDllTestApp(void)" (??0CWmDllTestApp@@QAA@XZ),该符号在函数 "public: void __cdecl CTestWmDllView::OnAdd(void)" (?OnAdd@CTestWmDllView@@QAAXXZ) 中被引用
error LNK2019: 无法解析的外部符号 "public: int __cdecl CWmDllTestApp::Multiply(int,int)" (?Multiply@CWmDllTestApp@@QAAHHH@Z),该符号在函数 "public: void __cdecl CTestWmDllView::OnMultiply(void)" (?OnMultiply@CTestWmDllView@@QAAXXZ) 中被引用
1>Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\Debug\TestWmDll.exe : fatal error LNK1120: 3 个无法解析的外部命令
1>生成日志保存在“file://e:\My Program\TestWmDll\TestWmDll\Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\Debug\BuildLog.htm”
1>TestWmDll - 4 个错误,0 个警告
========== 生成: 0 已成功, 1 已失败, 0 最新, 0 已跳过 ==========
类是这样定义的
class __declspec(dllexport) CWmDllTestApp : public CWinApp
{
public:
CWmDllTestApp();
int Add(int n1, int n2);
int Multiply(int n1, int n2);
// 重写
public:
virtual BOOL InitInstance();
DECLARE_MESSAGE_MAP()
};
|
|