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 TouchToneTommy 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.

ranjitvictor

Programmer
Jul 29, 2000
11
IN
I get the follwing error while rebuilding my app,

fosmsg.lib(NORMSF1.OBJ) : error LNK2001: unresolved external symbol "public: __thiscall TJIdxRecClass::TJIdxRecClass(void)" (??0TJIdxRecClass@@QAE@XZ)

can somebody explain to me how the lib and obj files are related?
If the above question is wrong then why is this happening?
 
.lib is a collection of .obj's
The message above means, that in NORMSF1.OBJ inside of library fosmsg.lib is reference to external symbol, not defined in any .obj's or .lib's of your project.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top