Whats this?
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.
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 ;)
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement