提示的错误是:error LNK2001: unresolved external symbol "protected: long __cdecl GPSResd1::OnGpsDeviceStateNotify(unsigned int,long)" (?OnGpsDeviceStateNotify@GPSResd1@@IAAJIJ@Z)
程序是这么写的:
PostMessage(pMainFrame->GetActiveView()->GetSafeHwnd(),NEWPOSITION, 0, 0);
然后自定义一个
ON_MESSAGE(NEWPOSITION, OnGpsPositionNotify)
在头文件中定义为:
afx_msg LRESULT OnGpsPositionNotify(WPARAM wParam, LPARAM lParam);
然后定义OnGpsPositionNotify函数,在编译的时候出现了链接错误,各位大侠帮忙看下
用的是OnGpsDeviceStateNotify
定义的是OnGpsPositionNotify 当然找不到定义了。。。。。