I am using MFC in Visual Studio. This is the function StartClient, defined in the cpp file, and declared in .h file as
protected:
bool StartClient(); // in Client.h file
bool CClientSocketDlg::StartClient() //in Client.cpp file
{
CString strServer;
m_ctlIPAddress.GetWindowText( strServer );
------
-----
return bSuccess;
}
I also declared this
extern CClientSocketDlg StartClient(); // in global.h
I want to call the StartClient() function in someother xyz.cpp file. That's why i declared this function as global. But it doesnt work.
This give the error :
error LNK2001: unresolved external symbol "class CClientSocketDlg __cdecl StartClient(void)" (?StartClient@@YA?AVCClientSocketDlg@@XZ)
Kindly guide me to resolve that error. Thanks
CClientSocketDlg StartClient() { ... }in your cpp file. Unfortunately I think the real issue is that your question is asking for something that you don't actually want. So maybe you should explain what the real problem is and ask for solutions. And post some more code, your code seems quite mixed up but without seeing real code it's hard to help with that. – john Nov 7 '12 at 12:27