meaning of error

whats the meaning of this error?


1>DrawText.obj : error LNK2019: unresolved external symbol "void __cdecl Draw_Fonts(float)" (?Draw_Fonts@@YAXM@Z) referenced in function "public: virtual void __thiscall CLetter::draw(void)const " (?draw@CLetter@@UBEXXZ)

I've got some very long code so it wouldn't make sense to post my whole project.
You are not linking to a function with the prototype void Draw_Fonts(float).
If it's from a library you are not linking to that library.
If it's a custom function, you are not linking all the source files ( or you haven't define it )
Last edited on
Just post the line that gives you the error, or the lines that eventually caused the error to show up.
A short Google search told me that you might be doing some Direct3D related coding, and that you need to link d3d9.lib in order to make some functions visible. But that's really a shot in a *deep* dark.
its now working, I just had to clean my solution after deleting void Draw_Fonts(float).. damn c++ is crazy
Topic archived. No new replies allowed.