Advertisement

Whats this?

Started by June 15, 2002 10:18 AM
1 comment, last by Phantom88 22 years, 8 months ago
I''m a complete noob. Here''s my question: What does this error mean: error LNK2019: unresolved external symbol "bool __cdecl LoadTGA(struct Texture *,char *)" (?LoadTGA@@YA_NPAUTexture@@PAD@Z) referenced in function "int __cdecl LoadGLTextures(void)" (?LoadGLTextures@@YAHXZ) Sorry for this stupid guestion. ~Phantom88~
An "unresolved external" error usually means that the function in question, in your case LoadTGA, cannot be found. You may have forgotten to write this function or maybe the variables struct Texture *, char * do not match up to the function prototype.

Try looking in function LoadGLTextures where LoadTGA is said to be called from.
The early bird may catch the worm but the second mouse gets the cheese ;)
Advertisement
OK, Thanx. Now it works!

~Phantom88~

This topic is closed to new replies.

Advertisement