Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

unresolved external symbol

Status
Not open for further replies.

datenis

Programmer
Jan 22, 2002
98
CA
Hi,

I'm pretty sure this is one of the most common errors out there in MSVC++ land

I kept on getting unresolved external symbol errors when I have both .cpp (odbccore.cpp) and .h (odbccore.h) files in the project's directory

The names of functions and variables are not worng because the files work in another project

suggestions?

-d
 
> The names of functions and variables are not worng because the files work in another project
The problem is more likely to be within the code where you attempt to use things inside odbccore.cpp

If odbccore.cpp provides obdcInit(), and your other code calls obdc_Init(), then that's where it can come from.

--
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top