Linking Error

Started by
13 comments, last by Noky 21 years ago
decided to bump this a bit seeing as there are like 20 posts above it. I still need help people!
Advertisement
I looked it over, the reason you are getting those errors is because those two functions are declared in ConLib.h but they are never defined anywhere. Just to test if this was the case I added them as empty functions in ConLib.cpp to see if I was correct and recompiled. The whole thing compiled with no problems.

  void ConLib::Clear(){	return;}void ConLib::SetTitle(char * Title){	return;}  


"I may not agree with what you say but I will defend to the death your right to say it."
--Voltaire
"Pfft, Facts! Facts can be used to prove anything!" -- Homer J. Simpson
Bang on cmptrgear, you bet me to it.

You need to add Clear and SetTitle to ConLib.cpp
I ahem knew that. Right of course.

Thanks a lot guys I owe you big time. How could I be so stupid to forget that dur.
Now that my problem has been fixed and that it compiles it seems I have some problems when it comes to correctly displaying things, like the monsters Oh well looks like I got some work to do.

This topic is closed to new replies.

Advertisement