When building my project, I'm getting following error:
Test1Dlg.obj : error LNK2001: unresolved external symbol "int __cdecl get_contact_sta te(enum CONTACT)" (?get_contact_s tate@@YAHW4CONT ACT@@@Z)
Debug/Test1.exe : fatal error LNK1120: 1 unresolved externals
I have included the function by it's header in Test1Dlg.cpp so it should work. There is no error if I dont call the function.
The directory of the header file is known to the project, the other files would link without any problem.
Any idea what could be the problem would be helpful!
Test1Dlg.obj : error LNK2001: unresolved external symbol "int __cdecl get_contact_sta te(enum CONTACT)" (?get_contact_s tate@@YAHW4CONT ACT@@@Z)
Debug/Test1.exe : fatal error LNK1120: 1 unresolved externals
I have included the function by it's header in Test1Dlg.cpp so it should work. There is no error if I dont call the function.
The directory of the header file is known to the project, the other files would link without any problem.
Any idea what could be the problem would be helpful!
Comment