Advertisement

unresolved external symbol

Started by May 27, 2002 10:41 AM
0 comments, last by decebal 22 years, 5 months ago
I''m building some libraries that will aid me in making a game. I''ve got this problem when i''m trying to compile I have these two externals errors: unresolved external symbol "public: __thiscall cApplication::~cApplication(void)" (??1cApplication@@QAE@XZ) unresolved external symbol _main What''s wrong?
Mankind must put an end to war before war puts an end to mankind. John F. Kennedy
- You didn''t write the code for ~cApplication, even though you declared it.
- You didn''t write the code for main, which means that the compiler doesn''t think you are building a library.

"unresolved external" = missing function.

Documents [ GDNet | MSDN | STL | OpenGL | Formats | RTFM | Asking Smart Questions ]
C++ Stuff [ MinGW | Loki | SDL | Boost. | STLport | FLTK | ACCU Recommended Books ]
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan

This topic is closed to new replies.

Advertisement