Link to home
Start Free TrialLog in
Avatar of shaf81
shaf81

asked on

VC++ mfc convert from 'LPTSTR' to 'const char *'

I passed values for below function:-
 
HANDLE PortSIP_initialize(SIPCallbackEvent * callbackEvent,
                                      int maxLines,
                                      const char * userName,
                                      const char * authName,
                                      const char * password,
                                      const char * agent,
                                      const char * localIP,
                                      int localSIPPort,
                                      const char * userDomain,
                                      const char * proxyServer,
                                      int proxyServerPort,
                                      const char * outboundServer,
                                      int outboundServerPort,
                                      const char * STUNServer,
                                      int STUNServerPort);
Below is the passed values:-

m_siplib = PortSIP_initialize(m_sipevent, 8, (LPTSTR)(LPCTSTR)m_username,
            (LPTSTR)(LPCTSTR)m_username,
            (LPTSTR)(LPCTSTR)m_password,
            "PortSIP VoIP SDK 4.0",
            localIP, SIPPort,
            /*(LPTSTR)(LPCTSTR)m_UserDomain*/"",
            (LPTSTR)(LPCTSTR)m_sipserver,
            /*m_serverport*/"",
            /*(LPTSTR)(LPCTSTR)m_OutboundServer*/"",
            /*m_OutboundServerPort*/"",
            /*(LPTSTR)(LPCTSTR)m_StunServer*/"",/*m_STUNSERVERPORT*/            
            m_stunserverport);

When I compiled then give below Error message in code.

error C2664: 'PortSIP_initialize' : cannot convert parameter 3 from 'LPTSTR' to 'const char *' and  when I double clicked the error the error code pointer point to the last parameter.
When I  hard code the parameter 3 with "  "janith"  "  then give error message,

'PortSIP_initialize' : cannot convert parameter 4 from 'LPTSTR' to 'const char *'

Then also  error pointer  point to  last variable.

I use "Visual Studio 2005"  with Operating system "Windows XP" and use "MFC" with Vsual C++.  

How can I find the cause ? and fix it ?

sample Output
 
1>------ Build started: Project: dialler_sample_1, Configuration: Debug Win32 ------
1>Compiling...
1>dialler_sample_1Dlg.cpp
1>e:\sip\sip_2\dialler_sample_1\dialler_sample_1\dialler_sample_1dlg.cpp(227) : warning C4244: 'argument' : conversion from 'time_t' to 'unsigned int', possible loss of data
1>e:\sip\sip_2\dialler_sample_1\dialler_sample_1\dialler_sample_1dlg.cpp(384) : error C2664: 'PortSIP_initialize' : cannot convert parameter 4 from 'LPTSTR' to 'const char *'
1>        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
1>Build log was saved at "file://e:\sip\sip_2\dialler_sample_1\dialler_sample_1\Debug\BuildLog.htm"
1>dialler_sample_1 - 1 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Open in new window

Avatar of vtladiadi
vtladiadi

what types are m_username and m_password?
Avatar of shaf81

ASKER

Both m_username and m_password variables are "CString" type and both add  as  two text boxes  "value"  variables.
select the  text box->right click and select add varible->select value->type the varible "m_username" in one and "m_password" in another text box.  
try replacing:
(LPTSTR)(LPCTSTR)m_username
with:
(LPCSTR)(LPCTSTR)m_username

and do the same for m_password and m_sipserver

assuming that m_stunserverport is CString you should replace:
m_stunserverport
with:
atoi((LPCSTR)(LPCTSTR)m_stunserverport)
Avatar of shaf81

ASKER

Thank you for your solution.
Avatar of shaf81

ASKER

Output after replacing according to your solution.

1>------ Build started: Project: dialler_sample_1, Configuration: Debug Win32 ------
1>Compiling...
1>dialler_sample_1Dlg.cpp
1>e:\sip\sip_2\new\dialler_sample_1\dialler_sample_1\dialler_sample_1dlg.cpp(227) : warning C4244: 'argument' : conversion from 'time_t' to 'unsigned int', possible loss of data
1>e:\sip\sip_2\new\dialler_sample_1\dialler_sample_1\dialler_sample_1dlg.cpp(384) : warning C4312: 'type cast' : conversion from 'int' to 'LPCTSTR' of greater size
1>e:\sip\sip_2\new\dialler_sample_1\dialler_sample_1\dialler_sample_1dlg.cpp(384) : error C2143: syntax error : missing ')' before ';'
1>Build log was saved at "file://e:\sip\sip_2\new\dialler_sample_1\dialler_sample_1\Debug\BuildLog.htm"
1>dialler_sample_1 - 1 error(s), 2 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

m_siplib = PortSIP_initialize(m_sipevent, 8, (LPCSTR)(LPCTSTR)m_username,
		(LPCSTR)(LPCTSTR)m_username,
		(LPCSTR)(LPCTSTR)m_password,
		"PortSIP VoIP SDK 4.0",
		localIP, SIPPort,
		/*(LPTSTR)(LPCTSTR)m_UserDomain*/"",
		(LPCSTR)(LPCTSTR)m_sipserver,
		/*m_serverport*/123,
		/*(LPTSTR)(LPCTSTR)m_OutboundServer*/"",
		/*m_OutboundServerPort*/123,
		/*(LPTSTR)(LPCTSTR)m_StunServer*/"",/*m_STUNSERVERPORT*/		 
			atoi((LPCSTR)(LPCTSTR)m_stunserverport);

Open in new window

no worries your just missing a parenthesis after m_stunserverport on the last line then it should be good to go so replace:
atoi((LPCSTR)(LPCTSTR)m_stunserverport);
with:
atoi((LPCSTR)(LPCTSTR)m_stunserverport));
Avatar of shaf81

ASKER

Thank you for your solution.
Avatar of shaf81

ASKER

Output after replacing :-

1>------ Build started: Project: dialler_sample_1, Configuration: Debug Win32 ------
1>Linking...
1>libcmtd.lib(dbgheap.obj) : error LNK2005: __CrtSetCheckCount already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(dbghook.obj) : error LNK2005: __crt_debugger_hook already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(invarg.obj) : error LNK2005: __invoke_watson already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(crt0dat.obj) : error LNK2005: _exit already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(crt0dat.obj) : error LNK2005: __exit already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(crt0dat.obj) : error LNK2005: __cexit already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(crt0dat.obj) : error LNK2005: __amsg_exit already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(crt0dat.obj) : error LNK2005: __initterm_e already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(setlocal.obj) : error LNK2005: __configthreadlocale already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(tidtable.obj) : error LNK2005: __encode_pointer already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(tidtable.obj) : error LNK2005: __decode_pointer already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(crt0init.obj) : error LNK2005: ___xi_a already defined in msvcrtd.lib(cinitexe.obj)
1>libcmtd.lib(crt0init.obj) : error LNK2005: ___xi_z already defined in msvcrtd.lib(cinitexe.obj)
1>libcmtd.lib(crt0init.obj) : error LNK2005: ___xc_a already defined in msvcrtd.lib(cinitexe.obj)
1>libcmtd.lib(crt0init.obj) : error LNK2005: ___xc_z already defined in msvcrtd.lib(cinitexe.obj)
1>libcmtd.lib(hooks.obj) : error LNK2005: "void __cdecl terminate(void)" (?terminate@@YAXXZ) already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(winxfltr.obj) : error LNK2005: __XcptFilter already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(mlock.obj) : error LNK2005: __lock already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(mlock.obj) : error LNK2005: __unlock already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(errmode.obj) : error LNK2005: ___set_app_type already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(dbgrptw.obj) : error LNK2005: __CrtDbgReportW already defined in msvcrtd.lib(MSVCR80D.dll)
1>libcmtd.lib(atox.obj) : error LNK2005: _atoi already defined in msvcrtd.lib(MSVCR80D.dll)
1>LINK : warning LNK4098: defaultlib 'msvcrtd.lib' conflicts with use of other libs; use /NODEFAULTLIB:library
1>msvcrtd.lib(cinitexe.obj) : warning LNK4098: defaultlib 'libcmtd.lib' conflicts with use of other libs; use /NODEFAULTLIB:library
1>libcmtd.lib(crt0.obj) : error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup
1>E:\sip\sip_2\new\dialler_sample_1\Debug\dialler_sample_1.exe : fatal error LNK1120: 1 unresolved externals
1>Build log was saved at "file://e:\sip\sip_2\new\dialler_sample_1\dialler_sample_1\Debug\BuildLog.htm"
1>dialler_sample_1 - 24 error(s), 2 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

m_siplib = PortSIP_initialize(m_sipevent, 8, (LPCSTR)(LPCTSTR)m_username,
		(LPCSTR)(LPCTSTR)m_username,
		(LPCSTR)(LPCTSTR)m_password,
		"PortSIP VoIP SDK 4.0",
		localIP, SIPPort,
		/*(LPTSTR)(LPCTSTR)m_UserDomain*/"",
		(LPCSTR)(LPCTSTR)m_sipserver,
		/*m_serverport*/123,
		/*(LPTSTR)(LPCTSTR)m_OutboundServer*/"",
		/*m_OutboundServerPort*/123,
		/*(LPTSTR)(LPCTSTR)m_StunServer*/"",/*m_STUNSERVERPORT*/		 
			atoi((LPCSTR)(LPCTSTR)m_stunserverport));

Open in new window

If you could go to Project in the menu of visual studio and go to your projects properties and then set "Ignore all default libraries" to "yes".  this setting is located under Configuration Properties->Linker->Input.

let me know how the output ends up.
Avatar of shaf81

ASKER

Thank you for your  effort.

Sample output:-


1>------ Build started: Project: dialler_sample_1, Configuration: Debug Win32 ------
1>Compiling...
1>stdafx.cpp
1>Compiling...
1>dialler_sample_1.cpp
1>Generating Code...
1>Skipping... (no relevant changes detected)
1>dialler_sample_1Dlg.cpp
1>Linking...
1>LINK : error LNK2001: unresolved external symbol _wWinMainCRTStartup
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol __afxForceEXCLUDE
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol __afxForceEXCLUDE
1>stdafx.obj : error LNK2001: unresolved external symbol __afxForceEXCLUDE
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol __afxForceSTDAFX
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol __afxForceSTDAFX
1>stdafx.obj : error LNK2001: unresolved external symbol __afxForceSTDAFX
1>stdafx.obj : error LNK2001: unresolved external symbol "void __cdecl operator delete(void *)" (??3@YAXPAX@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "void __cdecl operator delete(void *)" (??3@YAXPAX@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "void __cdecl operator delete(void *)" (??3@YAXPAX@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "void __cdecl operator delete(void *)" (??3@YAXPAX@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "void __cdecl operator delete(void *)" (??3@YAXPAX@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: static struct AFX_MSGMAP const * __stdcall CWinApp::GetThisMessageMap(void)" (?GetThisMessageMap@CWinApp@@KGPBUAFX_MSGMAP@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: void __thiscall CWinApp::OnHelp(void)" (?OnHelp@CWinApp@@IAEXXZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol __RTC_CheckEsp referenced in function "protected: virtual struct AFX_MSGMAP const * __thiscall Cdialler_sample_1App::GetMessageMap(void)const " (?GetMessageMap@Cdialler_sample_1App@@MBEPBUAFX_MSGMAP@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol __RTC_CheckEsp
1>stdafx.obj : error LNK2001: unresolved external symbol __RTC_CheckEsp
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol __RTC_Shutdown
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol __RTC_Shutdown
1>stdafx.obj : error LNK2001: unresolved external symbol __RTC_Shutdown
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol __RTC_InitBase
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __RTC_InitBase referenced in function "public: __thiscall CAboutDlg::CAboutDlg(void)" (??0CAboutDlg@@QAE@XZ)
1>stdafx.obj : error LNK2001: unresolved external symbol __RTC_InitBase
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: __thiscall CWinApp::CWinApp(wchar_t const *)" (??0CWinApp@@QAE@PB_W@Z) referenced in function "public: __thiscall Cdialler_sample_1App::Cdialler_sample_1App(void)" (??0Cdialler_sample_1App@@QAE@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "const type_info::`vftable'" (??_7type_info@@6B@)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "const type_info::`vftable'" (??_7type_info@@6B@)
1>stdafx.obj : error LNK2001: unresolved external symbol "const type_info::`vftable'" (??_7type_info@@6B@)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual struct CRuntimeClass * __thiscall CWinApp::GetRuntimeClass(void)const " (?GetRuntimeClass@CWinApp@@UBEPAUCRuntimeClass@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CObject::Serialize(class CArchive &)" (?Serialize@CObject@@UAEXAAVCArchive@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CObject::Serialize(class CArchive &)" (?Serialize@CObject@@UAEXAAVCArchive@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::AssertValid(void)const " (?AssertValid@CWinApp@@UBEXXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::Dump(class CDumpContext &)const " (?Dump@CWinApp@@UBEXAAVCDumpContext@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::OnCmdMsg(unsigned int,int,void *,struct AFX_CMDHANDLERINFO *)" (?OnCmdMsg@CCmdTarget@@UAEHIHPAXPAUAFX_CMDHANDLERINFO@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CCmdTarget::OnFinalRelease(void)" (?OnFinalRelease@CCmdTarget@@UAEXXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::IsInvokeAllowed(long)" (?IsInvokeAllowed@CCmdTarget@@UAEHJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::IsInvokeAllowed(long)" (?IsInvokeAllowed@CCmdTarget@@UAEHJ@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::GetDispatchIID(struct _GUID *)" (?GetDispatchIID@CCmdTarget@@UAEHPAU_GUID@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::GetDispatchIID(struct _GUID *)" (?GetDispatchIID@CCmdTarget@@UAEHPAU_GUID@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual unsigned int __thiscall CCmdTarget::GetTypeInfoCount(void)" (?GetTypeInfoCount@CCmdTarget@@UAEIXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual unsigned int __thiscall CCmdTarget::GetTypeInfoCount(void)" (?GetTypeInfoCount@CCmdTarget@@UAEIXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual class CTypeLibCache * __thiscall CCmdTarget::GetTypeLibCache(void)" (?GetTypeLibCache@CCmdTarget@@UAEPAVCTypeLibCache@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual class CTypeLibCache * __thiscall CCmdTarget::GetTypeLibCache(void)" (?GetTypeLibCache@CCmdTarget@@UAEPAVCTypeLibCache@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CCmdTarget::GetTypeLib(unsigned long,struct ITypeLib * *)" (?GetTypeLib@CCmdTarget@@UAEJKPAPAUITypeLib@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CCmdTarget::GetTypeLib(unsigned long,struct ITypeLib * *)" (?GetTypeLib@CCmdTarget@@UAEJKPAPAUITypeLib@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_OLECMDMAP const * __thiscall CCmdTarget::GetCommandMap(void)const " (?GetCommandMap@CCmdTarget@@MBEPBUAFX_OLECMDMAP@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_OLECMDMAP const * __thiscall CCmdTarget::GetCommandMap(void)const " (?GetCommandMap@CCmdTarget@@MBEPBUAFX_OLECMDMAP@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_DISPMAP const * __thiscall CCmdTarget::GetDispatchMap(void)const " (?GetDispatchMap@CCmdTarget@@MBEPBUAFX_DISPMAP@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_DISPMAP const * __thiscall CCmdTarget::GetDispatchMap(void)const " (?GetDispatchMap@CCmdTarget@@MBEPBUAFX_DISPMAP@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_CONNECTIONMAP const * __thiscall CCmdTarget::GetConnectionMap(void)const " (?GetConnectionMap@CCmdTarget@@MBEPBUAFX_CONNECTIONMAP@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_CONNECTIONMAP const * __thiscall CCmdTarget::GetConnectionMap(void)const " (?GetConnectionMap@CCmdTarget@@MBEPBUAFX_CONNECTIONMAP@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_INTERFACEMAP const * __thiscall CCmdTarget::GetInterfaceMap(void)const " (?GetInterfaceMap@CCmdTarget@@MBEPBUAFX_INTERFACEMAP@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_EVENTSINKMAP const * __thiscall CCmdTarget::GetEventSinkMap(void)const " (?GetEventSinkMap@CCmdTarget@@MBEPBUAFX_EVENTSINKMAP@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_EVENTSINKMAP const * __thiscall CCmdTarget::GetEventSinkMap(void)const " (?GetEventSinkMap@CCmdTarget@@MBEPBUAFX_EVENTSINKMAP@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::OnCreateAggregates(void)" (?OnCreateAggregates@CCmdTarget@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::OnCreateAggregates(void)" (?OnCreateAggregates@CCmdTarget@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual struct IUnknown * __thiscall CCmdTarget::GetInterfaceHook(void const *)" (?GetInterfaceHook@CCmdTarget@@UAEPAUIUnknown@@PBX@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual struct IUnknown * __thiscall CCmdTarget::GetInterfaceHook(void const *)" (?GetInterfaceHook@CCmdTarget@@UAEPAUIUnknown@@PBX@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CCmdTarget::GetExtraConnectionPoints(class CPtrArray *)" (?GetExtraConnectionPoints@CCmdTarget@@MAEHPAVCPtrArray@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CCmdTarget::GetExtraConnectionPoints(class CPtrArray *)" (?GetExtraConnectionPoints@CCmdTarget@@MAEHPAVCPtrArray@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "protected: virtual struct IConnectionPoint * __thiscall CCmdTarget::GetConnectionHook(struct _GUID const &)" (?GetConnectionHook@CCmdTarget@@MAEPAUIConnectionPoint@@ABU_GUID@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual struct IConnectionPoint * __thiscall CCmdTarget::GetConnectionHook(struct _GUID const &)" (?GetConnectionHook@CCmdTarget@@MAEPAUIConnectionPoint@@ABU_GUID@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::Run(void)" (?Run@CWinApp@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::PreTranslateMessage(struct tagMSG *)" (?PreTranslateMessage@CWinThread@@UAEHPAUtagMSG@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::PumpMessage(void)" (?PumpMessage@CWinThread@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::OnIdle(long)" (?OnIdle@CWinApp@@UAEHJ@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::IsIdleMessage(struct tagMSG *)" (?IsIdleMessage@CWinThread@@UAEHPAUtagMSG@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::ExitInstance(void)" (?ExitInstance@CWinApp@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWinApp::ProcessWndProcException(class CException *,struct tagMSG const *)" (?ProcessWndProcException@CWinApp@@UAEJPAVCException@@PBUtagMSG@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::ProcessMessageFilter(int,struct tagMSG *)" (?ProcessMessageFilter@CWinThread@@UAEHHPAUtagMSG@@@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual class CWnd * __thiscall CWinThread::GetMainWnd(void)" (?GetMainWnd@CWinThread@@UAEPAVCWnd@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinThread::Delete(void)" (?Delete@CWinThread@@UAEXXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::InitLibId(void)" (?InitLibId@CWinApp@@UAEXXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::Register(void)" (?Register@CWinApp@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::Unregister(void)" (?Unregister@CWinApp@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual class CDocument * __thiscall CWinApp::OpenDocumentFile(wchar_t const *)" (?OpenDocumentFile@CWinApp@@UAEPAVCDocument@@PB_W@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::AddToRecentFileList(wchar_t const *)" (?AddToRecentFileList@CWinApp@@UAEXPB_W@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::InitApplication(void)" (?InitApplication@CWinApp@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::SaveAllModified(void)" (?SaveAllModified@CWinApp@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::DoMessageBox(wchar_t const *,unsigned int,unsigned int)" (?DoMessageBox@CWinApp@@UAEHPB_WII@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::DoWaitCursor(int)" (?DoWaitCursor@CWinApp@@UAEXH@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::OnDDECommand(wchar_t *)" (?OnDDECommand@CWinApp@@UAEHPA_W@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::WinHelpW(unsigned long,unsigned int)" (?WinHelpW@CWinApp@@UAEXKI@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::HtmlHelpW(unsigned long,unsigned int)" (?HtmlHelpW@CWinApp@@UAEXKI@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::WinHelpInternal(unsigned long,unsigned int)" (?WinHelpInternal@CWinApp@@UAEXKI@Z)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual struct HINSTANCE__ * __thiscall CWinApp::LoadAppLangResourceDLL(void)" (?LoadAppLangResourceDLL@CWinApp@@UAEPAUHINSTANCE__@@XZ)
1>dialler_sample_1.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::LoadSysPolicies(void)" (?LoadSysPolicies@CWinApp@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: static void __stdcall CObject::operator delete(void *)" (??3CObject@@SGXPAX@Z) referenced in function "public: virtual void * __thiscall Cdialler_sample_1App::`scalar deleting destructor'(unsigned int)" (??_GCdialler_sample_1App@@UAEPAXI@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: static void __stdcall CObject::operator delete(void *)" (??3CObject@@SGXPAX@Z)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall CWinApp::~CWinApp(void)" (??1CWinApp@@UAE@XZ) referenced in function "public: virtual __thiscall Cdialler_sample_1App::~Cdialler_sample_1App(void)" (??1Cdialler_sample_1App@@UAE@XZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual int __thiscall CDialog::DoModal(void)" (?DoModal@CDialog@@UAEHXZ) referenced in function "public: virtual int __thiscall Cdialler_sample_1App::InitInstance(void)" (?InitInstance@Cdialler_sample_1App@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::DoModal(void)" (?DoModal@CDialog@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "protected: void __thiscall CWinApp::SetRegistryKey(wchar_t const *)" (?SetRegistryKey@CWinApp@@IAEXPB_W@Z) referenced in function "public: virtual int __thiscall Cdialler_sample_1App::InitInstance(void)" (?InitInstance@Cdialler_sample_1App@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "void __cdecl AfxEnableControlContainer(class COccManager *)" (?AfxEnableControlContainer@@YAXPAVCOccManager@@@Z) referenced in function "public: virtual int __thiscall Cdialler_sample_1App::InitInstance(void)" (?InitInstance@Cdialler_sample_1App@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual int __thiscall CWinApp::InitInstance(void)" (?InitInstance@CWinApp@@UAEHXZ) referenced in function "public: virtual int __thiscall Cdialler_sample_1App::InitInstance(void)" (?InitInstance@Cdialler_sample_1App@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol __imp__InitCommonControlsEx@4 referenced in function "public: virtual int __thiscall Cdialler_sample_1App::InitInstance(void)" (?InitInstance@Cdialler_sample_1App@@UAEHXZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol ___security_cookie referenced in function "public: virtual int __thiscall Cdialler_sample_1App::InitInstance(void)" (?InitInstance@Cdialler_sample_1App@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol ___security_cookie
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol ___CxxFrameHandler3 referenced in function __ehhandler$?InitInstance@Cdialler_sample_1App@@UAEHXZ
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol ___CxxFrameHandler3
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol @__security_check_cookie@4 referenced in function __ehhandler$?InitInstance@Cdialler_sample_1App@@UAEHXZ
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol @__security_check_cookie@4
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol @_RTC_CheckStackVars@8 referenced in function "public: virtual int __thiscall Cdialler_sample_1App::InitInstance(void)" (?InitInstance@Cdialler_sample_1App@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol @_RTC_CheckStackVars@8
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall CDialog::~CDialog(void)" (??1CDialog@@UAE@XZ) referenced in function "public: virtual __thiscall Cdialler_sample_1Dlg::~Cdialler_sample_1Dlg(void)" (??1Cdialler_sample_1Dlg@@UAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CDialog::~CDialog(void)" (??1CDialog@@UAE@XZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "void __stdcall `eh vector destructor iterator'(void *,unsigned int,int,void (__thiscall*)(void *))" (??_M@YGXPAXIHP6EX0@Z@Z) referenced in function "public: virtual __thiscall Cdialler_sample_1Dlg::~Cdialler_sample_1Dlg(void)" (??1Cdialler_sample_1Dlg@@UAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "void __stdcall `eh vector destructor iterator'(void *,unsigned int,int,void (__thiscall*)(void *))" (??_M@YGXPAXIHP6EX0@Z@Z)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall CButton::~CButton(void)" (??1CButton@@UAE@XZ) referenced in function "public: virtual __thiscall Cdialler_sample_1Dlg::~Cdialler_sample_1Dlg(void)" (??1Cdialler_sample_1Dlg@@UAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CButton::~CButton(void)" (??1CButton@@UAE@XZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall CSliderCtrl::~CSliderCtrl(void)" (??1CSliderCtrl@@UAE@XZ) referenced in function "public: virtual __thiscall Cdialler_sample_1Dlg::~Cdialler_sample_1Dlg(void)" (??1Cdialler_sample_1Dlg@@UAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CSliderCtrl::~CSliderCtrl(void)" (??1CSliderCtrl@@UAE@XZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall CComboBox::~CComboBox(void)" (??1CComboBox@@UAE@XZ) referenced in function "public: virtual __thiscall Cdialler_sample_1Dlg::~Cdialler_sample_1Dlg(void)" (??1Cdialler_sample_1Dlg@@UAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CComboBox::~CComboBox(void)" (??1CComboBox@@UAE@XZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall CListBox::~CListBox(void)" (??1CListBox@@UAE@XZ) referenced in function "public: virtual __thiscall Cdialler_sample_1Dlg::~Cdialler_sample_1Dlg(void)" (??1Cdialler_sample_1Dlg@@UAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CListBox::~CListBox(void)" (??1CListBox@@UAE@XZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::~CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >(void)" (__imp_??1?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QAE@XZ) referenced in function "public: virtual __thiscall Cdialler_sample_1Dlg::~Cdialler_sample_1Dlg(void)" (??1Cdialler_sample_1Dlg@@UAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::~CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >(void)" (__imp_??1?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QAE@XZ)
1>dialler_sample_1.obj : error LNK2019: unresolved external symbol _atexit referenced in function "void __cdecl `dynamic initializer for 'theApp''(void)" (??__EtheApp@@YAXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: static struct AFX_MSGMAP const * __stdcall CDialog::GetThisMessageMap(void)" (?GetThisMessageMap@CDialog@@KGPBUAFX_MSGMAP@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: __thiscall CDialog::CDialog(unsigned int,class CWnd *)" (??0CDialog@@QAE@IPAVCWnd@@@Z) referenced in function "public: __thiscall CAboutDlg::CAboutDlg(void)" (??0CAboutDlg@@QAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual struct CRuntimeClass * __thiscall CDialog::GetRuntimeClass(void)const " (?GetRuntimeClass@CDialog@@UBEPAUCRuntimeClass@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CDialog::AssertValid(void)const " (?AssertValid@CDialog@@UBEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CDialog::Dump(class CDumpContext &)const " (?Dump@CDialog@@UBEXAAVCDumpContext@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::OnCmdMsg(unsigned int,int,void *,struct AFX_CMDHANDLERINFO *)" (?OnCmdMsg@CDialog@@UAEHIHPAXPAUAFX_CMDHANDLERINFO@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::OnFinalRelease(void)" (?OnFinalRelease@CWnd@@UAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_INTERFACEMAP const * __thiscall CWnd::GetInterfaceMap(void)const " (?GetInterfaceMap@CWnd@@MBEPBUAFX_INTERFACEMAP@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::PreSubclassWindow(void)" (?PreSubclassWindow@CWnd@@UAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::Create(wchar_t const *,wchar_t const *,unsigned long,struct tagRECT const &,class CWnd *,unsigned int,struct CCreateContext *)" (?Create@CWnd@@UAEHPB_W0KABUtagRECT@@PAV1@IPAUCCreateContext@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::CreateEx(unsigned long,wchar_t const *,wchar_t const *,unsigned long,struct tagRECT const &,class CWnd *,unsigned int,void *)" (?CreateEx@CWnd@@UAEHKPB_W0KABUtagRECT@@PAV1@IPAX@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::CreateEx(unsigned long,wchar_t const *,wchar_t const *,unsigned long,int,int,int,int,struct HWND__ *,struct HMENU__ *,void *)" (?CreateEx@CWnd@@UAEHKPB_W0KHHHHPAUHWND__@@PAUHMENU__@@PAX@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::DestroyWindow(void)" (?DestroyWindow@CWnd@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::PreCreateWindow(struct tagCREATESTRUCTW &)" (?PreCreateWindow@CWnd@@UAEHAAUtagCREATESTRUCTW@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::CalcWindowRect(struct tagRECT *,unsigned int)" (?CalcWindowRect@CWnd@@UAEXPAUtagRECT@@I@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::OnToolHitTest(class CPoint,struct tagTOOLINFOW *)const " (?OnToolHitTest@CWnd@@UBEHVCPoint@@PAUtagTOOLINFOW@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual class CScrollBar * __thiscall CWnd::GetScrollBarCtrl(int)const " (?GetScrollBarCtrl@CWnd@@UBEPAVCScrollBar@@H@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::WinHelpW(unsigned long,unsigned int)" (?WinHelpW@CWnd@@UAEXKI@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::HtmlHelpW(unsigned long,unsigned int)" (?HtmlHelpW@CWnd@@UAEXKI@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::WinHelpInternal(unsigned long,unsigned int)" (?WinHelpInternal@CWnd@@UAEXKI@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::ContinueModal(void)" (?ContinueModal@CWnd@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::EndModalLoop(int)" (?EndModalLoop@CWnd@@UAEXH@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::EnsureStdObj(void)" (?EnsureStdObj@CWnd@@UAEJXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accParent(struct IDispatch * *)" (?get_accParent@CWnd@@UAEJPAPAUIDispatch@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accChildCount(long *)" (?get_accChildCount@CWnd@@UAEJPAJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accChild(struct tagVARIANT,struct IDispatch * *)" (?get_accChild@CWnd@@UAEJUtagVARIANT@@PAPAUIDispatch@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accName(struct tagVARIANT,wchar_t * *)" (?get_accName@CWnd@@UAEJUtagVARIANT@@PAPA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accValue(struct tagVARIANT,wchar_t * *)" (?get_accValue@CWnd@@UAEJUtagVARIANT@@PAPA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accDescription(struct tagVARIANT,wchar_t * *)" (?get_accDescription@CWnd@@UAEJUtagVARIANT@@PAPA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accRole(struct tagVARIANT,struct tagVARIANT *)" (?get_accRole@CWnd@@UAEJUtagVARIANT@@PAU2@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accState(struct tagVARIANT,struct tagVARIANT *)" (?get_accState@CWnd@@UAEJUtagVARIANT@@PAU2@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accHelp(struct tagVARIANT,wchar_t * *)" (?get_accHelp@CWnd@@UAEJUtagVARIANT@@PAPA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accHelpTopic(wchar_t * *,struct tagVARIANT,long *)" (?get_accHelpTopic@CWnd@@UAEJPAPA_WUtagVARIANT@@PAJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accKeyboardShortcut(struct tagVARIANT,wchar_t * *)" (?get_accKeyboardShortcut@CWnd@@UAEJUtagVARIANT@@PAPA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accFocus(struct tagVARIANT *)" (?get_accFocus@CWnd@@UAEJPAUtagVARIANT@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accSelection(struct tagVARIANT *)" (?get_accSelection@CWnd@@UAEJPAUtagVARIANT@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::get_accDefaultAction(struct tagVARIANT,wchar_t * *)" (?get_accDefaultAction@CWnd@@UAEJUtagVARIANT@@PAPA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::accSelect(long,struct tagVARIANT)" (?accSelect@CWnd@@UAEJJUtagVARIANT@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::accLocation(long *,long *,long *,long *,struct tagVARIANT)" (?accLocation@CWnd@@UAEJPAJ000UtagVARIANT@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::accNavigate(long,struct tagVARIANT,struct tagVARIANT *)" (?accNavigate@CWnd@@UAEJJUtagVARIANT@@PAU2@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::accHitTest(long,long,struct tagVARIANT *)" (?accHitTest@CWnd@@UAEJJJPAUtagVARIANT@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::accDoDefaultAction(struct tagVARIANT)" (?accDoDefaultAction@CWnd@@UAEJUtagVARIANT@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::put_accName(struct tagVARIANT,wchar_t *)" (?put_accName@CWnd@@UAEJUtagVARIANT@@PA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::put_accValue(struct tagVARIANT,wchar_t *)" (?put_accValue@CWnd@@UAEJUtagVARIANT@@PA_W@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::SetProxy(struct IAccessibleProxy *)" (?SetProxy@CWnd@@UAEJPAUIAccessibleProxy@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWnd::CreateAccessibleProxy(unsigned int,long,long *)" (?CreateAccessibleProxy@CWnd@@UAEJIJPAJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CWnd::OnCommand(unsigned int,long)" (?OnCommand@CWnd@@MAEHIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CWnd::OnNotify(unsigned int,long,long *)" (?OnNotify@CWnd@@MAEHIJPAJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual long (__stdcall** __thiscall CWnd::GetSuperWndProcAddr(void))(struct HWND__ *,unsigned int,unsigned int,long)" (?GetSuperWndProcAddr@CWnd@@MAEPAP6GJPAUHWND__@@IIJ@ZXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::BeginModalState(void)" (?BeginModalState@CWnd@@UAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWnd::EndModalState(void)" (?EndModalState@CWnd@@UAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::PreTranslateMessage(struct tagMSG *)" (?PreTranslateMessage@CDialog@@UAEHPAUtagMSG@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::OnAmbientProperty(class COleControlSite *,long,struct tagVARIANT *)" (?OnAmbientProperty@CWnd@@UAEHPAVCOleControlSite@@JPAUtagVARIANT@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual long __thiscall CWnd::WindowProc(unsigned int,unsigned int,long)" (?WindowProc@CWnd@@MAEJIIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CWnd::OnWndMsg(unsigned int,unsigned int,long,long *)" (?OnWndMsg@CWnd@@MAEHIIJPAJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual long __thiscall CWnd::DefWindowProcW(unsigned int,unsigned int,long)" (?DefWindowProcW@CWnd@@MAEJIIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual void __thiscall CWnd::PostNcDestroy(void)" (?PostNcDestroy@CWnd@@MAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CWnd::OnChildNotify(unsigned int,unsigned int,long,long *)" (?OnChildNotify@CWnd@@MAEHIIJPAJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::CheckAutoCenter(void)" (?CheckAutoCenter@CDialog@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWnd::IsFrameWnd(void)const " (?IsFrameWnd@CWnd@@UBEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CWnd::CreateControlContainer(class COleControlContainer * *)" (?CreateControlContainer@CWnd@@MAEHPAPAVCOleControlContainer@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CWnd::CreateControlSite(class COleControlContainer *,class COleControlSite * *,unsigned int,struct _GUID const &)" (?CreateControlSite@CWnd@@MAEHPAVCOleControlContainer@@PAPAVCOleControlSite@@IABU_GUID@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CDialog::SetOccDialogInfo(struct _AFX_OCC_DIALOG_INFO *)" (?SetOccDialogInfo@CDialog@@MAEHPAU_AFX_OCC_DIALOG_INFO@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual struct _AFX_OCC_DIALOG_INFO * __thiscall CDialog::GetOccDialogInfo(void)" (?GetOccDialogInfo@CDialog@@MAEPAU_AFX_OCC_DIALOG_INFO@@XZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::Create(unsigned int,class CWnd *)" (?Create@CDialog@@UAEHIPAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::Create(wchar_t const *,class CWnd *)" (?Create@CDialog@@UAEHPB_WPAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::CreateIndirect(void *,class CWnd *)" (?CreateIndirect@CDialog@@UAEHPAXPAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::CreateIndirect(struct DLGTEMPLATE const *,class CWnd *,void *)" (?CreateIndirect@CDialog@@UAEHPBUDLGTEMPLATE@@PAVCWnd@@PAX@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::OnInitDialog(void)" (?OnInitDialog@CDialog@@UAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CDialog::OnSetFont(class CFont *)" (?OnSetFont@CDialog@@UAEXPAVCFont@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual void __thiscall CDialog::OnOK(void)" (?OnOK@CDialog@@MAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual void __thiscall CDialog::OnCancel(void)" (?OnCancel@CDialog@@MAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol "protected: virtual void __thiscall CDialog::PreInitDialog(void)" (?PreInitDialog@CDialog@@MAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "protected: virtual void __thiscall CWnd::DoDataExchange(class CDataExchange *)" (?DoDataExchange@CWnd@@MAEXPAVCDataExchange@@@Z) referenced in function "protected: virtual void __thiscall CAboutDlg::DoDataExchange(class CDataExchange *)" (?DoDataExchange@CAboutDlg@@MAEXPAVCDataExchange@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: struct HICON__ * __thiscall CWinApp::LoadIconW(unsigned int)const " (?LoadIconW@CWinApp@@QBEPAUHICON__@@I@Z) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "class CWinApp * __stdcall AfxGetApp(void)" (?AfxGetApp@@YGPAVCWinApp@@XZ) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: __thiscall CListBox::CListBox(void)" (??0CListBox@@QAE@XZ) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: __thiscall CSliderCtrl::CSliderCtrl(void)" (??0CSliderCtrl@@QAE@XZ) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: __thiscall CComboBox::CComboBox(void)" (??0CComboBox@@QAE@XZ) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >(wchar_t const *)" (__imp_??0?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QAE@PB_W@Z) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: __thiscall CButton::CButton(void)" (??0CButton@@QAE@XZ) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __stdcall `eh vector constructor iterator'(void *,unsigned int,int,void (__thiscall*)(void *),void (__thiscall*)(void *))" (??_L@YGXPAXIHP6EX0@Z1@Z) referenced in function "public: __thiscall Cdialler_sample_1Dlg::Cdialler_sample_1Dlg(class CWnd *)" (??0Cdialler_sample_1Dlg@@QAE@PAVCWnd@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __stdcall DDX_Text(class CDataExchange *,int,int &)" (?DDX_Text@@YGXPAVCDataExchange@@HAAH@Z) referenced in function "protected: virtual void __thiscall Cdialler_sample_1Dlg::DoDataExchange(class CDataExchange *)" (?DoDataExchange@Cdialler_sample_1Dlg@@MAEXPAVCDataExchange@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __stdcall DDX_Check(class CDataExchange *,int,int &)" (?DDX_Check@@YGXPAVCDataExchange@@HAAH@Z) referenced in function "protected: virtual void __thiscall Cdialler_sample_1Dlg::DoDataExchange(class CDataExchange *)" (?DoDataExchange@Cdialler_sample_1Dlg@@MAEXPAVCDataExchange@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __stdcall DDX_Text(class CDataExchange *,int,class ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > > &)" (?DDX_Text@@YGXPAVCDataExchange@@HAAV?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@@Z) referenced in function "protected: virtual void __thiscall Cdialler_sample_1Dlg::DoDataExchange(class CDataExchange *)" (?DoDataExchange@Cdialler_sample_1Dlg@@MAEXPAVCDataExchange@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __stdcall DDX_Control(class CDataExchange *,int,class CWnd &)" (?DDX_Control@@YGXPAVCDataExchange@@HAAVCWnd@@@Z) referenced in function "protected: virtual void __thiscall Cdialler_sample_1Dlg::DoDataExchange(class CDataExchange *)" (?DoDataExchange@Cdialler_sample_1Dlg@@MAEXPAVCDataExchange@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: struct HICON__ * __thiscall CWnd::SetIcon(struct HICON__ *,int)" (?SetIcon@CWnd@@QAEPAUHICON__@@PAU2@H@Z) referenced in function "protected: virtual int __thiscall Cdialler_sample_1Dlg::OnInitDialog(void)" (?OnInitDialog@Cdialler_sample_1Dlg@@MAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall ATL::CSimpleStringT<wchar_t,1>::operator wchar_t const *(void)const " (__imp_??B?$CSimpleStringT@_W$00@ATL@@QBEPB_WXZ) referenced in function "protected: virtual int __thiscall Cdialler_sample_1Dlg::OnInitDialog(void)" (?OnInitDialog@Cdialler_sample_1Dlg@@MAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CMenu::AppendMenuW(unsigned int,unsigned int,wchar_t const *)" (?AppendMenuW@CMenu@@QAEHIIPB_W@Z) referenced in function "protected: virtual int __thiscall Cdialler_sample_1Dlg::OnInitDialog(void)" (?OnInitDialog@Cdialler_sample_1Dlg@@MAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: bool __thiscall ATL::CSimpleStringT<wchar_t,1>::IsEmpty(void)const " (__imp_?IsEmpty@?$CSimpleStringT@_W$00@ATL@@QBE_NXZ) referenced in function "protected: virtual int __thiscall Cdialler_sample_1Dlg::OnInitDialog(void)" (?OnInitDialog@Cdialler_sample_1Dlg@@MAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::LoadStringW(unsigned int)" (__imp_?LoadStringW@?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QAEHI@Z) referenced in function "protected: virtual int __thiscall Cdialler_sample_1Dlg::OnInitDialog(void)" (?OnInitDialog@Cdialler_sample_1Dlg@@MAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >(void)" (__imp_??0?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QAE@XZ) referenced in function "protected: virtual int __thiscall Cdialler_sample_1Dlg::OnInitDialog(void)" (?OnInitDialog@Cdialler_sample_1Dlg@@MAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: class CMenu * __thiscall CWnd::GetSystemMenu(int)const " (?GetSystemMenu@CWnd@@QBEPAVCMenu@@H@Z) referenced in function "protected: virtual int __thiscall Cdialler_sample_1Dlg::OnInitDialog(void)" (?OnInitDialog@Cdialler_sample_1Dlg@@MAEHXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "protected: void __thiscall CWnd::OnSysCommand(unsigned int,long)" (?OnSysCommand@CWnd@@IAEXIJ@Z) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnSysCommand(unsigned int,long)" (?OnSysCommand@Cdialler_sample_1Dlg@@IAEXIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "protected: void __thiscall CDialog::OnPaint(void)" (?OnPaint@CDialog@@IAEXXZ) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall CPaintDC::~CPaintDC(void)" (??1CPaintDC@@UAE@XZ) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CDC::DrawIcon(int,int,struct HICON__ *)" (?DrawIcon@CDC@@QAEHHHPAUHICON__@@@Z) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CRect::Height(void)const " (?Height@CRect@@QBEHXZ) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CRect::Width(void)const " (?Width@CRect@@QBEHXZ) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: void __thiscall CWnd::GetClientRect(struct tagRECT *)const " (?GetClientRect@CWnd@@QBEXPAUtagRECT@@@Z) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: __thiscall CRect::CRect(void)" (??0CRect@@QAE@XZ) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __imp__GetSystemMetrics@4 referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: long __thiscall CWnd::SendMessageW(unsigned int,unsigned int,long)" (?SendMessageW@CWnd@@QAEJIIJ@Z) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: struct HDC__ * __thiscall CDC::GetSafeHdc(void)const " (?GetSafeHdc@CDC@@QBEPAUHDC__@@XZ) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: __thiscall CPaintDC::CPaintDC(class CWnd *)" (??0CPaintDC@@QAE@PAVCWnd@@@Z) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CWnd::IsIconic(void)const " (?IsIconic@CWnd@@QBEHXZ) referenced in function "protected: void __thiscall Cdialler_sample_1Dlg::OnPaint(void)" (?OnPaint@Cdialler_sample_1Dlg@@IAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "unsigned long __cdecl Device_getAudioOutputVolume(void *,unsigned long)" (?Device_getAudioOutputVolume@@YAKPAXK@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: void __thiscall CSliderCtrl::SetPos(int)" (?SetPos@CSliderCtrl@@QAEXH@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "unsigned long __cdecl Device_getAudioInputVolume(void *,unsigned long)" (?Device_getAudioInputVolume@@YAKPAXK@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: void __thiscall CSliderCtrl::SetRange(int,int,int)" (?SetRange@CSliderCtrl@@QAEXHHH@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl Device_getAudioInputDeviceName(void *,unsigned long,char *,int)" (?Device_getAudioInputDeviceName@@YA_NPAXKPADH@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "int __cdecl Device_getAudioInputDeviceNums(void *)" (?Device_getAudioInputDeviceNums@@YAHPAX@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol _memset referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol _memset
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CComboBox::SetCurSel(int)" (?SetCurSel@CComboBox@@QAEHH@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CComboBox::AddString(wchar_t const *)" (?AddString@CComboBox@@QAEHPB_W@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl Device_getAudioOutputDeviceName(void *,unsigned long,char *,int)" (?Device_getAudioOutputDeviceName@@YA_NPAXKPADH@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "int __cdecl Device_getAudioOutputDeviceNums(void *)" (?Device_getAudioOutputDeviceNums@@YAHPAX@Z) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void * __cdecl Device_initialize(void)" (?Device_initialize@@YAPAXXZ) referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __imp__srand referenced in function "private: bool __thiscall Cdialler_sample_1Dlg::init(void)" (?init@Cdialler_sample_1Dlg@@AAE_NXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_addAudioCodec(void *,enum AUDIOCODEC_TYPE)" (?PortSIP_addAudioCodec@@YAXPAXW4AUDIOCODEC_TYPE@@@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::initAudioCodecs(void)" (?initAudioCodecs@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_clearAudioCodec(void *)" (?PortSIP_clearAudioCodec@@YAXPAX@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::initAudioCodecs(void)" (?initAudioCodecs@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_enableAEC(void *,bool)" (?PortSIP_enableAEC@@YAXPAX_N@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::initSettings(void)" (?initSettings@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_setDTMFSamples(void *,int)" (?PortSIP_setDTMFSamples@@YAXPAXH@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::initSettings(void)" (?initSettings@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_enableDTMFOfRFC2833(void *,int)" (?PortSIP_enableDTMFOfRFC2833@@YAXPAXH@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::initSettings(void)" (?initSettings@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_setRTPJitterBufferLength(void *,int)" (?PortSIP_setRTPJitterBufferLength@@YAXPAXH@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::initSettings(void)" (?initSettings@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CListBox::InsertString(int,wchar_t const *)" (?InsertString@CListBox@@QAEHHPB_W@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CListBox::GetCount(void)const " (?GetCount@CListBox@@QBEHXZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_unInitialize(void *)" (?PortSIP_unInitialize@@YAXPAX@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl PortSIP_registerServer(void *,int)" (?PortSIP_registerServer@@YA_NPAXH@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl PortSIP_isAudioCodecEmpty(void *)" (?PortSIP_isAudioCodecEmpty@@YA_NPAX@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_setLicenseKey(void *,char const *)" (?PortSIP_setLicenseKey@@YAXPAXPBD@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __imp__MessageBoxW@16 referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: struct HWND__ * __thiscall CWnd::GetSafeHwnd(void)const " (?GetSafeHwnd@CWnd@@QBEPAUHWND__@@XZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void * __cdecl PortSIP_initialize(struct SIPCallbackEvent *,int,char const *,char const *,char const *,char const *,char const *,int,char const *,char const *,int,char const *,int,char const *,int)" (?PortSIP_initialize@@YAPAXPAUSIPCallbackEvent@@HPBD1111H11H1H1H@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __imp__atoi referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void * __cdecl operator new(unsigned int,char const *,int)" (??2@YAPAXIPBDH@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __imp__rand referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl Device_getLocalIP(void *,int,char *,int)" (?Device_getLocalIP@@YA_NPAXHPADH@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CWnd::UpdateData(int)" (?UpdateData@CWnd@@QAEHH@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk2(void)" (?OnBnClickedOk2@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CWnd::PostMessageW(unsigned int,unsigned int,long)" (?PostMessageW@CWnd@@QAEHIIJ@Z) referenced in function "public: virtual void __thiscall SIPEvent::onCommand(class SIPCallbackCommand *)" (?onCommand@SIPEvent@@UAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2001: unresolved external symbol __purecall
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> >::`vbase destructor'(void)" (__imp_??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk22(void)" (?OnBnClickedOk22@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (__imp_??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk22(void)" (?OnBnClickedOk22@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: char const * __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (__imp_?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk22(void)" (?OnBnClickedOk22@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __thiscall std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> >::str(void)const " (__imp_?str@?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk22(void)" (?OnBnClickedOk22@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_ostream<char,struct std::char_traits<char> > & __thiscall std::basic_ostream<char,struct std::char_traits<char> >::operator<<(int)" (__imp_??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk22(void)" (?OnBnClickedOk22@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> >::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> >(int)" (__imp_??0?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk22(void)" (?OnBnClickedOk22@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_rejectCall(void *,long,int,char const *)" (?PortSIP_rejectCall@@YAXPAXJHPBD@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk22(void)" (?OnBnClickedOk22@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: void __thiscall CListBox::ResetContent(void)" (?ResetContent@CListBox@@QAEXXZ) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::SIPUnRegister(void)" (?SIPUnRegister@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_unRegisterServer(void *)" (?PortSIP_unRegisterServer@@YAXPAX@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::SIPUnRegister(void)" (?SIPUnRegister@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_terminateCall(void *,long)" (?PortSIP_terminateCall@@YAXPAXJ@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::SIPUnRegister(void)" (?SIPUnRegister@Cdialler_sample_1Dlg@@AAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl Device_stopAudioPlayLoopbackTest(void *)" (?Device_stopAudioPlayLoopbackTest@@YAXPAX@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedButton1(void)" (?OnBnClickedButton1@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: void __thiscall CWnd::SetWindowTextW(wchar_t const *)" (?SetWindowTextW@CWnd@@QAEXPB_W@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedButton1(void)" (?OnBnClickedButton1@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl Device_startAudioPlayLoopbackTest(void *,unsigned long,unsigned long)" (?Device_startAudioPlayLoopbackTest@@YAXPAXKK@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedButton1(void)" (?OnBnClickedButton1@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall CComboBox::GetCurSel(void)const " (?GetCurSel@CComboBox@@QBEHXZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedButton1(void)" (?OnBnClickedButton1@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: void __thiscall CWnd::GetWindowTextW(class ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > > &)const " (?GetWindowTextW@CWnd@@QBEXAAV?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedButton1(void)" (?OnBnClickedButton1@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: class CWnd * __thiscall CWnd::GetDlgItem(int)const " (?GetDlgItem@CWnd@@QBEPAV1@H@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedButton1(void)" (?OnBnClickedButton1@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __imp___time64 referenced in function _time
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl PortSIP_unHold(void *,long)" (?PortSIP_unHold@@YA_NPAXJ@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk21(void)" (?OnBnClickedOk21@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getOldWaitingFaxMessageCount(void)" (?getOldWaitingFaxMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getNewWaitingFaxMessageCount(void)" (?getNewWaitingFaxMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getUrgentOldWaitingFaxMessageCount(void)" (?getUrgentOldWaitingFaxMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getUrgentNewWaitingFaxMessageCount(void)" (?getUrgentNewWaitingFaxMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > > & __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::operator+=(char const *)" (__imp_??Y?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QAEAAV01@PBD@Z) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getOldWaitingVoiceMessageCount(void)" (?getOldWaitingVoiceMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getNewWaitingVoiceMessageCount(void)" (?getNewWaitingVoiceMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getUrgentOldWaitingVoiceMessageCount(void)" (?getUrgentOldWaitingVoiceMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getUrgentNewWaitingVoiceMessageCount(void)" (?getUrgentNewWaitingVoiceMessageCount@SIPCallbackCommand@@QAEHXZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getWaitingMessageAccount(char *,int)" (?getWaitingMessageAccount@SIPCallbackCommand@@QAE_NPADH@Z) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getSignaling(char *,int)" (?getSignaling@SIPCallbackCommand@@QAE_NPADH@Z) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: enum SIP_EVENT __thiscall SIPCallbackCommand::getEventType(void)" (?getEventType@SIPCallbackCommand@@QAE?AW4SIP_EVENT@@XZ) referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol __chkstk referenced in function "protected: long __thiscall Cdialler_sample_1Dlg::OnSIPCallbackEvent(unsigned int,long)" (?OnSIPCallbackEvent@Cdialler_sample_1Dlg@@IAEJIJ@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: long __thiscall SIPCallbackCommand::getSessionId(void)" (?getSessionId@SIPCallbackCommand@@QAEJXZ) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallTrying(class SIPCallbackCommand *)" (?onSIPCallTrying@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getCaller(char *,int)" (?getCaller@SIPCallbackCommand@@QAE_NPADH@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallIncoming(class SIPCallbackCommand *)" (?onSIPCallIncoming@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl PortSIP_answerCall(void *,long)" (?PortSIP_answerCall@@YA_NPAXJ@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallIncoming(class SIPCallbackCommand *)" (?onSIPCallIncoming@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getAudioCodecName(char *,int)" (?getAudioCodecName@SIPCallbackCommand@@QAE_NPADH@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallIncoming(class SIPCallbackCommand *)" (?onSIPCallIncoming@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getHasVideo(void)" (?getHasVideo@SIPCallbackCommand@@QAE_NXZ) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallIncoming(class SIPCallbackCommand *)" (?onSIPCallIncoming@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getHasEarlyMedia(void)" (?getHasEarlyMedia@SIPCallbackCommand@@QAE_NXZ) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallRinging(class SIPCallbackCommand *)" (?onSIPCallRinging@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getStatusText(char *,int)" (?getStatusText@SIPCallbackCommand@@QAE_NPADH@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallFailure(class SIPCallbackCommand *)" (?onSIPCallFailure@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getStatusCode(void)" (?getStatusCode@SIPCallbackCommand@@QAEHXZ) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPCallFailure(class SIPCallbackCommand *)" (?onSIPCallFailure@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: int __thiscall SIPCallbackCommand::getDTMFTone(void)" (?getDTMFTone@SIPCallbackCommand@@QAEHXZ) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPReceivedDtmfTone(class SIPCallbackCommand *)" (?onSIPReceivedDtmfTone@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "public: bool __thiscall SIPCallbackCommand::getVideoCodecName(char *,int)" (?getVideoCodecName@SIPCallbackCommand@@QAE_NPADH@Z) referenced in function "private: void __thiscall Cdialler_sample_1Dlg::onSIPInviteUpdated(class SIPCallbackCommand *)" (?onSIPInviteUpdated@Cdialler_sample_1Dlg@@AAEXPAVSIPCallbackCommand@@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "protected: void __thiscall CWnd::OnClose(void)" (?OnClose@CWnd@@IAEXXZ) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnClose(void)" (?OnClose@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl Device_unInitialize(void *)" (?Device_unInitialize@@YAXPAX@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnClose(void)" (?OnClose@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_setAudioDeviceID(void *,unsigned long,unsigned long)" (?PortSIP_setAudioDeviceID@@YAXPAXKK@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnCbnSelchangeComboSpeakers(void)" (?OnCbnSelchangeComboSpeakers@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "long __cdecl PortSIP_call(void *,char const *,bool)" (?PortSIP_call@@YAJPAXPBD_N@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk16(void)" (?OnBnClickedOk16@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_ostream<char,struct std::char_traits<char> > & __thiscall std::basic_ostream<char,struct std::char_traits<char> >::operator<<(void const *)" (__imp_??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk16(void)" (?OnBnClickedOk16@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "bool __cdecl PortSIP_hold(void *,long)" (?PortSIP_hold@@YA_NPAXJ@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk19(void)" (?OnBnClickedOk19@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "void __cdecl PortSIP_sendDTMF(void *,long,char)" (?PortSIP_sendDTMF@@YAXPAXJD@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk11(void)" (?OnBnClickedOk11@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (__imp_??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z) referenced in function "public: void __thiscall Cdialler_sample_1Dlg::OnBnClickedOk11(void)" (?OnBnClickedOk11@Cdialler_sample_1Dlg@@QAEXXZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >(char const *,struct ATL::IAtlStringMgr *)" (__imp_??0?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QAE@PBDPAUIAtlStringMgr@1@@Z) referenced in function "bool __cdecl ATL::operator==(class ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > > const &,char const *)" (??8ATL@@YA_NABV?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@0@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: struct ATL::IAtlStringMgr * __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::GetManager(void)const " (__imp_?GetManager@?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QBEPAUIAtlStringMgr@2@XZ) referenced in function "bool __cdecl ATL::operator==(class ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > > const &,char const *)" (??8ATL@@YA_NABV?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@0@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __thiscall ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::Compare(wchar_t const *)const " (__imp_?Compare@?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@ATL@@QBEHPB_W@Z) referenced in function "bool __cdecl ATL::operator==(class ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > > const &,class ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > > const &)" (??8ATL@@YA_NABV?$CStringT@_WV?$StrTraitMFC_DLL@_WV?$ChTraitsCRT@_W@ATL@@@@@0@0@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::basic_ios<char,struct std::char_traits<char> >::setstate(int,bool)" (__imp_?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z) referenced in function __catch$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$0
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __thiscall std::ios_base::width(int)" (__imp_?width@ios_base@std@@QAEHH@Z) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::sputn(char const *,int)" (__imp_?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static bool __cdecl std::char_traits<char>::eq_int_type(int const &,int const &)" (__imp_?eq_int_type@?$char_traits@D@std@@SA_NABH0@Z) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static int __cdecl std::char_traits<char>::eof(void)" (__imp_?eof@?$char_traits@D@std@@SAHXZ) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::sputc(char)" (__imp_?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_streambuf<char,struct std::char_traits<char> > * __thiscall std::basic_ios<char,struct std::char_traits<char> >::rdbuf(void)const " (__imp_?rdbuf@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@XZ) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: char __thiscall std::basic_ios<char,struct std::char_traits<char> >::fill(void)const " (__imp_?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDXZ) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __thiscall std::ios_base::flags(void)const " (__imp_?flags@ios_base@std@@QBEHXZ) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __thiscall std::ios_base::width(void)const " (__imp_?width@ios_base@std@@QBEHXZ) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static unsigned int __cdecl std::char_traits<char>::length(char const *)" (__imp_?length@?$char_traits@D@std@@SAIPBD@Z) referenced in function "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_ostream<char,struct std::char_traits<char> > & __thiscall std::basic_ostream<char,struct std::char_traits<char> >::flush(void)" (__imp_?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ) referenced in function "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::sentry::sentry(class std::basic_ostream<char,struct std::char_traits<char> > &)" (??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_ostream<char,struct std::char_traits<char> > * __thiscall std::basic_ios<char,struct std::char_traits<char> >::tie(void)const " (__imp_?tie@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_ostream@DU?$char_traits@D@std@@@2@XZ) referenced in function "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::sentry::sentry(class std::basic_ostream<char,struct std::char_traits<char> > &)" (??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: bool __thiscall std::ios_base::good(void)const " (__imp_?good@ios_base@std@@QBE_NXZ) referenced in function "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::sentry::sentry(class std::basic_ostream<char,struct std::char_traits<char> > &)" (??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::basic_ostream<char,struct std::char_traits<char> >::_Osfx(void)" (__imp_?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ) referenced in function "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::sentry::~sentry(void)" (??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl std::uncaught_exception(void)" (__imp_?uncaught_exception@std@@YA_NXZ) referenced in function "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::sentry::~sentry(void)" (??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::_Lock(void)" (__imp_?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ) referenced in function "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::_Sentry_base::_Sentry_base(class std::basic_ostream<char,struct std::char_traits<char> > &)" (??0_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z)
1>dialler_sample_1Dlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::_Unlock(void)" (__imp_?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ) referenced in function "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::_Sentry_base::~_Sentry_base(void)" (??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ)
1>E:\sip\sip_2\new\dialler_sample_1\Debug\dialler_sample_1.exe : fatal error LNK1120: 286 unresolved externals
1>Build log was saved at "file://e:\sip\sip_2\new\dialler_sample_1\dialler_sample_1\Debug\BuildLog.htm"
1>dialler_sample_1 - 331 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
ASKER CERTIFIED SOLUTION
Avatar of vtladiadi
vtladiadi

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of shaf81

ASKER

Hello vtladiadi,

Thank you for your effort .   Any way you have done good try for my matter.
Avatar of shaf81

ASKER

Thank you for your effort.